/* ==========================================================================
   QUALITY CREDIT & LEGAL - MAIN STYLESHEET
   ==========================================================================
   
   TABLE OF CONTENTS:
   1. CSS Variables & Reset
   2. Base Styles & Backgrounds
   3. Animations & Keyframes
   4. Fixed Action Buttons (WhatsApp, Chat)
   5. Typography
   6. Logo Banner
   7. Navigation
   8. Hero Section
   9. Buttons & CTAs
   10. Section Styles
   11. Services
   12. How It Works / Process
   13. Contact Section
   14. Footer
   15. Location Page
   16. Social Media
   17. Accessibility & Navigation
   18. Scroll Animations
   19. Trust Badges
   20. Testimonials
   21. Responsive Design
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */

/* CSS Custom Properties for Modern Design */
:root {
    --primary-color: #001f3f;
    --primary-dark: #003366;
    --primary-light: #004080;
    --accent-color: #c0c0c0;
    --accent-dark: #a8a8a8;
    --accent-light: #e0e0e0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 31, 63, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 31, 63, 0.12), 0 2px 4px -1px rgba(0, 31, 63, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 31, 63, 0.15), 0 4px 6px -2px rgba(0, 31, 63, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 31, 63, 0.2), 0 10px 10px -5px rgba(0, 31, 63, 0.12);
    --shadow-silver: 0 4px 12px rgba(192, 192, 192, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--primary-color);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Logo background with silver effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo1.jpg');
    background-size: 400px;
    background-repeat: repeat;
    background-position: center center;
    background-attachment: fixed;
    filter: grayscale(100%) brightness(1.2) contrast(0.9);
    opacity: 0.3;
    z-index: -3;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Silver overlay for logo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.1) 100%),
        rgba(0, 31, 63, 0.85);
    z-index: -1;
    pointer-events: none;
}

/* Animated Background Gradients */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 31, 63, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 51, 102, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 31, 63, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(0, 51, 102, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(0, 31, 63, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(0, 51, 102, 0.2) 0%, transparent 50%);
    animation: backgroundMove 30s ease-in-out infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(80px, -80px) scale(1.2) rotate(8deg);
        opacity: 0.95;
    }
    50% {
        transform: translate(-70px, 70px) scale(0.85) rotate(-8deg);
        opacity: 0.9;
    }
    75% {
        transform: translate(60px, 80px) scale(1.15) rotate(5deg);
        opacity: 0.95;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ==========================================================================
   3. ANIMATIONS & KEYFRAMES
   ========================================================================== */

/* ==========================================================================
   4. FIXED ACTION BUTTONS
   ========================================================================== */

/* WhatsApp Button (fixed position - for homepage) */
.whatsapp-button {
    position: fixed;
    bottom: 1rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-xl), 0 0 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    border: 2px solid #25D366;
    font-family: 'Inter', sans-serif;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(37, 211, 102, 0.5);
    border-color: #128C7E;
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    fill: currentColor;
}

.whatsapp-text {
    white-space: nowrap;
}

/* Override for inline whatsapp buttons in phone option cards */
.phone-option-card .whatsapp-button {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.phone-option-card .whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 211, 102, 0.4);
    border-color: #25D366;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .phone-option-card .whatsapp-button {
        position: static;
        margin-top: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .whatsapp-icon {
        width: 1.125rem;
        height: 1.125rem;
    }

    .phone-option-card .whatsapp-icon {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-xl), 0 0 25px rgba(0, 31, 63, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    border: 2px solid var(--accent-color);
    font-family: 'Inter', sans-serif;
}

.chat-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(0, 31, 63, 0.5);
    border-color: var(--accent-light);
}

