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

:root {
    /* Corporate Color Palette */
    --primary-white: #ffffff;
    --light-gray: #f8f9fa;
    --charcoal: #2c3e50;
    --navy: #1a365d;
    --silver: #e2e8f0;
    --muted-orange: #d97706;
    
    /* Typography */
    --font-primary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 24px;
    
    /* Shadows */
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--primary-white);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: var(--font-weight-normal);
}

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

/* Navigation */
.navbar {
    background: var(--primary-white);
    border-bottom: 1px solid var(--silver);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-location {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

/* Quadcopter icon styling */
.quadcopter-icon {
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 10px;
    display: inline-block;
}

/* Center body */
.quadcopter-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #2c5aa0;
    border-radius: 50%;
    box-shadow: 
        /* Four arms extending out */
        -12px 0 0 -2px #2c5aa0, /* Left arm */
        12px 0 0 -2px #2c5aa0,  /* Right arm */
        0 -12px 0 -2px #2c5aa0, /* Top arm */
        0 12px 0 -2px #2c5aa0,  /* Bottom arm */
        /* Four rotors at the ends */
        -12px 0 0 1px rgba(44, 90, 160, 0.6), /* Left rotor */
        12px 0 0 1px rgba(44, 90, 160, 0.6),  /* Right rotor */
        0 -12px 0 1px rgba(44, 90, 160, 0.6), /* Top rotor */
        0 12px 0 1px rgba(44, 90, 160, 0.6);  /* Bottom rotor */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--navy);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--muted-orange);
    transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Location Badge */
.location-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-badge i {
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 107, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    color: var(--charcoal);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

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

.service-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--silver);
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.service-card.featured {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.service-card.featured:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card.featured .service-icon {
    background: var(--muted-orange);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

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

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.service-card.featured .service-features li::before {
    color: #ff8e53;
}

/* Custom Solutions */
.custom-solutions {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.solutions-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.solutions-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solutions-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff8e53;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 3rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

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

.benefit {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
}

.benefit:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.benefit i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--navy);
}

.benefit p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #2c5aa0;
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--silver);
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--silver);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--primary-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
}

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


.form-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--navy);
}

.form-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Deliverable Screenshot Styles */
.screenshot-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.screenshot-container:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.deliverable-screenshot {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.deliverable-screenshot:hover {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1);
}


.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-medium);
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--primary-white);
    color: var(--navy);
    padding: 3rem 24px 2rem;
    text-align: center;
    border-top: 1px solid var(--silver);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-content p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-location {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        margin-left: 0.5rem;
    }
    
    .location-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero {
        justify-content: center;
        padding-right: 0;
        padding: 2rem;
    }
    
