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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #374151;
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 672px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.mobile-menu-btn {
    display: none;
    color: #111827;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    color: #4b5563;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #111827;
    font-weight: 500;
}

.mobile-nav {
    display: none;
    padding: 1rem;
    border-top: 1px solid #f3f4f6;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background-color: #111827;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #1f2937;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #111827;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary-large:hover {
    background-color: #f3f4f6;
}

.btn-secondary-large {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-secondary-large:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background-color: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #111827;
    color: #ffffff;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1f2937;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
}

.hero-content {
    max-width: 896px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Sections */
.services-overview,
.why-choose-us,
.testimonials,
.contact-section {
    padding: 5rem 0;
}

.services-overview {
    background-color: #ffffff;
}

.why-choose-us {
    background-color: #f9fafb;
}

.testimonials {
    background-color: #ffffff;
}

.contact-section {
    background-color: #f9fafb;
}

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

.section-title {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #111827;
}

.service-title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.75;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.column-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    margin-top: 0.125rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #111827;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Forms */
.form-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111827;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #4b5563;
}

.form-checkbox a {
    color: #111827;
    text-decoration: underline;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.form-success svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact li {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.cookie-text {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.cookie-text a {
    color: #111827;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-contact-info {
    background-color: #f9fafb;
    border-left: 4px solid #059669;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.legal-contact-info h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.legal-contact-info > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-contact-info span {
    font-size: 0.875rem;
}

.legal-contact-info .label {
    font-weight: 500;
    color: #111827;
}

.legal-contact-info .value {
    color: #374151;
}

.legal-contact-info a {
    color: #374151;
    text-decoration: underline;
}

.legal-contact-info a:hover {
    color: #111827;
}

.legal-page {
    padding: 5rem 0;
    background-color: #ffffff;
}

.legal-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.legal-page .last-updated {
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.legal-page a {
    color: #111827;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .services-overview,
    .why-choose-us,
    .testimonials,
    .contact-section {
        padding: 3rem 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
