/* 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: 120px; /* Space for left frame */
    padding-right: 100px; /* Space for right dots */
    padding-top: 80px; /* Space for header */
    padding-bottom: 40px;
}

/* Persistent UI Elements */
.left-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    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: 80px;
    right: 0;
    height: 80px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    pointer-events: none;
}

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

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.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;
}

/* 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);
}

/* 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;
}

.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-content {
    text-align: center;
    padding: 0 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.animated-text-container {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    color: #f26522; /* Light yellow color */
    position: relative;
    /* Ensure it doesn't break layout if text wraps on mobile */
    min-width: 10px;
}

.text-slide {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    animation: textSlideAnim 8s infinite;
}

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

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

@keyframes textSlideAnim {
    0%, 5% { opacity: 0; transform: translateY(20px); }
    15%, 40% { opacity: 1; transform: translateY(0); }
    50%, 100% { opacity: 0; transform: translateY(-20px); }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 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: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    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: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 60px;
    opacity: 0.9;
}

/* Services Panel */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.service-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px;
    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: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    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 80px;
    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;
    padding: 50px 40px;
    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: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    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: 320px;
    flex-shrink: 0;
    position: relative;
}

.cta-img-wrapper {
    position: absolute;
    top: -30px;
    bottom: -30px;
    right: -20px;
    width: 320px;
    border-radius: 16px;
    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: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    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(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 40px 25px 35px;
    border-radius: 20px;
    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;
    gap: 80px;
    align-items: center;
}

.split-layout > div {
    flex: 1;
}

.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: 2.4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.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: 25px;
    max-width: 750px;
}

.brand-card {
    width: 220px;
    height: 110px;
    background: #f9f9f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    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: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}
.big-impact::after { display: none; }

.contact-desc {
    font-size: 1.4rem;
    margin-bottom: 50px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-left: 4px solid var(--primary-orange);
    backdrop-filter: blur(10px);
}

.contact-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.highlight-text {
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1.2rem !important;
    margin-top: 30px;
}

/* Footer Redesign */
.footer {
    position: relative;
    margin-top: auto;
    width: calc(100% + 220px);
    margin-left: -120px;
    z-index: 5;
    padding: 0 100px;
    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;
    gap: 80px;
    padding: 40px 20px 30px;
}

.footer-about {
    flex: 1.5;
}

.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;
    display: flex;
    gap: 50px;
}

.footer-contact {
    flex: 0.6;
}

.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;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
    .panel { padding-left: 60px; padding-right: 60px; }
    .hero-title { font-size: 3rem; }
    .split-layout { gap: 40px; }
    .why-us-content .section-title { font-size: 2.2rem; }
}

@media (max-width: 992px) {
    .left-frame, .right-nav { display: none; }
    .panel { padding-left: 40px; padding-right: 40px; }
    .top-bar { left: 0; padding: 0 40px; }
    
    .cta-card { flex-direction: column; overflow: hidden; }
    .cta-card-left { padding: 40px; }
    .cta-card-right { width: 100%; height: 250px; }
    .cta-img-wrapper { position: static; width: 100%; height: 100%; border-radius: 0; }
    
    .services-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .features-grid { gap: 20px; }
    
    .split-layout { flex-direction: column; }
    .contact-left, .contact-right { flex: none; width: 100%; }
    
    .footer-top { flex-wrap: wrap; gap: 40px; }
    .footer-about { flex: 1 1 100%; }
}

@media (max-width: 768px) {
    .panel {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        min-height: 100vh;
        scroll-snap-align: start;
        padding-top: 100px;
        padding-bottom: 40px;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .top-bar { padding: 0 20px; height: 70px; }
    .brand-logo { height: 40px; }
    .menu-toggle span { display: none; }
    
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .grid-columns { flex-direction: column; gap: 30px; }
    
    .section-title { font-size: 2rem; }
    .section-intro { font-size: 1rem; width: 100%; }
    
    .cta-banner { padding-top: 50px; }
    .cta-banner-content { padding: 0 20px; }
    .cta-banner-title { font-size: 1.8rem; }
    .cta-dots { display: none; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; text-align: center; }
    
    .services-list { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .brands-title { font-size: 2rem; }
    .brand-card { width: calc(50% - 10px); height: 90px; }
    
    .contact-actions { flex-direction: column; }
    .contact-actions .btn { width: 100%; text-align: center; }
    
    .footer { 
        padding: 40px 20px 20px; 
        position: relative; 
        border-radius: 20px 20px 0 0; 
        width: calc(100% + 40px); 
        margin-left: -20px; 
        margin-right: -20px;
        margin-top: auto; 
    }
    .footer-top { flex-direction: column; gap: 30px; padding: 0; }
    .footer-sitemap, .footer-contact { flex: none; width: 100%; gap: 20px; display: flex; flex-direction: column; }
    
    /* Modify scroll container behavior on mobile to allow natural overflow scrolling */
    .scroll-container {
        scroll-snap-type: none; 
    }
}

/* ------------------------------------- */
/* 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; }
}