.chat-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.chat-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .chat-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .chat-icon {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */

/* Modern typography for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ==========================================================================
   6. LOGO BANNER
   ========================================================================== */

/* Logo Banner */
.logo-banner {
    background-image: url('banner2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.logo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.15) 0%, rgba(0, 51, 102, 0.25) 50%, rgba(192, 192, 192, 0.1) 100%);
    z-index: 1;
    transition: opacity var(--transition-base);
}

.logo-banner:hover::before {
    opacity: 0.9;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
}

/* ==========================================================================
   7. NAVIGATION
   ========================================================================== */

/* Navigation */
nav {
    background: transparent;
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
    padding: 0;
    position: static;
    z-index: 100;
    transition: all var(--transition-base);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    position: relative;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-text a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-text a:hover {
    opacity: 0.9;
}

.logo-text .company-name {
    display: inline-block;
}

.logo-text .company-name span:nth-child(1) {
    color: var(--accent-color);
    font-weight: 700;
}

.logo-text .company-name span:nth-child(2) {
    color: var(--accent-light);
    font-weight: 600;
}

.logo-text .company-name span:nth-child(3) {
    color: var(--accent-color);
    font-weight: 700;
}

.logo-text .company-name span:nth-child(4) {
    color: var(--accent-color);
    font-weight: 700;
}

.logo-text .company-name .ampersand {
    color: var(--accent-light);
    font-weight: 500;
    margin: 0 0.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-base);
}


.nav-links a {
    text-decoration: none;
    color: var(--accent-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    transition: width var(--transition-base);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(192, 192, 192, 0.4);
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.cta-button:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    background: transparent;
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.header-animate {
    animation: headerFadeInUp 0.7s ease-out forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    position: relative;
    display: inline-block;
    overflow: hidden;
    animation: titleFadeIn 1s ease-out;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) 40%,
        var(--primary-color) 50%,
        var(--accent-color) 60%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 1s ease-out, titleShimmerText 6s ease-in-out 1s infinite;
}

.hero p {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}



.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(0, 31, 63, 0.3);
    border-color: var(--accent-color);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: var(--shadow-md);
}


/* Section Styles */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.025em;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: headerFadeInUp 0.9s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    border-radius: 2px;
    animation: expandLine 0.8s ease-out;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.container .section-title {
    display: block;
}

/* Services */
.services {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    opacity: 0.2;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 31, 63, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.1s;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    opacity: 0.2;
}

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

.step {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: all var(--transition-base);
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.step:hover {
    transform: translateY(-8px) scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(0, 31, 63, 0.15);
    border-color: var(--primary-color);
}

.step:hover::before {
    transform: scaleX(1);
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 31, 63, 0.3);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all var(--transition-base);
    border: 3px solid var(--accent-light);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(8px);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(192, 192, 192, 0.5);
    border-color: var(--accent-color);
}

.step:hover .step-number::before {
    opacity: 0.6;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Phone Selection Section */
.phone-selection {
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    text-align: center;
    position: relative;
    scroll-margin-top: 100px;
}

.phone-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    opacity: 0.3;
}

.phone-selection-inline {
    margin-top: 3rem;
    padding-top: 3rem;
    scroll-margin-top: 100px;
}

.phone-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.phone-option-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.phone-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.phone-option-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 31, 63, 0.15);
    border-color: var(--primary-color);
}

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

.phone-option-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
}

.phone-option-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    width: 100%;
    justify-content: center;
}

.phone-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(0, 31, 63, 0.3);
    border-color: var(--accent-color);
}

.phone-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.phone-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.phone-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}


.phone-option-card .whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    fill: currentColor;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    opacity: 0.3;
}

.contact h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    animation: headerFadeInUp 0.8s ease-out;
}

