:root {
    /* Color Palette from JSON Specs */
    --black: #0A0A0A;
    --red-primary: #DC143C;
    --red-secondary: #FF0000;
    --red-orange: #FF4500;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #000000 0%, #8B0000 50%, #FF0000 100%);
    --animated-red-black: linear-gradient(45deg, #000, #330000, #1a0000, #660000, #000);
    --card-glow: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);

    /* Effects */
    --perspective: 1000px;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor implementation later */
}

/* Custom Cursor */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--red-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 15px var(--red-secondary), 0 0 30px var(--red-primary);
    transition: transform 0.1s ease-out;
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.05s linear;
}

.cursor-trail:nth-child(even) {
    background: rgba(220, 20, 60, 0.3);
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* 3D Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
}
/* Portfolio Specific Rectangular Cards */
.portfolio-card {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
}

.portfolio-card .card-image {
    flex: 1;
    max-width: 450px;
}

.portfolio-card .card-content {
    flex: 1;
}

@media (max-width: 768px) {
    .portfolio-card {
        flex-direction: column;
        text-align: center;
    }
    .portfolio-card .card-image {
        max-width: 100%;
    }
}

/* Hero Section Base */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--animated-red-black);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    padding: 0 5%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

.dot.active {
    background: white;
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}


@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fluid Hero Core Styles */
.fluid-hero {
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff4d6d 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 150px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Redesigned Nav Elements */
.search-container {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    width: 180px;
}

.search-container input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.85rem;
    width: 100%;
}

.search-container input::placeholder { color: rgba(255,255,255,0.5); }

.nav-links.centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-register {
    background: white;
    color: black;
    border-radius: 30px;
    padding: 0.6rem 1.5rem !important;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    font-weight: 800;
}

.bottom-indicators {
    position: absolute;
    bottom: 3rem;
    width: 90%;
    left: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.dot.active {
    background: white;
    transform: scale(1.5);
}


/* Fluid Design Static Fallback */
.fluid-hero {
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.fluid-bg-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(80px);
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: blobMove 6.6s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff0044 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #800020 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -2s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff4d6d 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: -4s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(150px, 100px) scale(1.3) rotate(120deg); }
    66% { transform: translate(-100px, 250px) scale(0.7) rotate(240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

/* Main Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sticky-nav {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem 4%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 45px;
    display: block;
}

.nav-links.centered {
    flex: 0 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

#main-header.scrolled .sticky-nav {
    padding: 0.8rem 4%;
    background: transparent;
}

/* Redesigned Nav Elements */
.search-container {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 160px;
}

.search-container i {
    font-size: 0.8rem;
    opacity: 0.5;
}

.search-container input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.8rem;
    width: 100%;
}

.search-container input::placeholder { color: rgba(255,255,255,0.5); }

.nav-links.centered {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 1;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-contact {
    background: white;
    color: black;
    border-radius: 30px;
    padding: 0.6rem 1.8rem !important;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--red-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 20px;
}

.bottom-indicators {
    position: absolute;
    bottom: 3rem;
    width: 90%;
    left: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.dot.active {
    background: white;
    transform: scale(1.5);
}


/* Techy Hero Additions */
.cyber-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--red-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--red-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center bottom;
    transform: perspective(500px) rotateX(60deg) translateY(-50px);
    opacity: 0.15;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    animation: gridMove 10s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { background-position: center 0; }
    100% { background-position: center 50px; }
}

.tech-glitch {
    position: relative;
    color: white;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.8), 0 0 20px rgba(220, 20, 60, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(220, 20, 60, 0.8), 0 0 20px rgba(220, 20, 60, 0.5); }
    to { text-shadow: 0 0 20px rgba(220, 20, 60, 1), 0 0 40px rgba(220, 20, 60, 0.8); }
}

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.data-stream span {
    position: absolute;
    color: var(--red-primary);
    font-family: monospace;
    font-size: 0.8rem;
    opacity: 0.2;
    animation: dataDrift 20s linear infinite;
}

@keyframes dataDrift {
    0% { transform: translateY(-100%) translateX(0); }
    100% { transform: translateY(100vh) translateX(50px); }
}


/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    display: inline-block;
    margin: 0 0.5rem;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--red-primary);
    color: white;
}

/* Expansion Blocks */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease;
    opacity: 0;
}

