/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    /* Colors */
    --clr-primary: #0A192F;
    /* Deep Midnight Blue */
    --clr-primary-light: #112240;
    --clr-accent: #D4AF37;
    /* Premium Metallic Gold */
    --clr-accent-hover: #b8972b;
    --clr-bg-light: #F8F9FA;
    /* Off-White/Light Grey */
    --clr-text-light: #FFFFFF;
    --clr-text-dark: #212529;
    /* Dark Charcoal */
    --clr-text-muted: #6c757d;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-dark);
    line-height: 1.6;
    background-color: var(--clr-bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.section-light {
    background-color: var(--clr-bg-light);
    color: var(--clr-text-dark);
    padding: 80px 0;
}

.section-dark {
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
    margin-bottom: 40px;
}

.title-underline {
    height: 3px;
    width: 60px;
    background-color: var(--clr-accent);
    margin-bottom: 30px;
}

.title-underline.center {
    margin: 0 auto 30px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-outline-gold {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--clr-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-outline-gold:hover {
    color: var(--clr-text-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold:hover::before {
    width: 100%;
}

.btn-solid-gold {
    background: var(--clr-accent);
    color: var(--clr-text-light);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-solid-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--clr-accent-hover);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-solid-gold:hover {
    border-color: var(--clr-accent-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-solid-gold:hover::before {
    width: 100%;
}

.gold-text {
    color: var(--clr-accent);
}

.gold-underline {
    border-bottom: 2px solid var(--clr-accent);
    padding-bottom: 2px;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-light);
}

.nav-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.navbar.scrolled .nav-logo-img {
    height: 70px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--clr-text-light);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-primary);
}

.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: kenburns 25s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-1%, 1%);
    }
    100% {
        transform: scale(1.15) translate(1%, -1%);
    }
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; /* Adjust this to make the video darker/lighter */
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    opacity: 0.3;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 80%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: -2s;
}

.particle:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 70%;
    animation-duration: 22s;
    animation-delay: -8s;
}

.particle:nth-child(5) {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 40%;
    animation-duration: 30s;
    opacity: 0.15;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--clr-text-light);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 16px 36px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--clr-accent);
    z-index: -1;
    border-radius: 8px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-icon {
    font-size: 2rem;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--clr-bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--clr-text-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--clr-accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.15) translateY(-5px);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--clr-primary);
}

.service-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 15px auto 0 auto;
    text-align: left;
    max-width: 250px;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
    transition: var(--transition);
}

.service-list li::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--clr-accent);
    position: absolute;
    left: 4px;
    top: 1px;
    font-size: 0.95rem;
}

.service-card:hover .service-list li {
    color: var(--clr-text-dark);
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--clr-primary-light);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.team-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #0d2240;
}

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

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--clr-accent);
    background: #0d2240;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    color: var(--clr-accent);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-role {
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.team-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 30px;
}

.testimonials-track {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(0.85);
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-card.active-center {
    transform: scale(1.05);
    opacity: 1;
    z-index: 2;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--clr-accent);
    transform: scale(1.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--clr-primary);
    color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.user-name {
    font-size: 1.1rem;
    color: var(--clr-primary);
    margin-bottom: 2px;
}

.verified-label {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-label i {
    color: #4285F4;
}

.stars {
    color: var(--clr-accent);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--clr-text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--clr-primary-light);
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    border-left: 3px solid var(--clr-accent);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
    /* Hide default arrow Safari */
}

.faq-question::after {
    content: '\f067';
    /* FontAwesome plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--clr-accent);
    transition: var(--transition);
}

details[open] .faq-question::after {
    content: '\f068';
    /* FontAwesome minus icon */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

details[open] summary~* {
    animation: faq-slide-down 0.4s ease-in-out;
}

@keyframes faq-slide-down {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--clr-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-text-dark);
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background-color: #ffffff;
}

.form-result {
    margin-bottom: 20px;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    display: none;
    text-align: center;
    transition: var(--transition);
}

.form-result.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-result.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.captcha-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px dashed #ced4da;
}

.captcha-group label span {
    font-weight: 700;
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-top: 5px;
}

.info-card h4 {
    font-size: 1.1rem;
    color: var(--clr-primary);
    margin-bottom: 5px;
}

.info-card p {
    color: var(--clr-text-muted);
}

.info-card a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--clr-accent);
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Minimal Footer
   ========================================================================== */
.minimal-footer {
    background-color: var(--clr-primary);
    padding: 50px 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 150px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-text i {
    color: var(--clr-accent);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.minimal-footer .footer-socials {
    display: flex;
    gap: 15px;
}

.minimal-footer .footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.minimal-footer .footer-socials a:hover {
    background: var(--clr-accent);
    color: var(--clr-primary);
    border-color: var(--clr-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.disclaimer {
    width: 100%;
    margin: 0 auto 15px auto;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: justify;
}

.disclaimer strong {
    color: var(--clr-accent);
}

.built-by {
    color: #aaa;
}

/* ==========================================================================
   Floating Actions
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

.floating-whatsapp,
.scroll-to-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    color: #fff;
    text-decoration: none;
}

.floating-whatsapp {
    background-color: #25d366;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.floating-whatsapp.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.scroll-to-top {
    background-color: var(--clr-accent);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    background-color: var(--clr-accent-hover);
    color: #fff;
}

/* ==========================================================================
   Responsive Design (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .image-wrapper::after {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-primary);
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .team-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
        transform: scale(0.95);
        opacity: 0.5;
    }

    .footer-top {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .contact-form-container {
        padding: 25px;
    }
}