/* Professional Color Variables - Format2Publish Inspired */
:root {
    /* Professional Brand Colors */
    --primary-navy: #1B365D;
    --primary-blue: #2B5A87;
    --primary-light: #4A7BA7;
    
    /* Professional Text Colors */
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #6C757D;
    --text-muted: #ADB5BD;
    
    /* Clean Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-subtle: #F1F3F5;
    --bg-section: #FAFBFC;
    
    /* Professional Accent Colors */
    --accent-gold: #C8860D;
    --accent-success: #146C43;
    --accent-warm: #8B4513;
    
    /* Border and UI Elements */
    --border-light: #DEE2E6;
    --border-medium: #CED4DA;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
}

/* New Premium Color Palette - From User's Color Scheme */
:root {
    /* Primary Brand Colors */
    --primary-blue: #1E3A8A;
    --primary-royal: #1D4ED8;
    --primary-light: #3B82F6;
    
    /* Professional Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    
    /* Clean Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-subtle: #F9FAFB;
    --bg-section: #F3F4F6;
    
    /* Accent Colors from Palette */
    --accent-pink: #F8BBD9;
    --accent-rose: #FDA4AF;
    --accent-orange: #EA580C;
    --accent-coral: #F97316;
    
    /* Border and UI Elements */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --shadow-light: rgba(30, 58, 138, 0.08);
    --shadow-medium: rgba(30, 58, 138, 0.12);
    --shadow-accent: rgba(234, 88, 12, 0.15);
}

/* Premium Professional Color Palette - 3 Complementary Colors */
:root {
    /* Primary Brand Colors - Deep Professional Blue */
    --primary-blue: #1E3A8A;
    --primary-royal: #1D4ED8;
    --primary-light: #3B82F6;
    
    /* Premium Background Colors - Warm Cream & Sophisticated Grays */
    --bg-primary: #FDFDFD;        /* Pure white for main content */
    --bg-secondary: #F8F6F3;      /* Warm cream - premium alternative to white */
    --bg-tertiary: #F1EDE7;       /* Deeper cream for sections */
    --bg-accent: #E8E2DB;         /* Subtle cream accent */
    
    /* Professional Text Colors */
    --text-primary: #1F2937;      /* Dark charcoal for headings */
    --text-secondary: #4B5563;    /* Medium gray for body text */
    --text-light: #6B7280;        /* Light gray for supporting text */
    --text-muted: #9CA3AF;        /* Very light gray for subtle text */
    
    /* Accent Colors from Original Palette */
    --accent-pink: #F8BBD9;       /* Soft pink accent */
    --accent-rose: #FDA4AF;       /* Rose highlight */
    --accent-orange: #EA580C;     /* Bold orange for CTAs */
    --accent-coral: #F97316;      /* Warm coral for hovers */
    
    /* Professional Neutrals - Third Complementary Color */
    --neutral-warm: #A3A08A;      /* Warm taupe */
    --neutral-light: #D4D1C7;     /* Light taupe */
    --neutral-dark: #6B6B47;      /* Dark olive-taupe */
    
    /* Border and UI Elements */
    --border-light: #E8E2DB;      /* Cream borders */
    --border-medium: #D4D1C7;     /* Taupe borders */
    --border-accent: #A3A08A;     /* Dark taupe accents */
    --shadow-light: rgba(30, 58, 138, 0.08);
    --shadow-medium: rgba(30, 58, 138, 0.12);
    --shadow-warm: rgba(163, 160, 138, 0.15);
}

/* Services Page Specific Styles */

.hero-services {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #c7e4fb 0%, #a8d5f0 35%, #89c4e8 70%, #6bb3e0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-services .container {
    position: relative;
    z-index: 1;
}

.hero-services h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1E3A8A;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
    line-height: 1.2;
}

.hero-services p {
    font-size: 1.3rem;
    color: #4B5563;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.services-overview {
    padding: 80px 0;
    background: #c7e4fb;
}

.service-card-detailed {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.service-card-detailed .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.service-card-detailed h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
    font-size: 1.8rem;
}

.service-card-detailed p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #2c3e50;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.service-card-detailed .btn {
    margin: 0.5rem;
    min-width: 120px;
}

.service-process {
    padding: 80px 0;
    background: #c7e4fb;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Services Menu Dropdown Styling */
.services-menu {
    padding: 80px 0;
    background: white;
    min-height: 60vh;
}

.dropdown-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.dropdown-container h2 {
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.service-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.dropdown-btn {
    background: white;
    border: 2px solid #c7e4fb;
    padding: 20px 30px;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 228, 251, 0.3);
}

.dropdown-btn:hover {
    background: #c7e4fb;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 228, 251, 0.5);
}

.dropdown-btn i {
    transition: transform 0.3s ease;
}

.dropdown-btn.active i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.dropdown-content.show {
    display: block;
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--text-primary);
    padding: 20px 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #c7e4fb;
    color: var(--primary-blue);
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--primary-blue);
}

.dropdown-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-services {
        padding: 120px 0 60px;
    }
    
    .hero-services h1 {
        font-size: 2.8rem;
    }
    
    .hero-services p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .services-menu {
        padding: 60px 0;
    }
    
    .dropdown-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .dropdown-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .dropdown-item {
        padding: 18px 20px;
    }
    
    .dropdown-item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .dropdown-container {
        padding: 0 1rem;
    }
    
    .dropdown-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .dropdown-item {
        padding: 16px 15px;
        gap: 12px;
    }
}