/* Placeholder Styles */
.placeholder-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: var(--neutral-100);
    border: 2px dashed var(--neutral-300);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-900);
    font-size: 18px;
    font-weight: 500;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
}

.security-icon .placeholder-image {
    width: 120px;
    height: 120px;
    font-size: 14px;
}

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

:root {
    /* Primary Colors */
    --primary-blue: #0F60D6;
    --primary-dark: #0C4DAB;
    
    /* Neutral Colors */
    --neutral-100: #F3F3F3;
    --neutral-200: #E7E7E7;
    --neutral-300: #CFCFCF;
    --neutral-400: #A6A6A6;
    --neutral-900: #28283A;
    
    /* Accent Colors */
    --accent-red: #DF2935;
    --accent-green: #62A87C;
    --accent-orange: #EF8400;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--neutral-900);
    background: white;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(15, 96, 214, 0.2);
}

.logo-icon img {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--neutral-900);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 24px;
    border-radius: 24px;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #EFF6FF 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--neutral-900);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 96, 214, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

.illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--neutral-900);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    border-radius: 50%;
}

.step-illustration {
    width: 50px;
    height: 50px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.step p {
    font-size: 15px;
    color: var(--neutral-900);
    line-height: 1.6;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue) 50%, transparent 50%);
    background-size: 8px 2px;
}

/* Why Choose - New Layout */
.why-choose {
    padding: 100px 0;
    background: var(--neutral-100);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image .placeholder-image {
    max-width: 500px;
    height: 500px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.feature-icon .icon-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EFF6FF 0%, #D4E7FF 100%);
    border: 2px solid var(--primary-blue);
}

.feature-content {
    flex: 1;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--neutral-900);
}

.feature p {
    font-size: 15px;
    color: var(--neutral-900);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/media/testimonials-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

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

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial {
    background: var(--neutral-100);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--neutral-200);
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for missing avatars */
.testimonial-avatar:not(:has(img)),
.testimonial-avatar img[src=""],
.testimonial-avatar img:not([src]),
.testimonial-avatar img[src*="placeholder"] {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.testimonial-avatar:not(:has(img))::before,
.testimonial-avatar img[src=""]:before {
    content: attr(data-initial);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.testimonial-rating {
    color: var(--accent-orange);
    font-size: 16px;
}

.quote {
    font-size: 18px;
    color: var(--neutral-900);
    line-height: 1.8;
    font-style: italic;
}

/* Carousel Controls */
.testimonials-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--neutral-200);
    color: var(--neutral-900);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots Navigation */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

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

.dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

.dot:hover:not(.active) {
    background: var(--neutral-900);
}

/* Remove old grid styles */
.testimonials-grid {
    display: none;
}

.author {
    display: none;
}

/* Security Section */
.security {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #EFF6FF 100%);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.security-icon {
    flex-shrink: 0;
}

.shield-icon {
    width: 120px;
    height: 120px;
}

.security-text h2 {
    margin-bottom: 24px;
    text-align: left;
}

.security-text p {
    font-size: 17px;
    color: var(--neutral-900);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--neutral-900);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

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

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: white;
}

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

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 32px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--neutral-300);
}

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

.footer-bottom p {
    font-size: 14px;
    color: #FFF;
}