.hero-content {
        width: 360px;
        height: 720px;
        padding: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-showcase {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .showcase-item {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .showcase-item:hover {
        transform: translateY(-5px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .solutions-features {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        justify-content: center;
    }
    
    .hero-content {
        width: 320px;
        height: 640px;
        padding: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Gallery Styles */
.gallery-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.75));
    padding: 150px 24px 100px;
    color: white;
    text-align: center;
}

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

.gallery-hero h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.gallery-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.gallery-filters {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

/* Media Type Buttons */
.media-type-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-type-btn {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-type-btn:hover,
.media-type-btn.active {
    background: var(--navy);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

.media-type-btn i {
    font-size: 1.2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-gray);
    border: 1px solid var(--silver);
    color: var(--charcoal);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

.gallery-grid-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--silver);
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    background: var(--primary-white);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Video Gallery Styles */
.gallery-item video {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item.video-item video {
    border-radius: 0;
}

.gallery-item:hover video {
    transform: scale(1.1);
}

/* Video Modal Styles */
#videoModal video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-expand {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-expand:hover {
    background: white;
    color: #2c5aa0;
    transform: scale(1.1);
}

.gallery-expand i {
    font-size: 1.2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #ff6b6b;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: scale(1.1);
}

/* Gallery CTA */
.gallery-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: white;
    color: #ff6b6b;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Navigation Active State */
.nav-menu a.active {
    color: #2c5aa0;
    font-weight: 600;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 120px 20px 80px;
    }
    
    .gallery-hero h1 {
        font-size: 2.2rem;
    }
    
    .gallery-hero p {
        font-size: 1rem;
    }
    
    .gallery-filters {
        top: 70px;
        padding: 1.5rem 0;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: auto;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-info h3 {
        font-size: 1rem;
    }
    
    .gallery-info p {
        font-size: 0.8rem;
    }
    
    .gallery-expand {
        width: 40px;
        height: 40px;
    }
    
    .gallery-expand i {
        font-size: 1rem;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 2.5rem;
    }
    
    .gallery-cta {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item img {
        height: auto;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .media-type-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .media-type-btn {
        width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Experience Section */
.experience-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a7a 100%);
    color: white;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.case-study-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.case-study-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff8e53;
}

.case-study-highlight > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.method-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.method-item i {
    font-size: 2.5rem;
    color: #ff8e53;
    margin-bottom: 1rem;
}

.method-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.method-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.credential-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.credential-item span {
    font-size: 1rem;
    color: #333;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Pricing Overview */
.pricing-overview {
    background: rgba(44, 90, 160, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #2c5aa0;
}

.pricing-overview h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.price-item {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #333;
}

.price-item strong {
    color: #2c5aa0;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.benefit,
.feature,
.gallery-item,
.method-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .experience-section {
        padding: 80px 20px;
    }
    
    .experience-content h2 {
        font-size: 2rem;
    }
    
    .case-study-highlight {
        padding: 2rem;
    }
    
    .case-study-highlight h3 {
        font-size: 1.5rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-overview {
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a7a 100%);
    padding: 150px 20px 100px;
    color: white;
    text-align: center;
}

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

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

/* My Story Section */
.my-story-section {
    padding: 100px 20px;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.key-insight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid #2c5aa0;
}

.key-insight h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.key-insight p {
    font-style: italic;
    color: #333;
    margin-bottom: 0;
}

.credentials-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.credentials-sidebar h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.credential-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cred-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-top: 2px;
}

.cred-item div strong {
    display: block;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cred-item div span {
    color: #666;
    font-size: 0.9rem;
}

/* Systematic Approach */
.systematic-approach {
    padding: 100px 20px;
    background: #f8f9fa;
}

.systematic-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.systematic-approach > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a7a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.approach-step p {
    color: #666;
    line-height: 1.5;
}

/* Case Study Detailed */
.case-study-detailed {
    padding: 100px 20px;
    background: white;
}

.case-study-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.case-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.documentation-protocol h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.protocol-phase {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5aa0;
}

.protocol-phase h4 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.protocol-phase h4 i {
    font-size: 1.1rem;
}

.protocol-phase p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.altitude-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.altitude-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.altitude-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.work-documentation p {
    margin-bottom: 1rem;
}

.work-documentation p:last-child {
    margin-bottom: 0;
}

.protocol-consistency {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a7a 100%);
    color: white;
    border-left: none;
}

.protocol-consistency h4 {
    color: #ff8e53;
}

.protocol-consistency p {
    color: rgba(255, 255, 255, 0.95);
}

/* Case Results */
.case-results {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.case-results h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

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

.result-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.result-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.result-item p {
    color: #666;
    line-height: 1.5;
}

/* Differentiators */
.differentiators {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.differentiators h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.diff-item i {
    font-size: 2.5rem;
    color: #ff8e53;
    margin-bottom: 1rem;
}

.diff-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.diff-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Equipment Detailed */
.equipment-detailed {
    padding: 100px 20px;
    background: white;
}

.equipment-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.equipment-main h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

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

.spec-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.spec-category h4 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.spec-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-primary {
    background: white;
    color: #ff6b6b;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.about-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */
.story-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.professional-philosophy {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 4px;
    border-left: 3px solid var(--navy);
    margin-top: 2rem;
}

.professional-philosophy h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.professional-philosophy p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.credentials-sidebar {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--silver);
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 100px;
}

.credentials-sidebar h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

.credential-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-white);
    border-radius: 4px;
    border: 1px solid var(--silver);
}

.cred-item i {
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cred-item div {
    flex-grow: 1;
}

.cred-item strong {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.cred-item span {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.delivery-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.delivery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.delivery-card {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
}

.delivery-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.delivery-card i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.delivery-card h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.delivery-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Page Hero Styles (consistent across pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.75));
    color: white;
    padding: 150px 24px 100px;
    text-align: center;
}

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    color: white;
}

.page-hero .location-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 24px 80px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .credentials-sidebar {
        position: static;
    }
    
    .credentials-sidebar {
        position: static;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiator-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-specs {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .altitude-breakdown {
        gap: 1rem;
    }
    
    .protocol-phase {
        padding: 1.5rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.75));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

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

.main-services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

/* Big Services Grid */
.big-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.big-service-card {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.big-service-card .service-header h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 0.5rem;
}

.big-service-card .service-content p {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.big-service-card h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin: 1.5rem 0 0.75rem 0;
}

.deliverables-list,
.options-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.deliverables-list li,
.options-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.5;
}

.deliverables-list li::before,
.options-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

.service-pricing {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--navy);
}

.service-pricing p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* On-Demand Section */
.on-demand-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--silver);
}

.on-demand-section h2 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.on-demand-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.on-demand-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
}

.on-demand-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted-orange);
    font-weight: bold;
}

/* Updated Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-block {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.pricing-block h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.pricing-block .price {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.pricing-adjustments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.pricing-adjustments h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.adjustment-list {
    list-style: none;
    padding: 0;
}

.adjustment-list li {
    padding: 0.5rem 0;
    color: var(--charcoal);
    opacity: 0.9;
}

.ops-fee-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--muted-orange);
}

.ops-fee-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.9;
}

.service-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #3498db);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-title h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

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

.service-description h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
}

.service-description h3:first-child {
    margin-top: 0;
}

.coverage-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list strong {
    color: #2c5aa0;
}

.deliverables-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.deliverables-box i {
    font-size: 2rem;
    color: #2c5aa0;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.important-notice i {
    color: #856404;
    margin-top: 3px;
    flex-shrink: 0;
}

.coverage-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.coverage-option {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.coverage-option h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card {
    background: linear-gradient(135deg, #2c5aa0, #3498db);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-note {
    opacity: 0.8;
    margin-bottom: 20px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.price-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.price-label {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    margin-right: 10px;
    color: #4CAF50;
    font-weight: bold;
}

.on-demand-services {
    padding: 80px 0;
    background: white;
}

.on-demand-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.on-demand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.on-demand-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.on-demand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.on-demand-item i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.on-demand-item h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.pricing-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-overview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-column {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-column h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.price-anchor {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.includes {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.pricing-column ul {
    list-style: none;
    padding: 0;
}

.pricing-column li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-column li:last-child {
    border-bottom: none;
}

.pricing-notes {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-notes h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.pricing-details {
    list-style: none;
    padding: 0;
}

.pricing-details li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.service-disclaimer {
    padding: 60px 0;
    background: #fff3cd;
}

.disclaimer-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ffc107;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box ul {
    list-style: none;
    padding: 0;
}

.disclaimer-box li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.disclaimer-box li:last-child {
    border-bottom: none;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0, #3498db);
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Enhanced Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.service-teaser {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.service-teaser p {
    font-size: 1.1rem;
    color: #2c5aa0;
    margin: 0;
}

.service-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 90, 160, 0.3);
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Credentials & Capabilities Section */
.credentials-capabilities {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.credentials-capabilities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.cred-cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.cred-cap-column h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cred-list,
.cap-list {
    list-style: none;
    padding: 0;
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.cred-list li,
.cap-list li {
    padding: 0.75rem 0;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--silver);
}

.cred-list li:last-child,
.cap-list li:last-child {
    border-bottom: none;
}

.cred-list li::before,
.cap-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

.on-demand-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    border-bottom: 2px solid var(--muted-orange);
    transition: all 0.2s ease;
}

.on-demand-link:hover {
    color: var(--muted-orange);
    border-bottom-color: var(--navy);
}

/* Documentation Process Section */
.documentation-process {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.process-card {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
}

.process-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-icon i {
    font-size: 1.5rem;
    color: white;
}

.process-card h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.5;
}

.process-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--silver);
}

.process-footer p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Simple CTA Section */
.simple-cta {
    padding: 3rem 0;
    background: var(--navy);
    text-align: center;
}

.simple-cta .cta-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.simple-cta .btn-primary {
    background: white;
    color: var(--navy);
    border-color: white;
}

.simple-cta .btn-primary:hover {
    background: var(--light-gray);
    color: var(--navy);
    border-color: var(--light-gray);
}

/* Core Services Grid */
.core-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.core-service-card {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
}

.core-service-card .service-header h2 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 0.75rem;
}

