/* CSS Variables & Reset */
:root {
    --color-petro-dark: #0A3D3F;
    --color-navy-dark: #0D1B2A;
    --color-tech-grey: #1B2631;
    --color-black-deep: #050A10;
    --color-cyan: #00E5FF;
    --color-cyan-glow: rgba(0, 229, 255, 0.4);

    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --animation-iteration: infinite;
    /* Changed by JS */
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-black-deep);
    color: #fff;
    overflow-x: hidden;
    /* Allow vertical scroll, prevent horizontal */
    width: 100%;
    min-height: 100vh;
}

/* Three.js Background */
#webgl-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Scroll Wrapper - Now a normal flow container */
.scroll-wrapper {
    width: 100%;
    position: relative;
}

/* Sections - Now flow layout instead of stacked slides */
.slide {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    min-height: auto;
}

/* Hero section keeps full height */
.slide-hero {
    min-height: 100vh;
    padding: 0;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 10;
}

/* COSMIC HERO STYLES */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('https://i.imgur.com/PnXpnCR.png') no-repeat center center;
    background-size: cover;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    /* Hide canvas to show image */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.4);
    /* Lighter Overlay */
    backdrop-filter: blur(0px);
    /* Reduced blur for clearer image */
}

.cosmic-parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Section Backgrounds */
.slide-about {
    background: linear-gradient(180deg, var(--color-black-deep), var(--color-navy-dark));
}

/* Stars Animation */
@keyframes animStar {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-2000px);
    }
}

#stars,
#stars2,
#stars3 {
    width: 1px;
    height: 1px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

#stars {
    animation: animStar 50s linear var(--animation-iteration);
}

#stars2 {
    animation: animStar 100s linear var(--animation-iteration);
}

#stars3 {
    animation: animStar 150s linear var(--animation-iteration);
}

#title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #FFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-align: center;
}

#subtitle {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--color-cyan);
    text-align: center;
    text-transform: uppercase;
}

/* Animation Utilities for GSAP */
.reveal-text,
.partner-card,
.service-card,
.benefits-list li,
.hero-btn {
    opacity: 0;
    /* JS will fade in */
}

/* Reusing Layouts */
/* Reusing Layouts */
.partners-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    /* Safety for mobile */
}

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

.divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-cyan);
    font-size: 1.5rem;
}

.connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--color-cyan), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Cards & Components */
.partner-card,
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
}

.partner-card h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.5rem;
}

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

.stat-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--color-cyan);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
}

.number {
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--color-cyan);
    line-height: 1;
}

.btn {
    display: inline-flex;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 2rem;
    letter-spacing: 2px;
}

.btn:hover {
    background: var(--color-cyan);
    color: #000;
    box-shadow: 0 0 30px var(--color-cyan-glow);
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

p {
    color: var(--color-grey-light, #CCC);
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--color-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--color-cyan);
}

.main-nav {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: var(--transition);
}

.main-nav a.active-link {
    color: var(--color-cyan);
    transform: scale(1.2);
}

/* Hero Button specific */
.hero-content-layer {
    position: absolute;
    bottom: 15%;
    width: 100%;
    text-align: center;
    z-index: 20;
}

/* TEAM SECTION - PREMIUM EXECUTIVE CARDS */
.slide-team {
    background: linear-gradient(135deg, #0a1929 0%, #0d1b2a 50%, #1a2332 100%);
    padding: 5rem 0;
}

.team-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1100px;
}

/* Executive Card */
.executive-card {
    position: relative;
    opacity: 0;
    /* GSAP animation */
}

.card-frame {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(0, 229, 255, 0.15);
    padding: 2.5rem 2rem;
    position: relative;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.card-frame:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 15px 50px rgba(0, 229, 255, 0.15);
    transform: translateY(-5px);
}

/* Decorative Frame Border */
.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.frame-border::before,
.frame-border::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-cyan);
}

.frame-border::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.frame-border::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* Executive Photo */
.executive-photo {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border: 4px solid transparent;
    background: linear-gradient(#0d1b2a, #0d1b2a) padding-box,
        linear-gradient(135deg, var(--color-cyan), rgba(0, 229, 255, 0.3)) border-box;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2),
        inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.executive-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition);
}

