/* ============================================
   LENIDA SOLUTIONS - MAIN STYLESHEET
   Colors: Navy Blue (#01155F) | Deep Red (#C01C2A) | White (#FFF)
   Font: Montserrat
   Version: 3.0 - Updated Color Scheme
============================================ */

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a2a3f;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Color Variables - UPDATED */
:root {
    --navy-blue: #01155f;
    --navy-blue-light: #011a7a;
    --navy-blue-dark: #010e42;
    --deep-blue: #01155f;
    --deep-blue-light: #011a7a;
    --deep-blue-dark: #010e42;
    --white: #ffffff;
    --red-accent: #c01c2a;
    --red-hover: #8a141f;
    --gray-light: #f8fafc;
    --gray-border: #e2e8f0;
    --text-dark: #0f172a;
    --text-muted: #334155;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--red-accent);
    position: relative;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--red-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--red-accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(192, 28, 42, 0.3);
}

.btn-primary:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 28, 42, 0.4);
}

.btn-secondary {
    background-color: var(--navy-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--navy-blue-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   HEADER & NAVIGATION - 3 COLUMN LAYOUT
============================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 2rem;
}

/* Logo - Left */
.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--red-accent);
}

/* Nav Links - Center */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0 auto;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--red-accent);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-accent);
}

/* Nav Actions - Right */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-request {
    display: inline-block;
    background-color: var(--red-accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-request i {
    margin-right: 0.5rem;
}

.btn-request:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 28, 42, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy-blue);
}

/* ============================================
   HERO SECTION WITH BACKGROUND IMAGE & GRADIENT
   ============================================ */
.hero {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(1, 21, 95, 0.85), rgba(1, 21, 95, 0.92)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600');
}

/* Parallax effect for desktop */
@media (min-width: 769px) {
    .hero {
        background-attachment: fixed;
    }
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hero Content - All text white for contrast */
.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content h1 .highlight {
    color: var(--red-accent);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-accent) 0%, #d42a3a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons Override for Dark Background */
.hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero .btn-outline:hover {
    background: var(--red-accent);
    border-color: var(--red-accent);
    color: var(--white);
}

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

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

/* Hero Image */
.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
    color: var(--red-accent);
    font-size: 1.1rem;
}

/* Floating Cards */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-card i {
    color: var(--red-accent);
}

.card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: 1.5s;
}

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

/* Services Grid */
.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 28, 42, 0.1), rgba(192, 28, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--red-accent);
    margin: 0;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-section {
    background: var(--gray-light);
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--red-accent);
    margin-bottom: 1rem;
}

.why-card h4 {
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: var(--red-accent);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: white;
    opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--navy-blue);
    margin: 0 0.5rem;
}

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

.cta-banner .btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 1rem;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.contact-info-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 20px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-list i {
    width: 45px;
    height: 45px;
    background: var(--red-accent);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(192, 28, 42, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    background: var(--navy-blue-dark);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-logo h3 {
    color: var(--white);
}

.footer-logo span {
    color: var(--red-accent);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--red-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--red-accent);
    transform: translateY(-3px);
}

.social-links a i {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsletter form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter button {
    background: var(--red-accent);
    border: none;
    padding: 0 15px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter button:hover {
    background: var(--red-hover);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.power-statement {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.power-statement i {
    color: var(--red-accent);
    margin: 0 0.5rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

/* ============================================
   PARTNERS SLIDER SECTION - 4 Items Visible
============================================ */
.partners-section {
    padding: 4rem 0;
    background: var(--gray-light);
    overflow: hidden;
}

.partners-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.partners-slider-wrapper {
    overflow: hidden;
    margin: 0 40px;
}

.partners-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.partners-slider:active {
    cursor: grabbing;
}

.partner-item {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: calc(25% - 1.125rem);
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-accent);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(192, 28, 42, 0.1), rgba(192, 28, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--red-accent);
}

.partner-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.partner-item p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--red-accent);
    border-color: var(--red-accent);
}

.slider-btn:hover i {
    color: white;
}

.slider-btn i {
    font-size: 1.2rem;
    color: var(--navy-blue);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 25px;
    border-radius: 10px;
    background: var(--red-accent);
}

.dot:hover {
    background: var(--red-accent);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .btn-request {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Mobile Navigation */
    .navbar {
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 1rem;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .btn-request {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, 
    .btn-secondary, 
    .btn-outline,
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 3rem 0;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Partners Slider Mobile */
    .partners-slider-wrapper {
        margin: 0 20px;
    }
    
    .partner-item {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
        padding: 1rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
    }
    
    .partner-logo i {
        font-size: 1.8rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 2rem 0;
    }
    
    .service-card,
    .why-card {
        padding: 1.25rem;
    }
    
    .cta-banner {
        padding: 2rem 1.5rem;
    }
    
    /* Hide button text on very small screens */
    .btn-request span {
        display: none;
    }
    
    .btn-request i {
        margin-right: 0;
    }
    
    .btn-request {
        padding: 10px 14px;
    }
    
    /* Partners Slider Small Mobile */
    .partner-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .slider-btn {
        display: none;
    }
    
    .partners-slider-wrapper {
        margin: 0;
    }
}

/* Partners Slider Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .partner-item {
        flex: 0 0 calc(33.33% - 1rem);
        min-width: calc(33.33% - 1rem);
    }
}

@media (max-width: 768px) {
    .btn-request {
        display: none;
    }
}

/* ============================================
   CONTACT PAGE STYLES
============================================ */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

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

/* Contact Info Column */
.contact-info-col {
    background: var(--gray-light);
    border-radius: 24px;
    padding: 2rem;
}

.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-header h2 {
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-muted);
}

/* Contact Items */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Contact Social */
.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-border);
}

.contact-social h4 {
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--navy-blue);
    text-decoration: none;
}

.contact-social .social-links a:hover {
    background: var(--red-accent);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Column */
.contact-form-col {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group textarea {
    resize: vertical;
    padding-top: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(192, 28, 42, 0.1);
}

.form-icon {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: var(--text-muted);
    font-size: 1rem;
}

.form-group textarea ~ .form-icon {
    top: 42px;
    bottom: auto;
}

.full-width {
    grid-column: span 2;
}

/* Checkbox */
.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkbox-container input {
    width: auto;
    padding: 0;
    margin: 0;
}

.checkbox-container a {
    color: var(--red-accent);
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 0 0 4rem 0;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
}

.faq-question i {
    color: var(--red-accent);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-info-col,
    .contact-form-col {
        padding: 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .contact-social .social-links {
        justify-content: center;
    }
}