.core-service-card .price-note {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.core-service-card .service-content {
    flex-grow: 1;
    margin-bottom: 3rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.outcome-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.5;
}

.outcome-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

.price-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--navy);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
}

.price-text {
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
}

/* On-Demand Highlighted Section */
.on-demand-highlighted {
    background: var(--light-gray);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--card-shadow);
}

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

.on-demand-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.on-demand-intro h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.on-demand-intro p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.on-demand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.on-demand-item {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2rem;
    text-align: left;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
}

.on-demand-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.on-demand-item i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    display: block;
}

.on-demand-item h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.on-demand-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.9;
    margin: 0.75rem 0;
    line-height: 1.5;
}

.on-demand-item p:last-child {
    margin-bottom: 0;
}

.use-cases {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.use-cases li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.use-cases li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted-orange);
    font-weight: bold;
}

.on-demand-cta {
    text-align: center;
}

.included-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.included-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.5;
}

.included-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

.price-line {
    background: var(--light-gray);
    padding: 1.25rem;
    border-radius: 4px;
    border-left: 3px solid var(--navy);
    margin-top: 1.5rem;
}

.price-line p {
    margin: 0;
    font-size: 1rem;
    color: var(--navy);
}

.inline-disclaimer {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    border-left: 3px solid var(--muted-orange);
}

