:root {
    --primary: #D4AF37;
    /* Golden yellow */
    --primary-dark: #B8941F;
    /* Darker gold */
    --primary-light: #E5C869;
    /* Lighter gold */
    --secondary: #1A365D;
    /* Deep blue */
    --accent: #2C5282;
    /* Medium blue */
    --dark: #222222;
    /* Dark text */
    --darker: #1A1A1A;
    /* Dark background */
    --light: #F5F5F5;
    /* Light background */
    --lighter: #FAFAFA;
    /* Even lighter background */
    --header-offset: 108px;
    --transition: all 0.3s ease;
}

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

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: var(--lighter);
    padding-top: var(--header-offset);
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--darker);
    letter-spacing: -0.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation - Enhanced */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.topbar {
    background: linear-gradient(90deg, rgba(15, 36, 66, 0.98) 0%, rgba(26, 54, 93, 0.96) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.topbar-container,
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-container {
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
}

.topbar-left,
.topbar-right {
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-right {
    justify-content: flex-end;
}

.topbar-left span,
.topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-decoration: none;
}

.topbar-right a {
    transition: var(--transition);
}

.topbar-right a:hover {
    color: var(--primary-light);
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 4px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.topbar i {
    color: var(--primary-light);
    font-size: 13px;
}

header.scrolled {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
}

.logo-wordmark {
    font-size: 38px;
    font-weight: 800;
    line-height: 0.92;
    color: var(--primary);
}

.logo small {
    color: #445466;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.desktop-menu {
    display: flex;
    list-style: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.desktop-menu li {
    margin: 0 14px;
}

.desktop-menu a {
    text-decoration: none;
    color: #14253c;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
    border-radius: 0;
    font-size: 15px;
}

.desktop-menu a:hover {
    color: var(--primary-dark);
}

.desktop-menu a.active {
    color: var(--primary-dark);
    background: transparent;
    box-shadow: none;
}

.desktop-menu a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.desktop-menu a.active:after,
.desktop-menu a:hover:after {
    transform: scaleX(1);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Off-canvas Mobile Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
    z-index: 1001;
    padding: 60px 30px;
    transition: var(--transition);
    overflow-y: auto;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-menu ul {
    list-style: none;
}

.offcanvas-menu li {
    margin-bottom: 15px;
}

.offcanvas-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
}

.offcanvas-menu a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.offcanvas-menu a.active {
    color: white;
    background: rgba(212, 175, 55, 0.22);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.45);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section with Carousel - Enhanced */
.hero {
    padding-top: 0;
    padding-bottom: 40px;
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 26%),
        linear-gradient(180deg, #f8f8f8 0%, #f1f4f8 100%);
}

.hero-shell {
    width: 100%;
    margin: 0;
    position: relative;
}

.hero .owl-carousel {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(17, 27, 43, 0.14);
}

.hero .owl-carousel .item {
    position: relative;
    height: min(78vh, 720px);
    min-height: 620px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero .owl-carousel .item:before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(16, 34, 59, 0.92) 0%, rgba(16, 34, 59, 0.78) 42%, rgba(16, 34, 59, 0.28) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 52px 52px, 52px 52px;
}

.carousel-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 720px;
    padding: 56px;
    background: linear-gradient(135deg, rgba(16, 34, 59, 0.62) 0%, rgba(16, 34, 59, 0.78) 100%);
    border-radius: 26px;
    margin-left: clamp(24px, 7vw, 90px);
    animation: fadeIn 1s ease;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-kicker:before {
    content: '';
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.carousel-content h1 {
    font-size: clamp(42px, 5vw, 64px);
    margin-bottom: 22px;
    color: white;
    line-height: 1.06;
    max-width: 10ch;
}

.carousel-content p {
    max-width: 580px;
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: var(--transition);
}

.hero-link i {
    transition: transform 0.3s ease;
}

.hero-link:hover {
    opacity: 1;
    color: var(--primary-light);
}

.hero-link:hover i {
    transform: translateX(4px);
}

.hero-floating-panel {
    position: absolute;
    right: clamp(18px, 3vw, 34px);
    bottom: 120px;
    z-index: 5;
    width: min(340px, calc(100% - 36px));
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-panel-label:before {
    content: '';
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.hero-panel-metrics {
    display: grid;
    gap: 12px;
}

.hero-panel-metrics div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-metrics strong {
    display: block;
    color: white;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-panel-metrics span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero .owl-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 8;
}

.hero .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 4px;
    background: rgba(255, 255, 255, 0.45);
    display: block;
    border-radius: 50%;
    transition: var(--transition);
}

.hero .owl-dot.active span {
    background: var(--primary);
    transform: scale(1.25);
    box-shadow: 0 0 10px var(--primary);
}

/* Custom Carousel Controls */
.custom-carousel-controls {
    position: absolute;
    left: clamp(18px, 3vw, 34px);
    right: clamp(18px, 3vw, 34px);
    bottom: 24px;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-status-card {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.hero-status-label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-status-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-status-meta strong {
    font-size: 28px;
    color: white;
}

.hero-status-meta span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.hero-progress-track {
    width: 100%;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(to right, var(--primary), #f3dc97);
}

.hero-progress-bar.is-animating {
    width: 100%;
    transition: width 7s linear;
}

.hero-nav-buttons {
    display: flex;
    gap: 12px;
}

.custom-carousel-controls button {
    pointer-events: auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.custom-carousel-controls button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35);
}

/* About Section - Enhanced */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--lighter) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    opacity: 0.1;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    display: inline-block;
    position: relative;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    margin: 20px auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.4) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Services Section - Enhanced */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, white 0%, var(--lighter) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.service-icon:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: var(--transition);
}

.service-card:hover .service-icon:after {
    transform: rotate(45deg) translate(20px, 20px);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--dark);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

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

/* Clients Section */
.clients {
    padding: 100px 0;
    background: var(--light);
}

.clients-carousel {
    margin-top: 50px;
}

.client-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin: 15px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo {
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

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

/* Scroll Image Sections */
.scroll-showcase {
    padding: 100px 0;
    background: linear-gradient(to bottom, white 0%, var(--light) 100%);
}

.scroll-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: stretch;
}

.scroll-photo-card {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.scroll-photo-card:before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 54, 93, 0.12) 0%, rgba(17, 27, 43, 0.82) 100%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.24) 0%, transparent 32%);
}

.scroll-photo-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    padding: 30px;
    color: white;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.scroll-photo-content h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 16px;
}

.scroll-photo-content p {
    font-size: 17px;
    opacity: 0.92;
}

.scroll-highlight-list {
    display: grid;
    gap: 20px;
}

.scroll-highlight-card {
    padding: 28px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.06);
}