.card-frame:hover .executive-photo img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 229, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.card-frame:hover .photo-overlay {
    opacity: 1;
}

/* Executive Header */
.executive-header {
    margin-bottom: 1.5rem;
}

.executive-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: 1px;
}

.title-badge {
    display: block;
    font-size: 0.95rem;
    color: var(--color-cyan);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.age-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--color-cyan);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: 20px;
}

/* Expand Button */
.expand-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.expand-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--color-cyan);
}

.expand-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.executive-card.expanded .expand-btn i {
    transform: rotate(180deg);
}

/* Drawer Content */
.drawer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.executive-card.expanded .drawer-content {
    max-height: 600px;
}

.drawer-inner {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    margin-top: 1.5rem;
}

.bio-section,
.expertise-section {
    margin-bottom: 2rem;
    text-align: left;
}

.bio-section h4,
.expertise-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bio-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.skills-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skills-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.skills-list i {
    color: var(--color-cyan);
    font-size: 1.2rem;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Statement */
.team-statement {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(0, 229, 255, 0.02));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 4px solid var(--color-cyan);
    text-align: left;
    position: relative;
}

.statement-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-icon i {
    font-size: 1.5rem;
    color: #000;
}

.team-statement p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.team-statement strong {
    color: var(--color-cyan);
    font-weight: 600;
}

/* SERVICES SECTION */
.slide-services {
    background: var(--color-tech-grey);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
    display: block;
}

.service-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
}

/* DIFFERENTIALS SECTION */
.slide-differentials {
    background: #151a21;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefits-list i {
    font-size: 2rem;
    color: var(--color-cyan);
    margin-top: 5px;
}

/* CONTACT SECTION */
.slide-contact {
    background: #000;
}

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

.btn-large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    background: var(--color-cyan);
    color: #000;
    border: none;
}

.pulse-effect {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(0, 229, 255, 0);
    }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .slide {
        padding: 4rem 0;
    }

    .slide-hero {
        min-height: 100vh;
        padding: 0;
    }

    .slide-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    h2 {
        font-size: 2.8rem;
    }

    .diff-container,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 3rem 0;
    }

    #title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        padding: 0 1rem;
    }

    #subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    .main-nav {
        display: none;
        /* Hide nav dots on mobile */
    }

    .hero-content-layer {
        bottom: 10%;
    }

    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .partners-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .member-photo {
        width: 150px;
        height: 150px;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .team-mission {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .stat-circle {
        width: 200px;
        height: 200px;
    }

    .number {
        font-size: 4rem;
    }

    .benefits-list {
        gap: 1.5rem;
    }

    .benefits-list li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-large {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }

    #webgl-bg {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    #title {
        font-size: 2rem;
    }

    #subtitle {
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .slide-content {
        padding: 1rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .stat-circle {
        width: 150px;
        height: 150px;
    }

    .number {
        font-size: 3rem;
    }
}

/* WHATSAPP MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #0d1b2a, #1a2332);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #fff;
    font-size: 1.5rem;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.contact-card:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--color-cyan);
    transform: translateX(5px);
}

.contact-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-cyan);
    flex-shrink: 0;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-info h4 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.contact-role {
    font-size: 0.9rem;
    color: var(--color-cyan);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-number {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-icon {
    font-size: 2.5rem;
    color: #25D366;
    flex-shrink: 0;
}

/* NAVIGATION DOTS UPDATE */
.main-nav a {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.main-nav a.active-link {
    background: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan-glow);
    transform: scale(1.3);
}

.main-nav a:hover {
    background: rgba(0, 229, 255, 0.5);
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-header i {
        font-size: 3rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-photo {
        width: 60px;
        height: 60px;
    }

    .contact-info h4 {
        font-size: 1.1rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    /* Team Section Mobile */
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .executive-photo {
        width: 150px;
        height: 150px;
    }

    .drawer-inner {
        padding: 1.5rem;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}

/* FOOTER STYLES */
.site-footer {
    background: linear-gradient(180deg, #0a0f15 0%, #000 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.15);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Column */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-company-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-company-info i {
    color: var(--color-cyan);
    font-size: 1.1rem;
}

/* Footer Titles */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-cyan);
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--color-cyan);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--color-cyan);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Footer Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-company-info p {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: var(--color-cyan);
        margin: 0.75rem auto 0;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 2rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }
}