/* Hero Section with 3D Background */
.hero-3d {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom right, #ffffff, #faf6ed);
    color: #2d1810;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

@media (max-width: 640px) {
    .hero-3d {
        padding-top: 6rem;
    }
}

.hero-3d-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.hero-badge {
    backdrop-filter: blur(16px);
    background: rgba(196, 150, 90, 0.1);
    border: 1px solid rgba(196, 150, 90, 0.2);
    color: #2d1810;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.hero-badge:hover {
    background: rgba(196, 150, 90, 0.15);
    border: 1px solid rgba(196, 150, 90, 0.3);
}

.badge-icon {
    display: flex;
    align-items: center;
    color: #c4965a;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 69rem;
    margin: 0;
    letter-spacing: -0.025em;
    color: #2d1810;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 600;
    color: #c4965a;
    max-width: 32rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.hero-description {
    font-size: 0.95rem;
    color: #5d4a3a;
    max-width: 30rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-btn {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.hero-btn.primary {
    background-color: #c4965a;
    color: #ffffff;
    border: 1px solid #c4965a;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(196, 150, 90, 0.3);
}

.hero-btn.primary:hover {
    background-color: #d4a574;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196, 150, 90, 0.4);
}

.hero-btn.secondary {
    background-color: rgba(196, 150, 90, 0.1);
    color: #2d1810;
    border: 1px solid rgba(196, 150, 90, 0.3);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background-color: rgba(196, 150, 90, 0.2);
    border: 1px solid rgba(196, 150, 90, 0.5);
    transform: translateY(-1px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 80rem;
    width: 100%;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    backdrop-filter: blur(16px);
    background: rgba(196, 150, 90, 0.08);
    border: 1px solid rgba(196, 150, 90, 0.15);
    border-radius: 0.75rem;
    padding: 1rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 150, 90, 0.1);
}

@media (min-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        height: 12rem;
        gap: 0.75rem;
    }
}

.feature-card:hover {
    background: rgba(196, 150, 90, 0.12);
    border: 1px solid rgba(196, 150, 90, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 150, 90, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(196, 150, 90, 0.15);
    border: 1px solid rgba(196, 150, 90, 0.3);
    border-radius: 0.5rem;
    color: #c4965a;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(196, 150, 90, 0.1);
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .feature-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    color: #2d1810;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1rem;
    }
}

.feature-description {
    font-size: 0.75rem;
    color: #5d4a3a;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 0.875rem;
    }
}

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-3d-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Service Details Styling */
.service-details {
    max-width: 36rem;
    margin: 1rem 0;
}

.service-description {
    font-size: 1rem;
    color: #5d4a3a;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

/* Pricing Card Styling */
.pricing-card {
    backdrop-filter: blur(16px);
    background: rgba(196, 150, 90, 0.08);
    border: 1px solid rgba(196, 150, 90, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(196, 150, 90, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(196, 150, 90, 0.12);
    border: 1px solid rgba(196, 150, 90, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 150, 90, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #c4965a;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.pricing-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d1810;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.pricing-note {
    font-size: 0.875rem;
    color: #8a7968;
    margin: 0;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #5d4a3a;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(196, 150, 90, 0.1);
}

.pricing-feature svg {
    color: #c4965a;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .pricing-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .pricing-range {
        font-size: 1.25rem;
    }
    
    .pricing-feature {
        font-size: 0.85rem;
    }
} 