:root {
    --primary-color: #0056b3;
    /* Main Brand Color (Blue) */
    --brand-orange: #ff6600;
    /* Secondary Brand Color (Orange) */
    --dark-color: #111111;
    --light-color: #ffffff;
    --gray-color: #f5f5f7;
    --text-color: #333333;
    --border-radius: 30px;
    /* Increased global rounding */
    --btn-radius: 50px;
    --transition: all 0.3s ease;
}

/* ... (existing styles) ... */

/* Cleaned up specific overrides since primary color is now blue */

.nav-list a:hover {
    color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.chart-placeholder span:nth-child(1) {
    width: 80%;
    background: var(--primary-color);
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.close-lightbox:hover {
    color: var(--primary-color);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 86, 179, 0.6) 0px, transparent 55%),
        radial-gradient(at 100% 0%, rgba(220, 220, 220, 0.6) 0px, transparent 55%),
        radial-gradient(at 100% 100%, rgba(0, 86, 179, 0.6) 0px, transparent 55%),
        radial-gradient(at 0% 100%, rgba(220, 220, 220, 0.6) 0px, transparent 55%);
    background-attachment: fixed;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: rgba(66, 165, 245, 0.9);
    /* Even lighter blue hover */
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-white-outline {
    background-color: transparent;
    border-color: var(--light-color);
    color: var(--light-color);
}

.btn-white-outline:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    padding-top: max(20px, env(safe-area-inset-top));
    transition: var(--transition);
    background-color: transparent;
}

.main-header.scrolled,
.main-header.active {
    background-color: transparent;
    /* Removed to fix double glass */
    backdrop-filter: none;
    padding: 15px 0;
    box-shadow: none;
    /* Shadow handled by container */
}

.main-header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 50px;
    /* Match button radius */
    transition: var(--transition);
}

.logo:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.logo img {
    height: 40px;
    /* Adjusted height to fit padding */
    display: block;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--light-color);
    /* Default for hero */
    transition: var(--transition);
}

