:root {
    --primary-navy: #0C3D2E;
    --secondary-emerald: #4CAF79;
    --accent-gold: #f9db45;
    --accent-gold-light: #f6db2b;
    --neutral-cream: #FBF8F2;
    --neutral-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #6B7280;
    --success-green: #047857;
    --error-red: #991B1B;
    --shadow-soft: 0 20px 40px -10px rgba(12, 61, 46, 0.15);
    --shadow-hover: 0 30px 60px -15px rgba(12, 61, 46, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--neutral-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Utility Classes */
.text-gold {
    color: var(--accent-gold);
}

.text-navy {
    color: var(--primary-navy);
}

.text-emerald {
    color: var(--secondary-emerald);
}

.text-white {
    color: var(--neutral-white);
}

.text-muted {
    color: var(--text-muted);
}

.bg-navy {
    background-color: var(--primary-navy);
}

.bg-emerald {
    background-color: var(--secondary-emerald);
}

.bg-cream {
    background-color: var(--neutral-cream);
}

.bg-white {
    background-color: var(--neutral-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-navy);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 168, 124, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.btn-emerald {
    background: var(--secondary-emerald);
    color: var(--neutral-white);
}

.btn-emerald:hover {
    background: #0A3D2E;
}

/* Top Bar */
.top-bar {
    background: var(--primary-navy);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.top-bar-info {
    display: flex;
    gap: 30px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
}

.top-bar-social {
    display: flex;
    gap: 20px;
}

.top-bar-social a {
    color: var(--text-muted);
    font-size: 14px;
}

.top-bar-social a:hover {
    color: var(--accent-gold);
}

/* Header */
.header {
    background: var(--neutral-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-navy);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-navy);
}

.logo-text span {
    color: var(--accent-gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-navy);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #162544 50%, var(--primary-navy) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(14, 77, 56, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(198, 168, 124, 0.15) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(198, 168, 124, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 168, 124, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(198, 168, 124, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--neutral-white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.trust-badge-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--neutral-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--accent-gold);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature {
    text-align: center;
    padding: 25px 15px;
    background: var(--neutral-cream);
    border-radius: 8px;
    border-top: 3px solid var(--accent-gold);
}

.about-feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.about-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-emerald) 0%, #0A3D2E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 168, 124, 0.1) 0%, transparent 50%);
}

.about-image-content {
    text-align: center;
    color: var(--neutral-white);
    position: relative;
    z-index: 2;
}

.about-image-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-image-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--neutral-cream);
    border-radius: 8px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-emerald);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--neutral-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 20px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--neutral-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #162544 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-gold);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--primary-navy);
}

.services .section-header h2 {
    color: var(--neutral-white);
}

.services .section-header p {
    color: var(--text-muted);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(198, 168, 124, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.services-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.services-grid.active {
    display: grid;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 168, 124, 0.2);
    border-radius: 12px;
    padding: 30px 25px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card:hover {
    background: rgba(198, 168, 124, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.service-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--neutral-white);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--neutral-cream);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border-left: 4px solid var(--accent-gold);
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-navy);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--neutral-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--neutral-white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    font-size: 20px;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-navy);
}

.contact .section-header h2 {
    color: var(--neutral-white);
}

.contact .section-header p {
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--neutral-white);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--neutral-white);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(198, 168, 124, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
}

.contact-item-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.contact-item-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--neutral-white);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(198, 168, 124, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(198, 168, 124, 0.3);
    color: var(--neutral-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C6A87C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--primary-navy);
    color: var(--neutral-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--neutral-white);
}

.form-success h3 {
    color: var(--neutral-white);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-muted);
}

/* Legal Section */
.legal {
    padding: 60px 0;
    background: var(--neutral-cream);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.legal-card {
    background: var(--neutral-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.legal-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-card h3 span {
    color: var(--accent-gold);
    font-size: 24px;
}

.legal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-card .btn {
    margin-top: 10px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-emerald) 0%, #0A3D2E 100%);
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.2rem;
    color: var(--neutral-white);
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 150px;
}

.newsletter-form .form-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(198, 168, 124, 0.3);
    border-radius: 8px;
}

.newsletter-form .form-group input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.newsletter-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
}

.newsletter-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.newsletter-success.show {
    display: block;
}

.newsletter-success-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.newsletter-success h3 {
    color: var(--neutral-white);
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(198, 168, 124, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(198, 168, 124, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-item span {
    color: var(--accent-gold);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(198, 168, 124, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 22, 44, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: var(--neutral-white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--neutral-cream);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--accent-gold);
}

.modal-header {
    padding: 35px 35px 0;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
}

.modal-body {
    padding: 25px 35px 35px;
}

.modal-body p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .about-image-main {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--neutral-white);
    z-index: 200;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--neutral-cream);
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-navy);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 22, 44, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}