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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
}

.font-serif {
    font-family: "Playfair Display", serif;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 9rem;
    width: 9rem;
    object-fit: contain;
}

.member-text {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: #0f172a;
    background: rgba(255, 255, 255, 0);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0f172a;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #0f172a;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
}

.dropdown-content {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 16rem;
    background: white;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #0f172a;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #001F3F;
}

.contact-btn {
    background: #14532d;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: opacity 0.3s ease;
}

.contact-btn:hover {
    opacity: 0.9;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: #0f172a;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0 0.75rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #0f172a;
    text-decoration: none;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f8fafc;
}

.mobile-services {
    padding: 0.5rem 0.75rem;
}

.mobile-services-title {
    color: #0f172a;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mobile-service-link {
    display: block;
    padding: 0.5rem 0 0.5rem 1rem;
    color: #0f172a;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-service-link:hover {
    background-color: #f8fafc;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1467521335787-2f0fc0f0e9a0?q=80&w=1880&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-position: center;
    background-size: cover;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .hero-mobile {
        display: none;
    }
}

.hero-desktop {
    display: none;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-desktop {
        display: grid;
    }
}

.hero-logo-container {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-logo-container {
        justify-content: flex-start;
    }
}

.logo-glow {
    position: relative;
}

.logo-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(3rem);
    border-radius: 50%;
}

.hero-logo-mobile {
    height: 12rem;
    width: 12rem;
    object-fit: contain;
    position: relative;
    z-index: 8;
    filter: brightness(1) contrast(1.25);
    drop-shadow: 0 0 25px rgba(255, 255, 255, 2);
}

.hero-logo-desktop {
    height: 24rem;
    width: 24rem;
    object-fit: contain;
    position: relative;
    z-index: 8;
    filter: brightness(1) contrast(1.25);
    drop-shadow: 0 0 25px rgba(255, 255, 255, 2);
}

.hero-content-mobile,
.hero-content-desktop {
    position: relative;
    width: 100%;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .hero-content-desktop {
        transform: translateX(10rem);
    }
}

.content-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    border-radius: 1.5rem;
}

.content-box {
    position: relative;
    z-index: 10;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
}

.hero-title-mobile {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
    text-align: center;
}

.hero-title-desktop {
    font-family: "Playfair Display", serif;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
}

@media (min-width: 768px) {
    .hero-title-desktop {
        font-size: 2.25rem;
    }
}

.hero-description-mobile {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-align: center;
}

.hero-description-desktop {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: white;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.025em;
}

@media (min-width: 768px) {
    .hero-description-desktop {
        font-size: 1.5rem;
    }
}

.cta-button {
    background: #14532d;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

.cta-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 768px) {
    .cta-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #14532d;
}

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

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

.features-grid-centered {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.feature-card {
    background: #f3f4f6;
    color: #0f172a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.feature-description {
    color: #0f172a;
    text-align: center;
}

/* About Section */
.about {
    padding: 7rem 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    color: #1e293b;
    text-align: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

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

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

.about-text-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 1.25rem;
    color: white;
    line-height: 1.8;
    letter-spacing: 0.025em;
}

.highlight {
    font-weight: 600;
    color: white;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

.about-image-container {
    position: relative;
}

.about-image {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 18.75rem;
    object-fit: cover;
}

.quote-box {
    position: absolute;
    background: #14532d;
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 18rem;
}

.quote-box-left {
    bottom: -2rem;
    left: -2rem;
}

.quote-box-right {
    bottom: -2rem;
    right: -2rem;
}

.quote-text {
    font-size: 1.125rem;
    font-style: italic;
    font-family: "Playfair Display", serif;
}

.quote-author {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: normal;
    color: white;
}

/* Services Section */
.services {
    background: #1e293b;
    padding: 4rem 0;
}

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

.services-title {
    font-size: 2.5rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.125rem;
    color: white;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    background: #14532d;
    color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #6b7280, #374151);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem auto;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.asterisk {
    font-size: 1rem;
    vertical-align: super;
}

.service-list {
    list-style: none;
    color: #e2e8f0;
    font-size: 0.875rem;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.service-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
}

.services-cta-btn {
    background: white;
    color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-cta-btn:hover {
    background: #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-title {
    font-size: 2.5rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    color: #001F3F;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro {
    margin-bottom: 4rem;
}

.contact-intro-box {
    background: #14532d;
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 640px) {
    .contact-intro-box {
        padding: 2.5rem;
    }
}

.contact-intro-text {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
}

.highlight-white {
    font-weight: 600;
    color: white;
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.form-group label {
    display: block;
    color: #001F3F;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #001F3F;
    box-shadow: 0 0 0 2px rgba(0, 31, 63, 0.1);
}

.form-submit-btn {
    width: 100%;
    background: #14532d;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background: #166534;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.25rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    color: #001F3F;
    margin-bottom: 1rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    color: #001F3F;
    flex-shrink: 0;
}

.contact-info-item span {
    color: #001F3F;
}

.map-container {
    height: 16rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Footer */
.footer {
    background: #14532d;
    color: white;
    padding: 3rem 0;
}

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

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 10.5rem;
    width: 10.5rem;
    max-height: 10rem;
    max-width: 10rem;
}

.footer-brand-name {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.footer-description {
    color: #f3f4f6;
}

.footer-title {
    font-family: "Playfair Display", serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #f3f4f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-disclosures {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #f3f4f6;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #f3f4f6;
    text-align: center;
    margin-top: 1rem;
}

.footer-alternative-disclaimer {
    font-size: 0.75rem;
    color: #f3f4f6;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-desktop {
        display: none;
    }
    
    .hero-mobile {
        display: flex;
    }
}

@media (min-width: 768px) {
    .hero-mobile {
        display: none;
    }
    
    .hero-desktop {
        display: grid;
    }
}