.scroll-highlight-card h3 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 12px;
}

.scroll-highlight-card p {
    color: var(--dark);
}

.scroll-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scroll-kicker:before {
    content: '';
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.parallax-band {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-band:before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(16, 34, 59, 0.92) 0%, rgba(16, 34, 59, 0.72) 42%, rgba(16, 34, 59, 0.28) 100%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
}

.parallax-band .container {
    position: relative;
    z-index: 1;
}

.parallax-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: end;
}

.parallax-band-copy {
    color: white;
    max-width: 680px;
}

.parallax-band-copy h2 {
    color: white;
    font-size: 44px;
    margin-bottom: 18px;
}

.parallax-band-copy p {
    font-size: 18px;
    opacity: 0.9;
}

.parallax-panel {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.parallax-panel h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 18px;
}

.parallax-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.parallax-metrics div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.parallax-metrics strong {
    display: block;
    color: var(--primary-light);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.parallax-metrics span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

[data-scroll-parallax] {
    will-change: transform;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('/assets/img/contact-bg.jpg') center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0.2;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    opacity: 0.9;
}

/* Footer - Enhanced */
footer {
    background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-column ul li a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .topbar-container,
    .topbar-left,
    .topbar-right {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar-container {
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 8px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero .owl-carousel .item {
        min-height: 680px;
    }

    .carousel-content {
        max-width: calc(100% - 40px);
        margin: 24px 20px 0;
        padding: 40px 32px;
    }

    .hero-floating-panel {
        position: static;
        width: calc(100% - 40px);
        margin: -90px auto 0;
    }

    .custom-carousel-controls {
        left: 20px;
        right: 20px;
        bottom: 18px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-image {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: clamp(280px, 70vw, 420px);
        margin: 0 auto;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 0 calc(50% - 15px);
        min-width: 140px;
    }

    .custom-carousel-controls button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .hero-status-card {
        min-width: 200px;
    }

    .scroll-showcase-grid,
    .parallax-band-grid {
        grid-template-columns: 1fr;
    }

    .parallax-band {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 72px;
    }

    .topbar {
        display: none;
    }

    .logo-wordmark {
        font-size: clamp(24px, 6vw, 32px);
    }

    .hero {
        padding-top: 0;
        padding-bottom: 24px;
    }

    .hero-shell {
        width: 100%;
    }

    .hero .owl-carousel {
        border-radius: 0;
    }

    .hero .owl-carousel .item {
        height: auto;
        min-height: 580px;
        align-items: flex-end;
    }

    .carousel-content {
        max-width: calc(100% - 24px);
        margin: 0 12px 120px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .service-icon {
        height: 180px;
        font-size: 50px;
    }

    .stats-container {
        gap: 15px;
    }

    .stat-box {
        flex: 1 0 100%;
    }

    .about-image {
        height: clamp(240px, 72vw, 360px);
        min-width: 0;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-link {
        font-size: 15px;
    }

    .hero-floating-panel {
        width: calc(100% - 24px);
        margin-top: -86px;
        padding: 18px;
        border-radius: 20px;
    }

    .hero-panel-metrics strong {
        font-size: 24px;
    }

    .custom-carousel-controls {
        position: static;
        width: calc(100% - 24px);
        margin: 16px auto 0;
        align-items: stretch;
        flex-direction: column;
    }

    .hero-status-card {
        min-width: 0;
    }

    .hero-nav-buttons {
        justify-content: space-between;
    }

    .custom-carousel-controls button {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .hero .owl-theme .owl-dots {
        bottom: 86px;
    }

    .nav-container {
        gap: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .scroll-photo-card {
        min-height: 460px;
    }

    .scroll-photo-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 22px;
    }

    .scroll-photo-content h2,
    .parallax-band-copy h2 {
        font-size: 32px;
    }

    .parallax-metrics {
        grid-template-columns: 1fr;
    }
}

/* Hide .cta-button on screens smaller than 768px (common mobile breakpoint) */
@media (max-width: 767.98px) {
    .cta-button {
        display: none !important;
    }

    .offcanvas-menu {
        width: min(320px, 88vw);
        right: calc(-1 * min(320px, 88vw));
    }

    .offcanvas-menu.active {
        right: 0;
    }
}
