/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --secondary: #6ee7b7;
    --background: #ffffff;
    --text: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
/* Service Cards with Images */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image .service-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    border: 3px solid white;
    z-index: 2;
}

.service-content {
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #444;
}

.service-features li i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-content .btn-primary {
    margin-top: auto;
    text-align: center;
    display: inline-block;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.service-content .btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    color: white;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 0.75rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: #f0fdf4;
    transform: scale(1.05);
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#header.scrolled .top-bar {
    background: white;
    border-bottom: 1px solid var(--border);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

#header.scrolled .contact-link {
    color: var(--primary);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.availability {
    color: var(--primary);
    font-weight: 600;
}

/* Navbar */
.navbar {
    background: transparent;
    transition: all 0.3s ease;
}

#header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s;
}

#header.scrolled .logo-text h1 {
    color: var(--text);
}

.logo-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

#header.scrolled .logo-text p {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

#header.scrolled .mobile-menu-btn {
    color: var(--text);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

#header.scrolled .nav-menu a {
    color: var(--text);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

#header.scrolled .nav-menu a:hover,
#header.scrolled .nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 150, 105, 0.9), rgba(5, 150, 105, 0.8), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.hero-title .highlight {
    color: #6ee7b7;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.mouse::before {
    content: '';
    width: 0.375rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Features */
.features {
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 0.6s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom right, #f9fafb, #ecfdf5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-header {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.service-header h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.service-price {
    color: #6ee7b7;
    font-weight: 600;
}

.service-content {
    padding: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
}

.service-features i {
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(to bottom right, #ecfdf5, white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), #065f46);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.cta-section::before {
    top: 2.5rem;
    left: 2.5rem;
}

.cta-section::after {
    bottom: 2.5rem;
    right: 2.5rem;
}

.cta-section h2 {
    position: relative;
    z-index: 10;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    position: relative;
    z-index: 10;
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, #1f2937, #111827, #065f46);
    color: white;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    font-size: 0.75rem;
    color: #6ee7b7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer h4 {
    color: #6ee7b7;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer ul li a::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s;
}

.footer ul li a:hover {
    color: #6ee7b7;
}

.footer ul li a:hover::before {
    transform: scale(1.5);
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-list i {
    color: #6ee7b7;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-list span {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
}

.contact-list a {
    color: white;
    text-decoration: none;
}

.contact-list a:hover {
    color: #6ee7b7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #6ee7b7;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    color: var(--text);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(200%);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
}

.toast.success {
    border-left: 4px solid var(--primary);
}

.toast.error {
    border-left: 4px solid #ef4444;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        color: var(--text);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), #065f46);
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.page-header::before {
    top: -5rem;
    left: -5rem;
}

.page-header::after {
    bottom: -5rem;
    right: -5rem;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #d1fae5;
    max-width: 42rem;
    margin: 0 auto;
}

.page-header-small {
    padding: 6rem 0 3rem;
}

/* About Page */
.about-story {
    padding: 6rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.story-image:hover {
    transform: scale(1.02);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.8;
}

.values-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #f9fafb, #ecfdf5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(6deg);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), #065f46);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #d1fae5;
}

.certifications {
    padding: 6rem 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 60rem;
    margin: 0 auto;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #ecfdf5, white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.cert-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.cert-item i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Services Detail Page */
.services-detail {
    background: white;
}

.service-detail-item {
    padding: 6rem 0;
}

.service-detail-item.reverse .service-detail-grid {
    direction: rtl;
}

.service-detail-item.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.service-detail-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-price-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-divider {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.service-divider::before {
    content: '';
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.service-detail-item.highlighted {
    background: #ecfdf5;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact-info-section h2 {
    margin-bottom: 1rem;
}

.contact-info-section > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-icon i {
    color: white;
    font-size: 1.5rem;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
}

.method-content a:hover {
    color: var(--primary-dark);
}

.method-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.available-24 {
    color: var(--primary);
    font-size: 1.125rem;
}

.contact-form-section {
    background: linear-gradient(to bottom right, #ecfdf5, white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.form-container h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.success-message {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    width: 6rem;
    height: 6rem;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease-out;
}

.success-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #f9fafb, #ecfdf5);
}

.map-container {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Booking Page */
.progress-section {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 48rem;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-indicator {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
}

.step-indicator.active {
    background: var(--primary);
    color: white;
    transform: scale(1.2);
}

.step-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.step-indicator.active + .step-label {
    color: var(--primary);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 0.25rem;
    background: #e5e7eb;
    margin: 0 1rem;
    max-width: 8rem;
    border-radius: 9999px;
    transition: all 0.3s;
}

.progress-line.active {
    background: var(--primary);
}

.booking-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(to bottom right, #f9fafb, #ecfdf5);
}

.booking-form-container {
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.form-step h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    cursor: pointer;
    position: relative;
}

.service-option input {
    position: absolute;
    opacity: 0;
}

.option-content {
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.service-option:hover .option-content {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-option.selected .option-content,
.service-option input:checked + .option-content {
    border-color: var(--primary);
    background: #ecfdf5;
    box-shadow: var(--shadow);
}

.option-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.option-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.option-content .price {
    color: var(--primary);
    font-size: 1rem;
}

.customer-type-heading {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.customer-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.customer-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.customer-option:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.customer-option.selected {
    border-color: var(--primary);
    background: #ecfdf5;
    box-shadow: var(--shadow);
}

.customer-option i {
    font-size: 2rem;
    color: var(--primary);
}

.customer-option h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.customer-option p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.booking-summary {
    background: #ecfdf5;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.booking-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.booking-summary p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-navigation .btn {
    flex: 1;
}

.booking-success {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.booking-success h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-success > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.booking-details {
    background: #ecfdf5;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
}

.booking-details p {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #d1fae5;
}

.booking-details p:last-child {
    border-bottom: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item.reverse .service-detail-grid {
        direction: ltr;
    }
    
    .service-options,
    .customer-options,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-line {
        width: 0.25rem;
        height: 2rem;
        margin: 0;
    }
    
    .step-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
}

/* Icon replacements for when Font Awesome doesn't load */
.check-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 1.25rem;
    font-weight: bold;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.arrow-icon {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.25rem;
}

/* Fallback for missing Font Awesome icons */
.service-features li {
    display: flex;
    align-items: center;
    gap: 0;
}