.glass-card:hover .expandable-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.view-more-btn {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--red-primary);
    text-decoration: underline;
    cursor: pointer;
}

/* Testimonial slider placeholder styles */
.testimonial-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 400px;
    margin: 0 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--red-primary);
    object-fit: cover;
}


/* Timeline */
.timeline-item {
    border-left: 2px solid var(--red-primary);
    padding-left: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--red-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red-primary);
}

/* Marquee Section */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 3rem 0;
    background: rgba(220, 20, 60, 0.05);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    margin: 0 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(45deg, var(--black), #1a0000);
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.cta-flex .cta-content {
    flex: 1.5;
}

.cta-flex .cta-image {
    flex: 1;
}

.cta-flex .cta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
}

@media (max-width: 992px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}


/* Location Cards */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    border-left: 3px solid var(--red-primary);
}

.location-tag {
    font-size: 0.8rem;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    top: 100%;
    animation: float 20s linear infinite;
}

.shape-1 { width: 120px; height: 120px; left: 10%; animation-duration: 22s; }
.shape-2 { width: 180px; height: 180px; left: 75%; animation-duration: 28s; border-radius: 50%; }
.shape-3 { width: 90px; height: 90px; left: 60%; animation-duration: 18s; transform: rotate(45deg); }
.shape-4 { width: 60px; height: 60px; left: 30%; animation-duration: 25s; border-radius: 30%; background: rgba(220, 20, 60, 0.3); }
.shape-5 { width: 110px; height: 110px; left: 85%; animation-duration: 32s; border: 2px solid var(--red-primary); background: transparent; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    animation: glowPulse 12s ease-in-out infinite;
}

.orb-1 { top: -100px; left: -100px; }
.orb-2 { bottom: -100px; right: -100px; animation-delay: 5s; }

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}
/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    body {
        cursor: default; /* Disable custom cursor on touch devices */
    }
    #cursor, .cursor-trail {
        display: none !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 4rem 0;
        height: auto;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .stats .flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats .stat-item {
        margin: 0 !important;
    }

    .testimonial-card {
        width: 300px;
    }

    .footer-info, .footer-services, .footer-links {
        text-align: center !important;
        flex: 1 1 100% !important;
    }

    .footer-links {
        text-align: center !important;
    }

    .about-hero h1 {
        font-size: 2.2rem !important;
        border-left-width: 3px !important;
    }

    .timeline {
        padding: 0 1rem;
    }

    .approach .flex, .core-values .grid, .why-us .grid {
        flex-direction: column;
    }

    .approach > div > div, .core-values div, .why-us div {
        flex: 1 1 100% !important;
        min-width: 0 !important;
    }

    .stack-grid {
        grid-template-columns: 1fr !important;
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 2rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
    }

    .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Background Logo Animation */
.bg-animated-logo {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    animation: floatHorizontal 20s ease-in-out infinite;
    filter: grayscale(1) brightness(2);
}

@keyframes floatHorizontal {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-50px); }
}

@media (max-width: 992px) {
    .bg-animated-logo {
        width: 80%;
        opacity: 0.07;
    }
}

@media (max-width: 768px) {
    .bg-animated-logo {
        width: 110%;
        right: -30%;
        opacity: 0.05;
        top: 40%;
    }
}

/* Contact Page Specifics */
.contact-section {
    padding: 10rem 0 5rem;
}

.container-wide {
    max-width: 1400px;
}

.contact-header {
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    color: white;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem !important;
    font-size: 1rem !important;
    letter-spacing: 1px;
}

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

.location-card {
    padding: 2rem;
    border-left: 2px solid var(--red-primary);
}

.location-header {
    margin-bottom: 1rem;
}

.location-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.location-tag i {
    margin-right: 8px;
}

.location-title {
    font-size: 1.5rem;
    margin: 0;
}

.location-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.details-card {
    padding: 2.5rem;
    background: rgba(220, 20, 60, 0.03) !important;
}

.details-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--red-primary);
}

.details-list p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.details-list i {
    color: var(--red-primary);
    font-size: 1.1rem;
}

/* FAQ & Extras */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.text-accent {
    color: var(--red-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.faq-item {
    padding: 2rem;
    cursor: pointer;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.map-container {
    height: 500px;
    padding: 15px;
    overflow: hidden;
    border-radius: 25px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-section {
        padding: 8rem 0 3rem;
    }
}

