/* A2Z Tree Service - Enhanced Professional Design */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d32;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: translateY(-1px);
}

.tagline {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: -2px;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a4d32, #2d5a3d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.contact-header .phone-btn {
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.25);
    border: 2px solid transparent;
    letter-spacing: 0.025em;
}

.contact-header .phone-btn:hover {
    background: linear-gradient(135deg, #0f3a26 0%, #1e3d28 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.35);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(240, 253, 244, 0.95) 0%, rgba(220, 252, 231, 0.95) 50%, rgba(187, 247, 208, 0.9) 100%),
        url('/img/photos/whatsapp_2050_1.jpeg') center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 77, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 90, 61, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: #ea580c;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-subtitle a {
    color: inherit;
    text-decoration: none;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.hero-subtitle a:hover {
    text-decoration: underline;
    text-decoration-color: #ea580c;
}

.hero-description {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(26, 77, 50, 0.25);
    border: 2px solid transparent;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #0f3a26 0%, #1e3d28 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 77, 50, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1a4d32;
    padding: 18px 36px;
    border: 2px solid #1a4d32;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.025em;
}

.btn-secondary:hover {
    background: #1a4d32;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 77, 50, 0.3);
}

/* Services */
.services-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-preview .container::after {
    content: 'Professional tree care services for every need';
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 4rem;
    font-weight: 500;
}

.services-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 77, 50, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 77, 50, 0.12);
}