/* Avatar placeholder styles */
.testimonial-avatar.has-placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    color: white;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .step:nth-child(2)::after {
        display: none;
    }
    
    .step:nth-child(1)::after {
        top: 60px;
        right: -30px;
    }
    
    .why-choose-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step::after {
        display: none;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image {
        order: 1;
    }
    
    .features-list {
        order: 2;
    }
    
    .why-choose-image .placeholder-image {
        max-width: 100%;
        height: 300px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature:hover {
        transform: translateX(0);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
    }
    
    .security-text h2 {
        text-align: center;
    }
    
    .testimonials-carousel {
        max-width: 100%;
    }
    
    .testimonial {
        padding: 32px 24px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .testimonials-controls {
        padding: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text, .step, .feature, .testimonial {
    animation: fadeInUp 0.6s ease-out;
}
/* =====================================================
   LEGAL PAGES STYLES
   ===================================================== */

/* Legal Page Layout */
.legal-page {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    min-height: calc(100vh - 80px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Legal Page Header */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--neutral-200);
}

.legal-header h1 {
    font-size: 40px;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.effective-date {
    color: var(--neutral-900);
    font-size: 16px;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--neutral-900);
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid var(--primary-blue);
}

.legal-section h3 {
    font-size: 20px;
    color: var(--neutral-900);
    margin: 24px 0 16px;
}

.legal-section h4 {
    font-size: 18px;
    color: var(--neutral-900);
    margin: 20px 0 12px;
}

.legal-section p,
.legal-section li {
    color: var(--neutral-900);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 12px;
}

.legal-section strong {
    color: var(--neutral-900);
    font-weight: 600;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 12px;
}

/* Intro Text Box */
.intro-text {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.intro-text p {
    color: var(--neutral-900);
    font-size: 17px;
    margin-bottom: 12px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Highlight Box (Blue) */
.highlight-box {
    background: linear-gradient(135deg, #F8FAFF 0%, #EFF6FF 100%);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    margin: 24px 0;
}

.highlight-box h3 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 12px;
}

.highlight-box p {
    margin-bottom: 8px;
}

.highlight-box ul {
    margin-left: 24px;
    margin-top: 12px;
}

.highlight-box li {
    color: var(--neutral-900);
    margin-bottom: 8px;
}

/* Warning Box (Red) */
.warning-box {
    background: #FFF5F5;
    border-left: 4px solid var(--accent-red);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box p {
    color: #B91C1C;
    margin-bottom: 0;
}

/* Example Box */
.example-box {
    background: var(--neutral-100);
    padding: 24px;
    border-radius: 12px;
    margin: 20px 0;
}

.example-box h4 {
    color: var(--neutral-900);
    margin-bottom: 12px;
    font-size: 16px;
}

.example-box p {
    color: var(--neutral-900);
    margin-bottom: 0;
}

.example-box strong {
    color: var(--neutral-900);
}

/* Contact Info Box */
.contact-info {
    background: var(--neutral-100);
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact-info strong {
    color: var(--neutral-900);
}

/* Navigation Active State for Legal Pages */
.nav-links a.active {
    color: var(--primary-blue);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Legal Pages Responsive Design */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .intro-text,
    .highlight-box,
    .warning-box,
    .example-box,
    .contact-info {
        padding: 20px;
    }
    
    .back-link {
        margin-bottom: 24px;
    }
}
/* =====================================================
   LINK STYLES
   ===================================================== */

/* Base link styles */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

/* Content links (in paragraphs and lists) */
p a,
li a,
.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

p a::after,
li a::after,
.legal-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

p a:hover::after,
li a:hover::after,
.legal-section a:hover::after {
    width: 100%;
}

p a:hover,
li a:hover,
.legal-section a:hover {
    color: var(--primary-dark);
}

/* External links - optional icon */
a[href^="http"]:not([href*="yourdomain.com"])::after,
a[href^="https"]:not([href*="yourdomain.com"])::after {
    /* Uncomment if you want external link indicator */
    /* content: ' ↗';
    font-size: 0.8em;
    vertical-align: super;
    opacity: 0.7; */
}

/* Email links */
a[href^="mailto:"] {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

a[href^="mailto:"]:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Phone links */
a[href^="tel:"] {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

a[href^="tel:"]:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Inline text links with different style */
.text-link {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-blue);
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}

/* Link buttons (for links that look like buttons) */
a.link-button {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.link-button:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 96, 214, 0.3);
}

/* Footer links - already styled, but adding for completeness */
.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Breadcrumb links */
.breadcrumb a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

/* Disabled links */
a.disabled,
a[aria-disabled="true"] {
    color: var(--neutral-300);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* Focus state for accessibility */
a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip to content link (accessibility) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}

/* Card links (entire card is clickable) */
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateY(-4px);
}

.card-link:hover .card-title {
    color: var(--primary-blue);
}

/* Download links */
a[download] {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

a[download]::before {
    content: '↓';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

a[download]:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Visited links - optional, uncomment if needed */
/* a:visited {
    color: #6B46C1;
} */

/* Active state */
a:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Larger tap targets for mobile */
    p a,
    li a {
        padding: 2px 0;
    }
    
    a.link-button {
        display: block;
        text-align: center;
    }
}
/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Page Layout */
.contact-page {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #EFF6FF 100%);
    min-height: calc(100vh - 80px);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: var(--neutral-400);
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EFF6FF 0%, #D4E7FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 15px;
    color: var(--neutral-400);
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.info-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.info-card a:hover::after {
    width: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    background: white;
    color: var(--neutral-900);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--neutral-300);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(15, 96, 214, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent-red);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(223, 41, 53, 0.1);
}

/* Textarea specific */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form hints and errors */
.form-hint {
    font-size: 13px;
    color: var(--neutral-400);
    margin-top: 6px;
    display: block;
}

.error-message {
    font-size: 13px;
    color: var(--accent-red);
    margin-top: 6px;
    display: block;
    min-height: 18px;
}

/* Form Actions */
.form-actions {
    margin-top: 8px;
}

.form-actions .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    position: relative;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Loading spinner */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
    animation: slideInUp 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.form-message.error {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border: 1px solid #F87171;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phone input specific styling */
input[type="tel"] {
    letter-spacing: 0.5px;
}

/* Character counter styling */
#charCount {
    font-weight: 600;
    color: var(--neutral-900);
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-300);
}

/* Autofill styling */
.form-group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: var(--neutral-900);
}

/* Disabled state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .info-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
}
/* =====================================================
   WHY CHOOSE SECTION - IMAGE RESPONSIVE STYLES
   ===================================================== */

/* Why Choose Image Container */
.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.why-choose-image .placeholder-image {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    background: var(--neutral-100);
    border: 2px dashed var(--neutral-300);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-size: 18px;
    font-weight: 500;
}

/* For actual images when added */
.why-choose-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
}

/* Desktop - Large screens */
@media (min-width: 1440px) {
    .why-choose-image .placeholder-image,
    .why-choose-image img {
        max-width: 600px;
        max-height: 600px;
    }
}

/* Desktop - Standard */
@media (min-width: 1024px) and (max-width: 1439px) {
    .why-choose-image .placeholder-image,
    .why-choose-image img {
        max-width: 500px;
        max-height: 500px;
    }
}

/* Tablet - Landscape */
@media (min-width: 768px) and (max-width: 1023px) {
    .why-choose-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .why-choose-image .placeholder-image,
    .why-choose-image img {
        max-width: 400px;
        max-height: 400px;
    }
}

/* Tablet - Portrait & Mobile - Landscape */
@media (min-width: 481px) and (max-width: 767px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .features-list {
        order: 2;
    }
    
    .why-choose-image .placeholder-image,
    .why-choose-image img {
        max-width: 400px;
        max-height: 400px;
        height: auto;
    }
}

/* Mobile - Standard */
@media (min-width: 376px) and (max-width: 480px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .features-list {
        order: 2;
    }
    
    .why-choose-image .placeholder-image,
    .why-choose-image img {
        max-width: 320px;
        max-height: 320px;
        height: auto;
    }
    
    .why-choose-image .placeholder-image {
        font-size: 16px;
    }
}

/* Mobile - Small */
@media (max-width: 375px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose-image {
        order: 1;
        margin-bottom: 16px;
    }
    
    .features-list {
        order: 2;
    }
    
    .why-choose-image .placeholder-image,
    .why-choose-image img {
        max-width: 280px;
        max-height: 280px;
        height: auto;
    }
    
    .why-choose-image .placeholder-image {
        font-size: 14px;
        padding: 20px;
    }
}