.inline-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Compact Pricing List */
.pricing-list {
    background: var(--primary-white);
    border: 1px solid var(--silver);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--silver);
}

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

.pricing-item.rush-options {
    border-top: 2px solid var(--silver);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.service-name {
    font-weight: var(--font-weight-medium);
    color: var(--charcoal);
}

.price {
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 4px;
    border-left: 3px solid var(--muted-orange);
}

.pricing-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Standard Site Section */
.standard-site-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.standard-site-section h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.standard-site-section > p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.example-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border: 1px solid var(--silver);
    border-radius: 4px;
}

.example-item i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.example-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.4;
}

.complexity-note {
    text-align: center;
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 2rem auto 0;
    max-width: 600px;
}

/* Quote Process Section */
.quote-process-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.quote-process-section h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

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

.quote-content p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-requirements {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--silver);
    margin-top: 2rem;
}

.quote-requirements h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.5;
}

.requirements-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

/* Final Disclaimer */
.final-disclaimer {
    padding: 2rem 0;
    background: var(--primary-white);
}

/* Updated Disclaimer Styles */
.disclaimer-line {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 4px;
    border-left: 3px solid var(--muted-orange);
}

.disclaimer-line p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-title h2 {
        font-size: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card {
        position: static;
    }

    .coverage-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .on-demand-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-table {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .big-services-grid,
    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-adjustments {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .on-demand-list {
        grid-template-columns: 1fr;
    }
    
    .on-demand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .core-service-card {
        min-height: auto;
        padding-bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .on-demand-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-badge span {
        font-size: 0.6rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .cred-cap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Sample Deliverables Page Styles */
.deliverables-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.75));
    color: white;
    padding: 150px 24px 100px;
    text-align: center;
}

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

.deliverables-hero h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.deliverables-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.deliverable-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.deliverable-section.alt {
    background: var(--light-gray);
}

.deliverable-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-text h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.deliverable-text p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deliverable-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.deliverable-bullets li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.9;
    line-height: 1.5;
}

.deliverable-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

.deliverable-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--silver);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
}

.screenshot-placeholder i {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.screenshot-placeholder p {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.screenshot-placeholder small {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.visual-note {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
    text-align: center;
    margin: 0;
    font-style: italic;
}

.disclaimer-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--muted-orange);
    margin-top: 1.5rem;
}

.disclaimer-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.deliverables-cta {
    padding: var(--section-padding);
    background: var(--navy);
    color: white;
    text-align: center;
}

.deliverables-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.deliverables-cta .btn-primary {
    background: white;
    color: var(--navy);
    border-color: white;
}

.deliverables-cta .btn-primary:hover {
    background: var(--light-gray);
    color: var(--navy);
    border-color: var(--light-gray);
}

.deliverables-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.deliverables-cta .btn-secondary:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}

@media (max-width: 768px) {
    .deliverable-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .deliverables-hero h1 {
        font-size: 2rem;
    }
    
    .deliverable-text h2 {
        font-size: 1.5rem;
    }
    
    .screenshot-placeholder {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .on-demand-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