.service-card h3 {
    color: #1a4d32;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.work-gallery h3 {
    color: #1a4d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* Responsive layout for services overview */
@media (max-width: 768px) {
    .services-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid img {
        height: 180px;
    }
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(26, 77, 50, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(26, 77, 50, 0.1);
}

.services-cta p {
    font-size: 1.1rem;
    color: #4b5563;
    margin: 0;
}

.services-cta a {
    color: #1a4d32;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta a:hover {
    text-decoration: underline;
}

/* About */
.about-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(26, 77, 50, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(45, 90, 61, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-preview h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 500;
}

.about-text a {
    color: #ea580c;
    text-decoration: none;
    font-weight: inherit;
    transition: all 0.3s ease;
}

.about-text a:hover {
    text-decoration: underline;
    color: #dc2626;
}

.credentials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.credential {
    background: #2d5a3d;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Emergency */
.emergency {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

.emergency .container {
    position: relative;
    z-index: 1;
}

.emergency h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.emergency p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.emergency .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.emergency .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: #991b1b;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

/* Placeholders */
.hero-placeholder,
.about-placeholder {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px dashed rgba(26, 77, 50, 0.3);
    color: #6b7280;
    padding: 3rem;
    text-align: center;
    border-radius: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-placeholder::before,
.about-placeholder::before {
    content: '📸';
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.hero-placeholder {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

.hero-placeholder:hover {
    border-color: rgba(26, 77, 50, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 50, 0.1);
}

.about-placeholder {
    height: 320px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 auto;
}

.about-placeholder:hover {
    border-color: rgba(26, 77, 50, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 50, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .nav-links {
        order: 3;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-forms {
        margin: 1rem;
        border-radius: 4px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .tab-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Contact Forms */
.contact-forms {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.tab-btn.active {
    color: #2d5a3d;
    background: #fff;
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2d5a3d;
}

.contact-form {
    display: none;
    padding: 2rem;
}

.contact-form.active {
    display: block;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-size: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
    box-shadow: 0 0 0 2px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.btn-primary,
.btn-emergency {
    background: #2d5a3d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-emergency {
    background: #dc3545;
}

.btn-primary:hover {
    background: #1e3a28;
    transform: translateY(-1px);
}

.btn-emergency:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.btn-primary:disabled,
.btn-emergency:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.emergency-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-notice strong {
    color: #856404;
}

.emergency-note {
    text-align: center;
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    color: #155724;
    text-align: center;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    color: #721c24;
    text-align: center;
}
/* ===== UNIFIED PAGE SYSTEM STYLES ===== */

/* Page Heroes */
.page-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -2rem; /* Account for header spacing */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 77, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 90, 61, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    color: #ea580c;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Detail Page */
.services-detail {
    padding: 6rem 0;
    background: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 500;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 77, 50, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a4d32, #2d5a3d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 50, 0.15);
    border-color: rgba(26, 77, 50, 0.2);
}

.service-detail-card h3 {
    color: #1a4d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-detail-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-card li {
    color: #6b7280;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 77, 50, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a4d32;
    font-weight: 700;
}

.service-detail-card li:last-child {
    border-bottom: none;
}

/* Service Area Section */
.service-area {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.service-area h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.service-area > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.area-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    padding: 0.5rem 0;
    color: #1a4d32;
    font-weight: 600;
    border-bottom: 1px solid rgba(26, 77, 50, 0.1);
}

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

.area-note {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    margin-top: 2rem;
}

.area-note a {
    color: #1a4d32;
    text-decoration: none;
    font-weight: 600;
}

.area-note a:hover {
    text-decoration: underline;
}

/* Gallery Page Styles */
.gallery-showcase {
    padding: 6rem 0;
    background: #fff;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.gallery-intro p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 500;
}

.gallery-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 77, 50, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 50, 0.15);
}

.category-card h3 {
    color: #1a4d32;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 2rem 2rem 1rem;
    margin: 0;
    letter-spacing: -0.01em;
}

.gallery-placeholder {
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    font-weight: 600;
}

.gallery-placeholder p {
    margin: 0.5rem 0;
}

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

.photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card p {
    padding: 0 2rem 2rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.gallery-note {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 77, 50, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(26, 77, 50, 0.1);
}

.gallery-note h3 {
    color: #1a4d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-note p {
    color: #4b5563;
    line-height: 1.6;
    margin: 1rem 0;
    font-weight: 500;
}

.gallery-note a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
}

.gallery-note a:hover {
    text-decoration: underline;
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.testimonials-preview h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.testimonial-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(26, 77, 50, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card cite {
    color: #1a4d32;
    font-weight: 600;
    font-style: normal;
}

/* About Page Styles */
.about-story {
    padding: 6rem 0;
    background: #fff;
}

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

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.story-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text a {
    color: #ea580c;
    text-decoration: none;
    font-weight: inherit;
}

.story-text a:hover {
    text-decoration: underline;
}

.story-image {
    text-align: center;
}

.story-image .about-placeholder {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px dashed rgba(26, 77, 50, 0.3);
    color: #6b7280;
    padding: 3rem;
    border-radius: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-image .about-placeholder:hover {
    border-color: rgba(26, 77, 50, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 50, 0.1);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(26, 77, 50, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 50, 0.15);
}

.value-card h3 {
    color: #1a4d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background: #fff;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
}

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

.expertise-text h3 {
    color: #1a4d32;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.expertise-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.expertise-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.expertise-text li {
    color: #4b5563;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.expertise-text li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a4d32;
    font-weight: 700;
}

.expertise-stats {
    display: grid;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(26, 77, 50, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 77, 50, 0.15);
}

.stat-card h4 {
    color: #1a4d32;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.stat-card p {
    color: #4b5563;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.stat-card a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
}

.stat-card a:hover {
    text-decoration: underline;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d32;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
}

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

.team-leader {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.team-photo {
    text-align: center;
}

.team-placeholder {
    background: rgba(255, 255, 255, 0.9);
    border: 2px dashed rgba(26, 77, 50, 0.3);
    color: #6b7280;
    padding: 4rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-placeholder:hover {
    border-color: rgba(26, 77, 50, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 50, 0.1);
}

.team-info h3 {
    color: #1a4d32;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.team-info p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a4d32 0%, #2d5a3d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-section .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #1a4d32;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.cta-section .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content,
    .expertise-content,
    .team-leader {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-intro h2,
    .values-section h2,
    .expertise-section h2,
    .team-section h2 {
        font-size: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-info {
    padding: 4rem 0;
    background: #fff;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 77, 50, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 77, 50, 0.15);
}

.contact-method h2 {
    color: #1a4d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.contact-method p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-method a {
    color: #1a4d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #ea580c;
    text-decoration: underline;
}

.contact-forms-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        padding: 2rem;
    }
}
