/* Service Hero Section */
.service-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    will-change: transform;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.1) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    mask-image: linear-gradient(
        to right,
        black 0%,
        black 85%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        black 0%,
        black 85%,
        transparent 100%
    );
    will-change: backdrop-filter;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
    margin-left: 10%;
    will-change: transform;
}

.service-hero h1 {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
    line-height: 1.2;
    will-change: transform, opacity;
}

.service-hero p {
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    letter-spacing: 0.5px;
    max-width: 500px;
    will-change: transform, opacity;
}

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

/* Service Details Section */
.service-details {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.service-intro h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Add loading="lazy" to images below the fold */
.service-features img,
.service-process img {
    loading: lazy;
}

/* Optimize for reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Process Steps */
.service-process {
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.service-process h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.step p {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        justify-content: center;
        text-align: center;
    }

    .service-hero::before {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        mask-image: none;
        -webkit-mask-image: none;
    }

    .service-hero-content {
        margin-left: 0;
        padding: 1rem;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .service-intro h2,
    .service-process h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-details {
        padding: 3rem 1.5rem;
    }
}

/* Privacy Policy Styles */
.privacy-hero {
    height: 40vh;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.privacy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.privacy-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.privacy-content {
    padding: 5rem 0;
    background: var(--primary-color);
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.privacy-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.privacy-section ul li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-section ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero p {
        font-size: 1rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* Package Description Styles */
.package-description {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
}

.package-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card ul li {
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.package-card ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .package-description {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-description {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-card h3 {
        font-size: 1.5rem;
    }
} 