.main-header.scrolled .nav-list a,
.main-header.active .nav-list a {
    color: var(--dark-color);
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-cta {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.main-header.scrolled .bar,
.main-header.active .bar {
    background-color: var(--dark-color);
}

/* Hero Section - Rounded & Floating */
.hero-section {
    height: 95vh;
    /* Slightly less than full height */
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../assets/images/57456932_2460649807302304_7848647172563140608_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
    margin: 15px;
    /* Margin for floating effect */
    border-radius: 40px;
    /* Rounded corners */
    overflow: hidden;
    /* Clip content to corners */
    padding-top: 0;
    /* Reset padding since we might not need to compensate for header as much if it floats */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
    border-radius: 40px;
    /* Match hero rounding */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 100%;
    /* Fix for massive text alignment on wide screens */
    padding-top: 50px;
}

.hero-title-massive {
    font-size: 15vw;
    /* Larger, more impactful */
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-sub h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-sub p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background-color: transparent;
}

.intro-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.intro-label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
}

.intro-label small {
    color: var(--text-color);
    margin-top: 5px;
}

.intro-text {
    max-width: 600px;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
}

/* About Grid Section Refinements */
.about-grid-section {
    background-color: transparent;
    /* Changed to white to match ref */
    padding-top: 0;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-card {
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.grid-card:hover {
    transform: translateY(-10px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.avatars {
    display: flex;
}

.avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dark-color);
    margin-left: -10px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    /* Slightly reduced overlap */
    height: auto;
    /* Allow height to grow with padding */
    min-height: 70px;
    /* Refined height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.card-bottom {
    margin-top: auto;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.badge {
    background: var(--gray-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-black {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: var(--light-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-black h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-black p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.card-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
}

.card-overlay span {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-white {
    /* Background handled by generic .grid-card, just ensuring override if needed */
    background: rgba(255, 255, 255, 0.65);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-white h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
    margin: 2rem 0;
}

.chart-placeholder span {
    width: 8px;
    background: #eee;
    border-radius: 4px;
    display: block;
}

/* Random heights for chart bars */
.chart-placeholder span:nth-child(1) {
    height: 30%;
}

.chart-placeholder span:nth-child(2) {
    height: 50%;
}

.chart-placeholder span:nth-child(3) {
    height: 70%;
}

.chart-placeholder span:nth-child(4) {
    height: 40%;
}

.chart-placeholder span:nth-child(5) {
    height: 90%;
    background: var(--primary-color) !important;
}

.chart-placeholder span:nth-child(6) {
    height: 60%;
}

.chart-placeholder span:nth-child(7) {
    height: 80%;
}

.chart-placeholder span:nth-child(8) {
    height: 45%;
}

.chart-placeholder span:nth-child(9) {
    height: 75%;
}

.chart-placeholder span:nth-child(10) {
    height: 55%;
}


/* Bento Grid Feature Section */
.features-bento-section {
    padding: 100px 0;
    background-color: transparent;
}

.bento-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.bento-header h2 {
    font-size: 2.5rem;
    margin-top: 20px;
    color: var(--dark-color);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Large Card (Execution) */
.card-execution {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: var(--dark-color);
    color: #fff;
    padding: 0;
    /* Reset padding for image layout */
    display: flex;
    flex-direction: row;
    /* Side by side on desktop */
    align-items: stretch;
}

.card-execution .bento-content {
    padding: 50px;
    flex: 1;
    z-index: 2;
}

.card-execution h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.card-execution p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.bento-list {
    list-style: none;
    padding: 0;
}

.bento-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #fff;
    font-weight: 500;
}

.bento-list li::before {
    content: 'check';
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    /* Blue accent */
}

.bento-bg-img {
    width: 50%;
    object-fit: cover;
    height: auto;
}

/* Small Cards */
.card-materials {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.card-warranty {
    grid-column: 2 / 3;
}

.card-materials h3,
.card-warranty h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: var(--dark-color);
}

.card-materials p,
.card-warranty p {
    color: #555;
    line-height: 1.5;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 179, 0.1);
    /* Light blue bg */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Warranty Card (Blue Accent) */
.card-warranty {
    background: var(--primary-color);
    /* Blue background */
    color: #fff;
}

.card-warranty h3 {
    color: #fff;
}

.card-warranty p {
    color: rgba(255, 255, 255, 0.9);
}

.icon-box.white {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-execution {
        grid-column: 1 / -1;
        flex-direction: column-reverse;
    }

    .bento-bg-img {
        width: 100%;
        height: 250px;
    }

    .card-materials,
    .card-warranty {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* Offer Split Section Refined */
.offer-split-section {
    padding: 100px 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-left {
    flex: 1;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    /* Slightly larger for button-like feel */
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    /* Match specializations card */
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    color: #ffffff;
    /* White text */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.split-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.split-desc {
    margin-bottom: 2rem;
}

/* Visual Polish: Typography & Spacing Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
    /* Tighter headings */
}

body {
    line-height: 1.7;
    /* Increased readability */
}

.section {
    padding: 100px 0;
    /* More breathing room */
}


.mini-gallery {
    display: flex;
    gap: 15px;
}

.mini-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 2rem;
}

.mini-gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.split-right {
    flex: 1;
}

.offer-dark-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.offer-dark-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.offer-list {
    margin-bottom: 3rem;
}

.offer-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-xs {
    padding: 5px 15px;
    font-size: 0.8rem;
}

.offer-focus-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 2rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.focus-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.focus-item p {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.5;
    padding-left: 0;
}

.feature-list-box h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    background-color: transparent;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.link-arrow:hover {
    transform: translateX(5px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: auto;
    grid-auto-rows: 300px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Certificates */
.certificates-section {
    background-color: var(--light-color);
    text-align: center;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.cert-item img {
    max-height: 80px;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.cert-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    background-color: transparent;
    color: var(--light-color);
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.contact-item .value {
    font-size: 1.5rem;
    font-weight: 600;
}

.company-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0.5;
}

.contact-map-wrapper {
    flex: 1;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    padding: 50px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: rgba(66, 165, 245, 0.9);
    /* Even lighter blue hover */
    color: #ffffff;
}

/* Mobile Call Bar */
/* Mobile Call Bar - Floating Pill */
.mobile-call-bar {
    display: none;
    /* Default to hidden, will be overridden by media query */
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background-color: var(--primary-color);
    padding: 12px 30px;
    z-index: 10000;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Added opacity to transition */
}

.mobile-call-bar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
    /* Move slightly down when hidden */
}

.mobile-call-bar:active {
    transform: translateX(-50%) scale(0.95);
}

.mobile-call-bar .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 60px;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: var(--border-radius);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title-massive {
        font-size: 15vw;
    }

    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .split-container {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }

    .gallery-item {
        height: 250px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map-wrapper {
        height: 300px;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding-top: max(40px, calc(env(safe-area-inset-top) + 10px));
        /* Match side margins (40px) visually, respecting notch */
    }

    .header-cta {
        display: none;
        /* Hide desktop CTA button on mobile, use sticky bar instead */
    }

    .header-container {
        padding: 5px 15px;
        /* Add vertical padding to center logo */
        margin: 0 40px;
        width: auto;
        min-height: 60px;
        position: relative;
        flex-wrap: wrap;
        /* Allow wrapping for expanded menu */
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        /* Smooth Apple-like spring */
        align-content: flex-start;
        /* Ensure content starts at top */
        overflow: hidden;
        /* Clip internal content to rounded corners */
    }

    .header-container.active {
        border-radius: 30px;
        /* Slightly larger radius when expanded? or keep 20px */
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
        /* More opaque when active */
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: absolute;
        right: 15px;
        top: 30px;
        /* Aligned with logo row (60px height / 2) */
        transform: translateY(-50%);
    }

    .mobile-menu-toggle.active .bar {
        background-color: var(--dark-color) !important;
        /* Context is now light glass */
    }

    .nav-list {
        position: static;
        /* Flow within container */
        width: 100%;
        height: auto;
        max-height: 0;
        /* Hidden state */
        background-color: transparent;
        backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transform: none;
        /* Reset transform */
        opacity: 0;
        transition: all 0.4s ease;
        padding: 0;
        margin-top: 0;
    }

    .header-container.active .nav-list {
        max-height: 500px;
        /* Expand */
        opacity: 1;
        margin-top: 60px;
        /* Push below the 60px header row */
        padding-bottom: 30px;
    }

    .nav-list a {
        font-size: 1.2rem;
        /* Smaller, cleaner font for pill */
        font-weight: 600;
        color: var(--dark-color);
        /* Dark text on glass */
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .header-container.active .nav-list a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .header-container.active .nav-list li:nth-child(1) a {
        transition-delay: 0.1s;
    }

    .header-container.active .nav-list li:nth-child(2) a {
        transition-delay: 0.15s;
    }

    .header-container.active .nav-list li:nth-child(3) a {
        transition-delay: 0.2s;
    }

    .header-container.active .nav-list li:nth-child(4) a {
        transition-delay: 0.25s;
    }

    .header-container.active .nav-list li:nth-child(5) a {
        transition-delay: 0.3s;
    }


    /* Fix: Target .nav-list when .main-nav has .active class */
    .main-nav.active .nav-list {
        transform: translateX(0);
    }

    opacity: 1;
    transform: translateY(0);
}

.main-nav.active .nav-list li:nth-child(1) a {
    transition-delay: 0.1s;
}

.main-nav.active .nav-list li:nth-child(2) a {
    transition-delay: 0.2s;
}

.main-nav.active .nav-list li:nth-child(3) a {
    transition-delay: 0.3s;
}

.main-nav.active .nav-list li:nth-child(4) a {
    transition-delay: 0.4s;
}

.main-nav.active .nav-list li:nth-child(5) a {
    transition-delay: 0.5s;
}

.header-cta {
    display: none;
}

.mobile-call-bar {
    display: block;
}

.back-to-top {
    bottom: 25px;
}

.intro-container {
    flex-direction: column;
    gap: 20px;
}

/* Adjust for call bar */
.cookie-banner {
    bottom: 80px;
}

.hero-title-massive {
    font-size: 18vw;
}
}

/* Testimonials Section */