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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #8B4513;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #654321;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #8B4513;
}

.handwritten {
    font-family: 'Dancing Script', cursive;
    color: #D2691E;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #D2691E;
    border: 2px solid #D2691E;
}

.btn-secondary:hover {
    background: #D2691E;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background: rgba(255, 248, 220, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    width: 100px;
    height: 40px;
    /* background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #654321;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D2691E;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D2691E;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #8B4513;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1670770/pexels-photo-1670770.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(245, 222, 179, 0.4) 50%, rgba(255, 248, 220, 0.6) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: #8B4513;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #8B4513;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #654321;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #8B4513;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #8B4513;
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: #8B4513;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8B4513;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-box {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    padding: 1.5rem;
    border-left: 4px solid #D2691E;
    border-radius: 8px;
    margin-top: 2rem;
}

.quote-text {
    font-style: italic;
    font-weight: 600;
    color: #654321;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.why-matters h3 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.matter-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.matter-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #D2691E;
    transition: background 0.3s ease;
}

.matter-card:hover .matter-icon {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}

.matter-card h4 {
    margin-bottom: 1rem;
    color: #654321;
}

.matter-card p {
    color: #8B4513;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #D2691E;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #D2691E;
    transition: all 0.3s ease;
}

.service-icon.amber { background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%); }
.service-icon.orange { background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%); }
.service-icon.yellow { background: linear-gradient(135deg, #FFFACD 0%, #F0E68C 100%); }
.service-icon.red { background: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 100%); }
.service-icon.green { background: linear-gradient(135deg, #F0FFF0 0%, #E6FFE6 100%); }
.service-icon.blue { background: linear-gradient(135deg, #E6F3FF 0%, #CCE7FF 100%); }

.service-card:hover .service-icon.amber { background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%); }
.service-card:hover .service-icon.orange { background: linear-gradient(135deg, #FFDAB9 0%, #F4A460 100%); }
.service-card:hover .service-icon.yellow { background: linear-gradient(135deg, #F0E68C 0%, #DAA520 100%); }
.service-card:hover .service-icon.red { background: linear-gradient(135deg, #FFC0CB 0%, #FF69B4 100%); }
.service-card:hover .service-icon.green { background: linear-gradient(135deg, #E6FFE6 0%, #90EE90 100%); }
.service-card:hover .service-icon.blue { background: linear-gradient(135deg, #CCE7FF 0%, #87CEEB 100%); }

.service-card h3 {
    margin-bottom: 1rem;
    color: #654321;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #8B4513;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D2691E;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    color: #8B4513;
    transform: translateX(5px);
}

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

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    background: rgba(255, 255, 255, 0.5);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: #D2691E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #D2691E;
    transition: all 0.3s ease;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-icon.upload { background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%); }
.step-icon.process { background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%); }
.step-icon.share { background: linear-gradient(135deg, #FFFACD 0%, #F0E68C 100%); }

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #654321;
}

.step-card p {
    color: #8B4513;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #DEB887;
}

.cta-box h3 {
    margin-bottom: 1rem;
    color: #654321;
}

.cta-box p {
    margin-bottom: 2rem;
    color: #8B4513;
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5DEB3;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote-icon {
    color: #F5DEB3;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #8B4513;
    margin-bottom: 2rem;
    max-width: 600px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 2px solid #F5DEB3;
    padding-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #DEB887;
}

.author-info h4 {
    color: #654321;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.service-used {
    color: #D2691E;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #D2691E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #D2691E;
}

.nav-btn:hover {
    background: #D2691E;
    color: white;
    transform: scale(1.1);
}

.nav-btn.prev {
    left: -60px;
}

.nav-btn.next {
    right: -60px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DEB887;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #D2691E;
}

/* FAQ Section */
.faq {
    background: rgba(255, 255, 255, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5DEB3;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #FFF8DC;
}

.faq-question h3 {
    color: #654321;
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #D2691E;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 2px solid #F5DEB3;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #8B4513;
    line-height: 1.6;
    margin: 0;
}

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

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5DEB3;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #654321;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #DEB887;
    border-radius: 8px;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed #DEB887;
    border-radius: 8px;
    background: #FFF8DC;
    color: #8B4513;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #D2691E;
    background: #F5DEB3;
}

.file-help {
    font-size: 0.9rem;
    color: #D2691E;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

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

.contact-card,
.social-card,
.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5DEB3;
}

.contact-card h3,
.social-card h3,
.trust-card h4 {
    margin-bottom: 1.5rem;
    color: #654321;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2691E;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #654321;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #D2691E;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2691E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    transform: translateY(-2px);
}

.trust-card ul {
    list-style: none;
}

.trust-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.trust-card li::before {
    content: '•';
    color: #D2691E;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #654321 0%, #8B4513 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

/* .footer-logo .logo {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
} */

.footer-logo .brand-name {
    color: white;
}

.footer-description {
    color: #DEB887;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(210, 105, 30, 0.8);
    transform: translateY(-2px);
}

.footer-links h3 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #DEB887;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(222, 184, 135, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #DEB887;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 248, 220, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid #DEB887;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-btn.prev {
        left: -30px;
    }
    
    .nav-btn.next {
        right: -30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .matters-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn.prev {
        left: -20px;
    }
    
    .nav-btn.next {
        right: -20px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #D2691E;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .scroll-indicator {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}