.contact p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.contact-form-container:hover {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 31, 63, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-form-container:hover::before {
    transform: scaleX(1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    transition: all var(--transition-base);
    background: linear-gradient(135deg, #ffffff 0%, rgba(248, 250, 252, 0.5) 100%);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 31, 63, 0.1), var(--shadow-md);
    background: #ffffff;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown var(--transition-base) ease-out;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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


.contact-divider {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    background: var(--bg-secondary);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

/* Response Time Promise */
.response-promise {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.response-promise:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.response-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.response-text strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.response-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    color: var(--accent-light);
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 -4px 20px rgba(0, 31, 63, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

footer > * {
    position: relative;
    z-index: 1;
}

.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
    animation: headerFadeInUp 0.8s ease-out;
}

.footer-cta p {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Location Page Styles */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.address-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.address-card:hover {
    box-shadow: var(--shadow-xl), 0 0 25px rgba(0, 31, 63, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

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

.address-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
}

.address-details p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.address-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

.map-container {
    display: flex;
    flex-direction: column;
}

.map-container h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', Times, serif;
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.map-wrapper:hover {
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-sm);
}

.map-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-light);
    text-decoration: none;
    transition: all var(--transition-base);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.social-link:hover .social-icon {
    transform: scale(1.2);
}

/* Responsive Social Media Links */
@media (max-width: 768px) {
    .social-media-links {
        gap: 0.5rem;
    }
    
    .social-link {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .social-icon {
        font-size: 1.1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 1.25rem;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(245, 245, 245, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a:hover {
        background: rgba(0, 31, 63, 0.05);
    }

    .nav-actions {
        margin-left: auto;
    }


    .logo-banner {
        height: 140px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }



    .cta-button {
        align-self: stretch;
        text-align: center;
        width: 100%;
    }

    .hero {
        padding: 3.5rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h1::before {
        height: 2px;
        bottom: -8px;
    }

    .hero p {
        font-size: 1rem;
    }

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

    section {
        padding: 3rem 1.5rem;
    }

    .service-card,
    .steps,
    .contact-info,
    .why-choose-card {
        text-align: left;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .response-promise {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .response-icon {
        width: 45px;
        height: 45px;
    }

    .contact-divider::before,
    .contact-divider::after {
        width: 40%;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}


/* ============================================
   Accessibility & Navigation Enhancements
   ============================================ */

/* ==========================================================================
   17. ACCESSIBILITY & NAVIGATION ENHANCEMENTS
   ========================================================================== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--accent-light);
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--accent-color);
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: var(--accent-color);
    text-decoration: underline;
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ==========================================================================
   18. SCROLL ANIMATIONS
   ========================================================================== */

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Success Stats Section */
.success-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.success-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--accent-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    opacity: 0.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(192, 192, 192, 0.3);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 31, 63, 0.15);
    border-color: var(--primary-color);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Mid-Page CTA Section */
.mid-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mid-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.mid-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
    animation: headerFadeInUp 0.8s ease-out;
}

.mid-cta p {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Trust Badges Section */
.trust-badges {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(248, 250, 252, 0.03) 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.trust-badges .section-title {
    animation: headerFadeInUp 1s ease-out;
    position: relative;
}


.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-badge-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(192, 192, 192, 0.25);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.trust-badge-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.trust-badge-card:hover::before,
.trust-badge-card:focus-within::before {
    transform: scaleX(1);
}

.trust-badge-card:hover::after {
    opacity: 1;
}

.trust-badge-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(192, 192, 192, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.trust-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(192, 192, 192, 0.3);
    position: relative;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.trust-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(8px);
}

.trust-badge-card:hover .trust-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.2) 100%);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trust-badge-card:hover .trust-icon-wrapper::before {
    opacity: 0.4;
}

.trust-icon {
    width: 40px;
    height: 40px;
    stroke: var(--accent-color);
    stroke-width: 2.5;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(192, 192, 192, 0.3));
}

.trust-badge-card:hover .trust-icon {
    stroke: var(--accent-light);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(192, 192, 192, 0.5));
}

.trust-badge-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
}

.trust-badge-card:hover h3 {
    color: var(--accent-light);
}

.trust-badge-card p {
    color: var(--accent-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.trust-badge-number {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.3) 0%, rgba(0, 51, 102, 0.2) 100%);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-family: 'Inter', monospace;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 31, 63, 0.1);
}

.trust-badge-card:hover .trust-badge-number {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.4) 0%, rgba(0, 51, 102, 0.3) 100%);
    border-color: var(--accent-color);
    color: var(--accent-light);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 31, 63, 0.2);
}

/* Detailed Service Sections */
.detailed-service {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(5px);
}

.detailed-service:nth-child(odd) {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-intro {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
    font-weight: 400;
}

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

.service-details {
    display: grid;
    gap: 3rem;
}

.service-benefit h3,
.service-target h3,
.service-process h3,
.service-results h3,
.service-timeline h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    animation: headerFadeInUp 0.7s ease-out;
    animation-fill-mode: both;
}

.service-benefit ul,
.service-target ul,
.service-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefit li,
.service-target li,
.service-results li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
    padding-left: 2rem;
}

.service-benefit li::before,
.service-target li::before,
.service-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-color);
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    transition: all var(--transition-base);
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--primary-color);
}

.timeline-time {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-desc {
    color: var(--text-secondary);
}

.service-cta-sidebar {
    position: sticky;
    top: 2rem;
}

.service-cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--accent-color);
}

.service-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    animation: headerFadeInUp 0.7s ease-out;
}

.service-cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-features {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.service-stats {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
}

.stat-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Services FAQ Section */
.services-faq {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    padding: 6rem 2rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    animation: headerFadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Improved keyboard navigation */
.nav-links a:focus,
.cta-button:focus,
.btn-primary:focus,
.phone-button:focus,
.whatsapp-button:focus,
.chat-button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Responsive Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        padding: 3.5rem 0;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-badge-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .trust-icon {
        width: 35px;
        height: 35px;
    }
    
    .trust-badge-card h3 {
        font-size: 1.2rem;
    }
    
    .trust-badge-card p {
        font-size: 0.95rem;
    }

    /* Why Choose Us Mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .why-choose-card h3 {
        font-size: 1.2rem;
    }

    .why-choose-card p {
        font-size: 0.9rem;
    }
    
    .breadcrumb-nav {
        margin-top: 70px;
        padding: 0.75rem 0;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }

    /* Success Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        left: 1rem;
    }

    /* Footer CTA Mobile */
    .footer-cta {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-cta h3 {
        font-size: 1.5rem;
    }

    .footer-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .mid-cta h2 {
        font-size: 2rem;
    }

    .mid-cta p {
        font-size: 1rem;
    }

    /* Detailed Services Mobile */
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-header {
        margin-bottom: 3rem;
    }

    .service-intro {
        font-size: 1.1rem;
    }

    .service-details {
        gap: 2rem;
    }

    .service-benefit h3,
    .service-target h3,
    .service-process h3,
    .service-results h3,
    .service-timeline h3 {
        font-size: 1.3rem;
    }

    .process-step {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .step-number {
        align-self: center;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .timeline-time {
        min-width: auto;
        font-size: 1.1rem;
    }

    .service-cta-card {
        padding: 2rem;
    }

    .service-cta-card h3 {
        font-size: 1.3rem;
    }

    .service-stats {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Services FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}
