/* Base and Variables */
:root {
    --primary-orange: #f26522;
    /* Indian flag bright orange */
    --primary-orange-hover: #fa8f5c;
    --primary-green: #138808;
    /* Indian flag green */
    --primary-green-dark: #0f6c06;
    --navy-dark: #0b1320;
    --navy-light: #162438;
    --white: #ffffff;
    --text-dark: #121212;
    --text-light: #f5f5f5;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html,
body {
    width: 100%;
    height: 100vh;
    font-family: var(--font-body);
    background-color: var(--navy-dark);
    color: var(--text-light);
    overflow: hidden;
    /* Hide normal scroll to use snap scroll */
}

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

/* Snap Scroll Architecture */
.scroll-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.panel {
    scroll-snap-align: start;
    width: 100%;
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(1.25rem, 8vw, 7.5rem);
    padding-right: clamp(1.25rem, 6vw, 6.25rem);
    padding-top: clamp(5rem, 10vh, 6.25rem);
    padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
    box-sizing: border-box;
}

/* Persistent UI Elements */
.left-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 100vh;
    z-index: 100;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.left-social-icons {
    position: absolute;
    top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.left-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.left-social:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

/* Dark mode for left panel on white sections */
.left-frame.dark-mode .left-social {
    background: rgba(0, 0, 0, 0.08);
    color: #555;
}

.left-frame.dark-mode .left-social:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.left-frame.dark-mode .vertical-text {
    color: #333;
}

.vertical-text {
    transform: rotate(-90deg);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0.8;
}

.top-bar {
    position: fixed;
    top: 0;
    left: clamp(3.5rem, 6vw, 5rem);
    right: 0;
    height: clamp(3.5rem, 8vh, 5rem);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    pointer-events: none;
}

.logo {
    pointer-events: auto;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: clamp(2rem, 4vw, 3rem);
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.contact-info-top {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    pointer-events: auto;
    font-family: inherit;
}

.menu-toggle span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s ease;
}

/* Dark mode for top bar on white sections */
.top-bar.dark-mode:not(.menu-open) .menu-toggle {
    color: var(--text-dark);
}

.top-bar.dark-mode:not(.menu-open) .hamburger .bar {
    background-color: var(--text-dark);
}

.top-bar.dark-mode:not(.menu-open) .brand-logo {
    filter: brightness(0);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--navy-dark);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-nav ul {
    list-style: none;
    text-align: center;
}

.menu-nav li {
    margin: 30px 0;
}

.menu-link {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--primary-orange);
}

/* Right Navigation Dots */
.right-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.nav-dots {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    background-color: var(--primary-orange);
    transform: scale(1.5);
}

/* Dark mode for right navigation dots on white sections */
.right-nav.dark-mode:not(.menu-open) .dot {
    background-color: rgba(0, 0, 0, 0.25);
}

.right-nav.dark-mode:not(.menu-open) .dot.active {
    background-color: var(--primary-orange);
}

/* Panel Backgrounds and Overlays */
.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dark-green-glow {
    background: linear-gradient(135deg, rgba(8, 25, 14, 0.95), rgba(11, 19, 32, 0.9));
}

.orange-tint {
    background: rgba(242, 101, 34, 0.92);
    /* Vibrant Orange */
}

.blue-tint {
    background: rgba(0, 0, 0, 0.5);
    /* Black tint at 50% opacity */
}

.navy-tint {
    background: rgba(11, 19, 32, 0.95);
}

.green-gradient {
    background: linear-gradient(to right, rgba(11, 19, 32, 0.95), rgba(19, 136, 8, 0.85));
}

.panel-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Panel 1: Hero Grid */
.hero .grid-columns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.hero .col {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero .col:hover {
    flex: 1.4;
}

.col-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    filter: grayscale(60%);
}

.hero .col:hover .col-bg {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.col-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease;
}

.hero .col:hover .col-overlay {
    opacity: 0.15;
}

.orange-overlay {
    background: rgba(242, 101, 34, 0.85);
}

.dark-overlay {
    background: rgba(11, 19, 32, 0.9);
}

.green-overlay {
    background: rgba(19, 136, 8, 0.85);
}

.navy-overlay {
    background: rgba(11, 19, 32, 0.7);
}

.hero {
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    width: 100%;
}

.hero-title {
    font-size: clamp(1.4rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: clamp(1rem, 3vh, 1.875rem);
    text-transform: uppercase;
    word-break: break-word;
}

.hero-title .accent {
    color: var(--primary-orange);
}

.mobile-only {
    display: none !important;
}

/* --- Multi-line Typewriter (Mobile) --- */
.animated-text-multi {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    color: #f26522;
    position: relative;
    width: 100%;
}
.animated-text-multi::after {
    content: "CONNECT, ENGAGE,\A AND GROW";
    white-space: pre;
    grid-area: 1 / 1 / 2 / 2;
    visibility: hidden;
    pointer-events: none;
}
.multi-slide {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: multiSlideAnim 12s infinite;
}
.multi-slide:nth-child(1) { animation-delay: 0s; }
.multi-slide:nth-child(2) { animation-delay: 6s; }
.multi-slide:nth-child(1) .multi-line { animation-delay: 0s; }
.multi-slide:nth-child(2) .multi-line { animation-delay: 6s; }

.multi-line {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent;
    max-width: 0;
    line-height: 1.2;
}
.multi-slide .line1 {
    animation: typingLine1 12s steps(15, end) infinite;
}
.multi-slide .line2 {
    animation: typingLine2 12s steps(15, end) infinite;
}

@keyframes multiSlideAnim {
    0%, 49.9% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes typingLine1 {
    0% { max-width: 0; border-right-color: #f26522; }
    15% { max-width: 100%; border-right-color: #f26522; }
    16%, 49.9% { max-width: 100%; border-right-color: transparent; }
    50%, 100% { max-width: 0; border-right-color: transparent; }
}

@keyframes typingLine2 {
    0%, 15% { max-width: 0; border-right-color: transparent; }
    16% { max-width: 0; border-right-color: #f26522; }
    31% { max-width: 100%; border-right-color: #f26522; }
    32%, 35% { max-width: 100%; border-right-color: transparent; }
    36%, 39% { max-width: 100%; border-right-color: #f26522; }
    40%, 43% { max-width: 100%; border-right-color: transparent; }
    44%, 49.9% { max-width: 100%; border-right-color: #f26522; }
    50%, 100% { max-width: 0; border-right-color: transparent; }
}

.animated-text-container {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    color: #f26522;
    position: relative;
    min-width: 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.animated-text-container::after {
    content: "CONNECT, ENGAGE, AND GROW";
    grid-area: 1 / 1 / 2 / 2;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
    padding-right: 4px;
}

.text-slide {
    grid-area: 1 / 1 / 2 / 2;
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid #f26522;
    box-sizing: content-box;
    max-width: 0;
    opacity: 0;
    animation: typingAnim 12s steps(25, end) infinite, blinkAnim .75s step-end infinite;
}

.text-slide:nth-child(1) {
    animation-delay: 0s, 0s;
}

.text-slide:nth-child(2) {
    animation-delay: 6s, 0s;
}

@keyframes typingAnim {
    0% {
        opacity: 1;
        max-width: 0;
    }

    8.3%,
    41.7% {
        opacity: 1;
        max-width: 100%;
    }

    49.9% {
        opacity: 1;
        max-width: 0;
    }

    50%,
    100% {
        opacity: 0;
        max-width: 0;
    }
}

@keyframes blinkAnim {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #f26522;
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(0.7rem, 1.5vh, 1rem) clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 700;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

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

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

/* General Typography inside Panels */
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
}

.section-intro {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    max-width: min(800px, 100%);
    margin-bottom: clamp(1.5rem, 5vh, 3.75rem);
    opacity: 0.9;
}

/* Services Panel */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: clamp(1rem, 3vw, 2.5rem);
}

.service-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: clamp(1rem, 2.5vw, 1.875rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
}

.service-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    margin-bottom: 0.625rem;
    color: var(--primary-orange);
}

.service-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* CTA Banner */
.cta-banner {
    scroll-snap-align: start;
}

.cta-gradient-bg {
    background: linear-gradient(135deg, #0b1320 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
}

.cta-banner .panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(1rem, 5vw, 5rem);
    width: 100%;
    height: 100%;
}

/* Decorative dots pattern */
.cta-dots {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 160px;
    background-image: radial-gradient(circle, var(--primary-orange) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
}

.cta-card {
    display: flex;
    align-items: stretch;
    background: rgba(11, 19, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: visible;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-card-left {
    flex: 1;
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 3.125rem) clamp(1.25rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cta-banner-title {
    font-size: clamp(1.2rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.9375rem;
    line-height: 1.2;
}

.cta-banner-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-card-right {
    width: clamp(12rem, 25vw, 20rem);
    flex-shrink: 0;
    position: relative;
}

.cta-img-wrapper {
    position: absolute;
    top: -1.875rem;
    bottom: -1.875rem;
    right: -1.25rem;
    width: clamp(12rem, 25vw, 20rem);
    border-radius: 1rem;
    overflow: hidden;
    background: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Why Us Panel */
.text-dark {
    color: var(--text-dark);
}

.text-dark.section-title::after {
    background-color: var(--text-dark);
}

.font-medium {
    font-weight: 600;
}

.why-us-content {
    text-align: center;
}

.why-us-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-us-title {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.9375rem;
    line-height: 1.1;
}

.why-us-title::after {
    display: none;
}

.why-us-desc {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
    gap: clamp(0.75rem, 2vw, 1.5625rem);
}

.feature-card {
    background: var(--white);
    padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5625rem);
    border-radius: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fdaa48, #e8912d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(253, 170, 72, 0.15);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    line-height: 1.6;
    font-size: 0.9rem;
    color: #666;
}

/* Split Layouts (About, Contact) */
.split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: stretch;
    width: 100%;
}

.split-layout > div {
    flex: 1;
    min-width: clamp(16rem, 40%, 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.mt-top {
    margin-top: 40px;
}

/* Brands Section - White Background Grid */
.brands-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brands-title {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.9375rem;
}

.brands-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5625rem);
    max-width: min(750px, 100%);
    width: 100%;
}

.brand-card {
    width: clamp(8rem, 18vw, 13.75rem);
    height: clamp(4.5rem, 8vw, 6.875rem);
    background: #f9f9f9;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1.25rem);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
}

.brand-card:hover {
    transform: scale(1.12) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
    background: #fff;
    z-index: 10;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.client-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-8px);
}

.client-img-wrapper {
    background: #4a4a4a;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dummy-client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background-color: #4a4a4a;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 150px;
    text-align: center;
    letter-spacing: 1px;
}

.client-info {
    padding: 15px 12px;
    background: var(--white);
}

.client-info h4 {
    font-size: 0.95rem;
    color: var(--navy-dark);
    margin: 0 0 3px;
    font-weight: 800;
}

.client-info span {
    font-size: 0.8rem;
    color: #666;
}

/* Contact */
.big-impact {
    font-size: clamp(1.6rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: clamp(1rem, 3vh, 1.875rem);
}

.big-impact::after {
    display: none;
}

.contact-desc {
    font-size: clamp(0.95rem, 2vw, 1.4rem);
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1.5rem, 4vw, 3.125rem);
    border-left: 4px solid var(--primary-orange);
    backdrop-filter: blur(10px);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-box h3 {
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: clamp(0.75rem, 2vh, 1.5625rem);
}

.contact-box p {
    margin-bottom: clamp(0.75rem, 1.5vh, 1.25rem);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-text {
    font-weight: 700;
    color: var(--white) !important;
    font-size: clamp(0.9rem, 1.8vw, 1.2rem) !important;
    margin-top: clamp(1rem, 2vh, 1.875rem);
}

/* Footer Redesign */

/* Contact panel: column layout so footer pins to bottom */
.contact.panel {
    justify-content: space-between;
    padding-top: clamp(5rem, 12vh, 7rem);
    padding-bottom: 0;
}

/* panel-content inside contact is the split-layout itself — give it flex:1 so it fills available space */
.contact .panel-content {
    flex: 1;
    align-self: stretch;
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
}

.footer {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    z-index: 5;
    padding: 0 clamp(1rem, 5vw, 4rem);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 3rem);
    padding: clamp(1.5rem, 4vh, 2.5rem) clamp(0.5rem, 2vw, 1.25rem) clamp(1rem, 3vh, 1.875rem);
}

.footer-about {
    flex: 1.5;
    min-width: clamp(14rem, 30%, 100%);
}

.footer-about h4,
.footer-sitemap h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-about p {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
}

.footer-sitemap {
    flex: 0.8;
    min-width: clamp(8rem, 15%, 100%);
    display: flex;
    gap: 0 clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

/* Force the heading onto its own row so the two ul columns sit side-by-side below it */
.footer-sitemap h4 {
    width: 100%;
    flex-shrink: 0;
}

/* Each ul column aligns to the top independently */
.footer-sitemap ul {
    align-self: flex-start;
}

.footer-contact {
    flex: 0.6;
    min-width: clamp(8rem, 12%, 100%);
}

.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact ul li a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-contact ul li a::before {
    content: '›';
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.footer-contact ul li a:hover {
    color: var(--primary-orange);
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 0;
}

.footer-sitemap ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-sitemap ul li a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-sitemap ul li a::before {
    content: '›';
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.footer-sitemap ul li a:hover {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 10px 0 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS — fluid proportional system
   ===================================================== */

/* --- Large desktop (1400px+): widen content area --- */
@media (min-width: 1400px) {
    .panel-content {
        max-width: 1400px;
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Laptop / small desktop (≤ 1200px) --- */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-card-right {
        width: clamp(10rem, 22vw, 18rem);
    }
    .cta-img-wrapper {
        width: clamp(10rem, 22vw, 18rem);
    }
}

/* --- Tablet landscape (≤ 992px): hide side chrome --- */
@media (max-width: 992px) {
    .left-frame,
    .right-nav {
        display: none;
    }
    .top-bar {
        left: 0;
    }
    .panel {
        padding-left: clamp(1.25rem, 5vw, 3rem);
        padding-right: clamp(1.25rem, 5vw, 3rem);
    }
    .cta-card {
        flex-direction: column;
        overflow: hidden;
    }
    .cta-card-right {
        width: 100%;
        height: clamp(12rem, 30vw, 18rem);
        flex-shrink: 0;
    }
    .cta-img-wrapper {
        position: static;
        width: 100%;
        height: 100%;
        border-radius: 0;
        top: auto;
        bottom: auto;
        right: auto;
    }
    .split-layout {
        flex-direction: column;
    }
    .contact-left,
    .contact-right {
        width: 100%;
        flex: none;
    }
    .footer-about {
        flex: 1 1 100%;
    }
}

/* --- Tablet portrait (≤ 768px) --- */
@media (max-width: 768px) {
    html, body {
        overflow: hidden;
    }
    .scroll-container {
        scroll-snap-type: y mandatory;
    }
    .panel {
        padding-left: clamp(1rem, 5vw, 2rem);
        padding-right: clamp(1rem, 5vw, 2rem);
        padding-top: clamp(5rem, 12vh, 7rem);
        padding-bottom: clamp(1.5rem, 4vh, 3rem);
        justify-content: center;
        min-height: 100svh;
    }
    .hero {
        justify-content: center;
    }
    .hero-content {
        margin-top: 0;
    }
    .hero .bg-img {
        object-position: 50% 30%;
    }
    .menu-toggle span {
        display: none;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: inline-grid !important;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        max-width: 100%;
    }
    .brand-card {
        width: clamp(7rem, 40%, 12rem);
        height: clamp(4rem, 10vw, 6rem);
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .cta-dots {
        display: none;
    }
    .contact-actions .btn {
        width: 100%;
        text-align: center;
    }
    .footer {
        width: 100%;
        margin-left: 0;
        border-radius: 1.25rem 1.25rem 0 0;
    }
    .footer-top {
        flex-direction: column;
        gap: clamp(1rem, 3vh, 2rem);
        padding: clamp(1rem, 3vh, 1.5rem) 0 clamp(0.75rem, 2vh, 1.25rem);
    }
    .footer-about,
    .footer-sitemap,
    .footer-contact {
        min-width: unset;
        width: 100%;
        flex: none;
    }
    .footer-sitemap {
        gap: 1.5rem;
    }
}

/* --- Mobile (≤ 480px): single column, compact --- */
@media (max-width: 480px) {
    .scroll-container {
        scroll-snap-type: none;
        overflow-y: auto;
    }
    .panel {
        min-height: 100svh;
        justify-content: center;
    }
    .hero {
        justify-content: center;
    }
    /* Mobile: keep the desktop typewriter animation — no overrides needed */
    .features-grid {
        grid-template-columns: 1fr;
    }
    .brand-card {
        width: calc(50% - 0.5rem);
    }
    .menu-link {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .cta-card {
        border-radius: 0.75rem;
    }
    .contact-box {
        padding: 1.25rem;
    }
}

@keyframes mobileFadeAnim {
    0% {
        opacity: 0;
    }
    8.3%,
    41.7% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

/* --- Large TV / 4K screens (≥ 2000px) --- */
@media (min-width: 2000px) {
    html {
        font-size: 20px;
    }
    .panel-content {
        max-width: 1800px;
    }
}

/* ------------------------------------- */
/* Hire Us Form Page Styles */
/* ------------------------------------- */
.form-page {
    background: linear-gradient(135deg, #0b1320 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: var(--font-body);
}

.form-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.form-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 60px;
}

.form-card {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-group .required {
    color: #ff3b3b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #f5f6f8;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}

.submit-btn {
    align-self: flex-start;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 45px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
}

@media (max-width: 768px) {
    .form-card {
        padding: 40px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-top-bar {
        padding: 20px;
    }

    .submit-btn {
        align-self: stretch;
        width: 100%;
        text-align: center;
    }
}