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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Alegreya Sans', 'Source Sans 3', sans-serif;
    background-color: #f8f6f3;
    color: #6b5b47;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #6b5b47;
    line-height: 1.2;
}

p {
    color: #6b5b47;
    line-height: 1.6;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header Styles */
.header {
    background-color: #f8f6f3;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(232, 228, 223, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #6b5b47;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #b8a082;
}

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

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

.cta-button {
    background-color: #b8a082;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #9d8a6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 160, 130, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #6b5b47;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Header */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(248, 246, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 500;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Main Content Spacing */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e6ddd4 0%, #f0ede8 100%);
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* keep base image transitions (no hover) */
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-content {
    padding-left: 20px;
}

.location {
    font-size: 14px;
    color: #6b5b47;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #6b5b47;
    margin-bottom: 30px;
    font-weight: 400;
}

.italic-text {
    font-style: italic;
    color: #b8a082;
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #6b5b47;
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.5;
}

.highlight {
    color: #b8a082;
    font-weight: 600;
}

.hero-cta {
    background: linear-gradient(135deg, #b8a082 0%, #9d8a6d 100%);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 160, 130, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 160, 130, 0.4);
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 30px;
    }
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #f0ede8 0%, #e8e4df 100%);
    padding: 120px 0;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-content {
    padding-right: 40px;
}

.problem-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: #6b5b47;
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.problem-text {
    margin-bottom: 50px;
}

.problem-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b5b47;
    margin-bottom: 25px;
}

.problem-cta {
    background: linear-gradient(135deg, #b8a082 0%, #9d8a6d 100%);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.problem-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 160, 130, 0.4);
}

.problem-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.image-back {
    width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-front {
    width: 320px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 80px;
    left: 120px;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-front:hover {
    transform: scale(1.02);
}

/* Mobile Problem Section */
@media (max-width: 968px) {
    .problem-container {
        gap: 60px;
    }
    
    .problem-content {
        padding-right: 20px;
    }
    
    .image-back {
        width: 240px;
        height: 280px;
    }
    
    .image-front {
        width: 280px;
        height: 240px;
        left: 100px;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 80px 0;
    }
    
    .problem-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .problem-content {
        padding-right: 0;
        order: 2;
    }
    
    .problem-images {
        order: 1;
    }
    
    .image-stack {
        max-width: 400px;
        margin: 0 auto;
        height: 300px;
    }
    
    .image-back {
        width: 200px;
        height: 240px;
        left: 20px;
    }
    
    .image-front {
        width: 240px;
        height: 200px;
        left: 80px;
        top: 60px;
    }
}

/* Value Proposition Section */
.value-section {
    background: linear-gradient(135deg, #d4dde6 0%, #c8d1da 100%);
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-container {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.value-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.3;
    color: #6b5b47;
    font-weight: 400;
    margin: 0;
}

/* Mobile Value Section */
@media (max-width: 768px) {
    .value-section {
        padding: 80px 0;
    }
}

/* Marquee Section */
.marquee-section {
    background-color: #f8f6f3;
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid #e8e4df;
    border-bottom: 1px solid #e8e4df;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    will-change: transform;
}

.marquee-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #b8a082;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-right: 120px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Mobile Marquee */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 1rem;
        margin-right: 80px;
        letter-spacing: 2px;
    }
    
    .marquee-content {
        animation: marqueeScroll 20s linear infinite;
    }
}

/* About Section */
.about-section {
    display: flex;
    min-height: 80vh;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.about-content {
    background: linear-gradient(135deg, #6b5b47 0%, #5a4a37 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f8f6f3;
}

.about-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #f8f6f3;
}

.about-credentials {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #b8a082;
    letter-spacing: 0.5px;
}

.about-text {
    max-width: 500px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #f8f6f3;
    opacity: 0.95;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    background: linear-gradient(135deg, #f0ede8 0%, #e6ddd4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* keep base about-image transition */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Mobile About Section */
@media (max-width: 968px) {
    .about-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        min-height: auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 60px 30px;
        order: 2;
    }
    
    .about-image {
        order: 1;
        min-height: 400px;
    }
    
    .about-text {
        max-width: none;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f0ede8 0%, #e8e4df 100%);
    padding: 120px 0;
}

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

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #6b5b47;
    margin-bottom: 20px;
    font-style: italic;
}

.services-subtitle {
    font-size: 18px;
    color: #6b5b47;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #f8f6f3;
    border: 2px solid #6b5b47;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Hover effects ONLY for devices that SUPPORT hover (desktop, not mobile) */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border-color: #b8a082;
    }

    .service-card:hover .service-image img {
        transform: scale(1.1);
    }

    .hero-cta:hover {
        transform: translateY(-3px);
    }

    .problem-cta:hover {
        transform: translateY(-2px);
    }

    .final-cta-button:hover {
        transform: translateY(-3px);
    }

    .form-submit:hover {
        transform: translateY(-2px);
    }
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-content {
    padding: 35px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #6b5b47;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 16px;
    color: #b8a082;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6b5b47;
    margin-bottom: 15px;
}

.service-description:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
}
/* How to Start Section */
.how-to-start-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 120px 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.section-heading {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    color: #6b5b47;
    margin-bottom: 60px;
    line-height: 1.1;
    font-style: italic;
}

.steps-container {
    margin-bottom: 50px;
}

.step {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid #b8a082;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #6b5b47;
    margin-bottom: 12px;
    font-style: normal;
}

.step-description {
    font-size: 16px;
    color: #6b5b47;
    line-height: 1.6;
    max-width: 400px;
}

.image-container {
    flex: 1;
    max-width: 450px;
    display: flex;
    justify-content: center;
}

.image-frame {
    background: linear-gradient(135deg, #e8e4df 0%, #d4dde6 100%);
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.couple-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Mobile How to Start */
@media (max-width: 768px) {
    .how-to-start-section {
        padding: 80px 0;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .text-content {
        max-width: 100%;
    }
    
    .section-heading {
        margin-bottom: 40px;
    }
    
    .step {
        border-left: none;
        border-top: 3px solid #b8a082;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .step-description {
        max-width: 100%;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #e6ddd4 0%, #d4dde6 100%);
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.final-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.final-image-container {
    flex: 0 0 45%;
    max-width: 450px;
}

.final-image-frame {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.final-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.final-text-content {
    flex: 0 0 50%;
    max-width: 550px;
}

.final-main-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #6b5b47;
    margin-bottom: 30px;
    line-height: 1.2;
    font-style: italic;
}

.final-description {
    font-size: 17px;
    color: #6b5b47;
    margin-bottom: 25px;
    line-height: 1.7;
}

.final-call-to-action-text {
    font-size: 17px;
    color: #6b5b47;
    margin-bottom: 40px;
    line-height: 1.7;
    font-style: italic;
}

.final-cta-button {
    background: linear-gradient(135deg, #b8a082 0%, #9d8a6d 100%);
    color: white;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(184, 160, 130, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(184, 160, 130, 0.4);
}

/* Mobile Final CTA */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .final-content-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .final-image-container {
        order: 1;
        flex: none;
    }
    
    .final-text-content {
        order: 2;
        flex: none;
        max-width: 100%;
    }
    
    .final-image-frame {
        padding: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    background-color: #6b5b47;
    padding: 60px 0 40px;
    color: #f8f6f3;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    color: #f8f6f3;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-info p {
        font-size: 13px;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .step,
    .hero-image,
    .about-image img {
        animation: fadeInUp 0.6s ease-out;
    }
}

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

/* Focus States for Accessibility */
.cta-button:focus,
.hero-cta:focus,
.problem-cta:focus,
.final-cta-button:focus {
    outline: 3px solid #b8a082;
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 2px solid #b8a082;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .header,
    .marquee-section,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-section,
    .problem-section,
    .about-section {
        page-break-inside: avoid;
    }
}

/* Footer */
.footer {
    background-color: #f8f6f3;
    padding: 80px 0 30px;
    border-top: 1px solid #e8e4df;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-statement p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b5b47;
    max-width: 400px;
    text-align: left;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #6b5b47;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    font-size: 14px;
    color: #6b5b47;
    line-height: 1.4;
}

.footer-column ul li a {
    color: #6b5b47;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #b8a082;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #e8e4df;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b5b47;
    opacity: 0.7;
    margin: 0;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-left {
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-statement p {
        max-width: none;
        text-align: center;
        font-size: 14px;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .footer-links {
        gap: 60px;
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
        font-size: 15px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-statement p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f0ede8 0%, #e8e4df 100%);
    padding: 120px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left {
    padding-right: 20px;
}

.contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #6b5b47;
    margin-bottom: 30px;
    line-height: 1.2;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b5b47;
    margin-bottom: 40px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    font-size: 16px;
    color: #6b5b47;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-item strong {
    font-weight: 600;
    color: #4B3314;
}


.contact-item a {
    text-decoration: none;
    color: inherit;
}

.contact-item a:visited {
    color: inherit;
}


/* Contact Form */
.contact-form {
    background: #f8f6f3;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #6b5b47;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b5b47;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #f0ede8;
    border: 1px solid #e8e4df;
    border-radius: 6px;
    color: #6b5b47;
    font-size: 16px;
    font-family: 'Alegreya Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8a082;
    background: #f8f6f3;
    box-shadow: 0 0 0 3px rgba(184, 160, 130, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, #b8a082 0%, #9d8a6d 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 160, 130, 0.4);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .contact-left {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, #e6ddd4 0%, #f0ede8 100%);
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.blog-hero-container {
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #6b5b47;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
}

.blog-hero-subtitle {
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #6b5b47;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.9;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f0ede8 0%, #e8e4df 100%);
    padding: 80px 0;
}

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

/* Blog Grid */
.blog-section .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

/* Blog Card */
.blog-card {
    background-color: #f8f6f3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .blog-card:hover .blog-card-image img {
        transform: scale(1.1);
    }
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #b8a082;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #b8a082;
    flex-wrap: wrap;
}

.blog-card-meta time {
    font-weight: 500;
}

.blog-read-time {
    color: #6b5b47;
    opacity: 0.7;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #6b5b47;
    margin-bottom: 20px;
    line-height: 1.3;
    flex-grow: 1;
}

.blog-card-title a {
    color: #6b5b47;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #b8a082;
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #6b5b47;
    margin-bottom: 25px;
    opacity: 0.9;
}

.blog-read-more {
    color: #b8a082;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #6b5b47;
    transform: translateX(5px);
}

/* Blog Post Hero */
.blog-post-hero {
    background: linear-gradient(135deg, #e6ddd4 0%, #f0ede8 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.blog-post-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blog-post-hero-content {
    padding-right: 40px;
}

.blog-post-category {
    display: inline-block;
    background-color: #b8a082;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.blog-post-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: #6b5b47;
    margin-bottom: 25px;
    font-weight: 400;
}

.blog-post-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #6b5b47;
    opacity: 0.8;
}

.blog-post-author::before,
.blog-post-date::before,
.blog-post-read-time::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #b8a082;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-post-hero-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-post-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #6b5b47;
}

.breadcrumb a {
    color: #b8a082;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6b5b47;
}

.breadcrumb span {
    opacity: 0.5;
}

/* Blog Post Content Section */
.blog-post-content-section {
    background: linear-gradient(135deg, #f0ede8 0%, #e8e4df 100%);
    padding: 80px 0;
}

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

    gap: 60px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border: none;
    border-radius: 8px;
}

/* Video Embed Styles */
.blog-post-video-embed {
    margin: 2rem 0;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Mobile Video */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 56.25%;
    }
}

.blog-post-article {
    background: #f8f6f3;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Table of Contents */
.blog-toc {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 30px;
    border-left: 4px solid #b8a082;
    margin-bottom: 50px;
    border-radius: 8px;
}

.blog-toc h3 {
    font-size: 18px;
    color: #6b5b47;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-toc ul {
    list-style: none;
    padding: 0;
}

.blog-toc li {
    margin-bottom: 12px;
}

.blog-toc a {
    color: #b8a082;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-toc a:hover {
    color: #6b5b47;
    padding-left: 8px;
}

/* Blog Post Sections */
.blog-post-section {
    margin-bottom: 50px;
}

.blog-post-section h2 {
    font-size: 28px;
    color: #6b5b47;
    margin-bottom: 25px;
    margin-top: 50px;
    line-height: 1.2;
    font-weight: 400;
}

.blog-post-section h3 {
    font-size: 20px;
    color: #6b5b47;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 600;
}

.blog-post-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b5b47;
    margin-bottom: 20px;
}

/* Lists */
.blog-post-list {
    margin: 20px 0 30px 25px;
    padding: 0;
}

.blog-post-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #6b5b47;
    font-size: 16px;
}

.blog-post-list ul li::marker {
    color: #b8a082;
}

.blog-post-list ol li::marker {
    color: #b8a082;
    font-weight: 600;
}

/* Figures & Images */
.blog-post-figure {
    margin: 40px 0;
    text-align: center;
}

.blog-post-figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-figure figcaption {
    font-size: 14px;
    color: #6b5b47;
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
}

/* Gallery */
.blog-post-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.gallery-item {
    margin: 0;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item figcaption {
    font-size: 14px;
    color: #6b5b47;
    margin-top: 12px;
    font-weight: 500;
}

/* Video Embed */
.blog-post-video-embed {
    margin: 40px 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Ensure all video containers and iframes have consistent border-radius */
.video-container,
.video-container iframe {
    border-radius: 8px !important;
}
.video-caption {
    font-size: 14px;
    color: #6b5b47;
    opacity: 0.7;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

/* Highlight Box */
.blog-post-highlight {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    border-left: 5px solid #b8a082;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.blog-post-highlight h3 {
    margin-top: 0;
    font-size: 18px;
}

.blog-post-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-highlight li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #6b5b47;
}

/* Conclusion */
.blog-post-conclusion {
    background: linear-gradient(135deg, #d4dde6 0%, #c8d1da 100%);
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.blog-post-conclusion h2 {
    margin-top: 0;
}

.blog-post-conclusion p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

/* CTA Block */
.blog-post-cta {
    background: linear-gradient(135deg, #b8a082 0%, #9d8a6d 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.blog-post-cta h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    margin-top: 0;
}

.blog-post-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Sidebar */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: #f8f6f3;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e4df;
}

.author-card {
    text-align: center;
}

.author-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.author-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.author-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sidebar-card h3 {
    font-size: 18px;
    color: #6b5b47;
    margin-bottom: 20px;
    margin-top: 0;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    margin-bottom: 12px;
}

.sidebar-card a {
    color: #b8a082;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.sidebar-card a:hover {
    color: #6b5b47;
    padding-left: 8px;
}

/* Related Posts Section */
.blog-related-section {
    background: linear-gradient(135deg, #f0ede8 0%, #e4e1db 100%);
    padding: 80px 0;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    color: #6b5b47;
    text-align: center;
    font-style: italic;
}

/* Blog Newsletter Section */
.blog-newsletter-section {
    background: linear-gradient(135deg, #b8a082 0%, #9d8a6d 100%);
    padding: 80px 20px;
    text-align: center;
}

.blog-newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.blog-newsletter-container h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 20px;
    font-style: italic;
}

.blog-newsletter-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-newsletter-container .cta-button {
    background-color: white;
    color: #b8a082;
    font-weight: 700;
}

.blog-newsletter-container .cta-button:hover {
    background-color: #f0ede8;
}

/* Mobile Blog Styles */
@media (max-width: 968px) {
    .blog-post-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-post-hero-content {
        padding-right: 0;
    }

    .blog-post-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-post-article {
        padding: 40px;
    }

    .blog-post-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 60px 0 40px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-section .blog-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-hero {
        padding: 60px 0;
    }

    .blog-post-article {
        padding: 30px;
    }

    .blog-post-cta {
        padding: 30px;
    }

    .blog-toc {
        padding: 20px;
        margin-bottom: 40px;
    }

    .blog-post-gallery {
        grid-template-columns: 1fr;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .breadcrumb {
        padding: 20px 20px;
        flex-wrap: wrap;
    }

    .blog-post-sidebar {
        margin-top: 40px;
    }
}