/* ========================================
   Brillitos del Futuro - Presentation Website
   Design System & Styles
   ======================================== */

/* CSS Variables - Color Palette based on Canva presentation */
:root {
    /* Primary Colors */
    --cream-bg: #f7f3eb;
    --cream-light: #faf8f3;
    --sage-green: #6b8e6b;
    --sage-green-light: #8eb18e;
    --terracotta: #c17f6b;
    --terracotta-light: #d9a593;
    --mustard: #d4a843;
    --mustard-light: #e8c56e;
    --dusty-rose: #c9a89d;

    /* Text Colors */
    --text-dark: #4a4a4a;
    --text-heading: #3d3d3d;
    --text-light: #6b6b6b;

    /* Accent Colors */
    --teal-accent: #5ba3a3;
    --coral-accent: #e07b6b;

    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --nav-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: var(--font-primary);
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Navigation
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 243, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
}

.main-nav.scrolled {
    background: rgba(247, 243, 235, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-heading);
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    background: linear-gradient(135deg, var(--sage-green), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--sage-green);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--sage-green);
    background: rgba(107, 142, 107, 0.1);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 60%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--sage-green), var(--sage-green-light));
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(107, 142, 107, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 107, 0.4);
}

/* ========================================
   Slide Sections
   ======================================== */
.slide-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}

.slide-section.hero {
    padding-top: var(--nav-height);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100vh;
    display: block;
}

/* Hero specific styles */
.hero {
    background: var(--cream-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.8;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--sage-green);
    border-bottom: 3px solid var(--sage-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(10px);
    }

    60% {
        transform: rotate(45deg) translateY(5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Contact section overlay */
.contact {
    background: var(--cream-light);
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(247, 243, 235, 0.98) 0%, transparent 100%);
    display: flex;
    justify-content: center;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

.btn-phone {
    background: linear-gradient(135deg, var(--sage-green), var(--sage-green-light));
    color: white;
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 107, 0.4);
}

.btn-location {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    color: white;
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 127, 107, 0.4);
}

/* ========================================
   Enhanced Contact Section
   ======================================== */
.contact-enhanced {
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--cream-light) 100%);
    padding: 2rem;
    padding-top: calc(var(--nav-height) + 2rem);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    align-items: center;
}

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

.contact-header {
    text-align: left;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-heading);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-item a {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Main CTA Button */
.cta-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--sage-green), #4a7a4a);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(107, 142, 107, 0.4);
    transition: var(--transition-fast);
}

.cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 142, 107, 0.5);
}

.cta-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
}

.cta-text small {
    opacity: 0.9;
    font-size: 0.9rem;
}

.cta-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.cta-main:hover .cta-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Social Buttons */
.contact-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.social-btn.phone {
    background: linear-gradient(135deg, var(--sage-green), var(--sage-green-light));
}

.social-btn.email {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Map Side */
.contact-map-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    min-height: 400px;
}

.map-container-link {
    flex: 1;
    display: block;
    text-decoration: none;
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    min-height: 350px;
    height: 100%;
    transition: var(--transition-fast);
}

.map-container-link:hover .map-container {
    box-shadow: var(--shadow-strong);
    transform: scale(1.02);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.map-overlay-click {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.map-container-link:hover .map-overlay-click {
    opacity: 1;
}

.map-overlay-click span {
    background: white;
    color: var(--sage-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--terracotta);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.map-link svg {
    width: 20px;
    height: 20px;
}

.map-link:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 127, 107, 0.4);
}

/* Responsive styles for enhanced contact */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-side {
        min-height: 300px;
    }

    .contact-title {
        font-size: 2rem;
        text-align: center;
    }

    .contact-subtitle {
        text-align: center;
    }

    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-enhanced {
        padding: 1rem;
        padding-top: calc(var(--nav-height) + 1rem);
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .cta-main {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
    }

    .cta-text strong {
        font-size: 1.1rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Floating WhatsApp CTA Button
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.floating-whatsapp-text {
    white-space: nowrap;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Hide text on smaller screens */
@media (max-width: 768px) {
    .floating-whatsapp {
        padding: 1rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .floating-whatsapp-text {
        display: none;
    }

    .floating-whatsapp svg {
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   Progress Bar
   ======================================== */
.progress-container {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(107, 142, 107, 0.1);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--sage-green), var(--mustard), var(--terracotta));
    width: 0;
    transition: width 0.1s ease-out;
    border-radius: 0 2px 2px 0;
}

/* ========================================
   Dots Navigation
   ======================================== */
.dots-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
    padding: 1rem 0.5rem;
    background: rgba(247, 243, 235, 0.9);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 142, 107, 0.3);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(107, 142, 107, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--sage-green);
    border-color: var(--sage-green-light);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(107, 142, 107, 0.5);
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background: linear-gradient(135deg, var(--sage-green), #4a7a4a);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand .logo-text {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-info {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-info p {
    opacity: 0.9;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.7;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        padding: 80px 1.5rem 2rem;
        gap: 0.25rem;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-strong);
        overflow-y: auto;
    }

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

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .nav-menu a:hover {
        background: rgba(107, 142, 107, 0.1);
    }

    .nav-menu .nav-cta {
        margin-top: 0.5rem;
        padding: 0.75rem 1rem !important;
    }

    .dots-nav {
        right: 0.75rem;
        gap: 0.5rem;
        padding: 0.75rem 0.4rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    /* Remove scroll snap on mobile for smoother scrolling */
    html {
        scroll-snap-type: none;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 0.95rem;
    }

    .logo-icon {
        font-size: 1.4rem;
    }

    /* Improved slide section for mobile */
    .slide-section {
        min-height: auto;
        padding: 0;
    }

    .slide-section.hero {
        min-height: 100vh;
        padding-top: var(--nav-height);
    }

    /* Make slide images larger and more readable on mobile */
    .slide-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center top;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
    }

    .scroll-arrow {
        width: 18px;
        height: 18px;
    }

    /* Contact section improvements */
    .contact-enhanced {
        min-height: auto;
        padding: 1.5rem 1rem;
        padding-top: calc(var(--nav-height) + 1rem);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-header {
        text-align: center;
    }

    .contact-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-details {
        gap: 0.75rem;
    }

    .contact-item {
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .contact-icon {
        font-size: 1.3rem;
    }

    .contact-item strong {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    /* CTA button for mobile - larger touch target */
    .cta-main {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }

    .cta-icon {
        font-size: 1.6rem;
    }

    .cta-text {
        text-align: left;
    }

    .cta-text strong {
        font-size: 1rem;
    }

    .cta-text small {
        font-size: 0.8rem;
    }

    .cta-arrow {
        width: 20px;
        height: 20px;
    }

    /* Social buttons - better spacing for touch */
    .contact-social {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .social-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Map section mobile */
    .contact-map-side {
        min-height: 250px;
    }

    .map-container {
        min-height: 220px;
        border-radius: 12px;
    }

    .map-container iframe {
        min-height: 220px;
    }

    .map-overlay-click {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    }

    .map-overlay-click span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .map-link {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* Old contact buttons */
    .contact-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .dots-nav {
        display: none;
    }

    /* Footer mobile */
    .main-footer {
        padding: 1.5rem 1rem;
    }

    .footer-brand {
        font-size: 1.1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-info {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .footer-copy {
        font-size: 0.8rem;
    }

    /* Floating WhatsApp adjusted for mobile */
    .floating-whatsapp {
        bottom: 1rem;
        left: 1rem;
        padding: 0.85rem;
        border-radius: 50%;
    }

    .floating-whatsapp-text {
        display: none;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 380px) {
    .nav-logo .logo-text {
        font-size: 0.85rem;
    }

    .nav-logo .logo-icon {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .cta-main {
        padding: 0.85rem;
    }

    .cta-text strong {
        font-size: 0.95rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .contact-item {
        padding: 0.75rem;
    }
}

/* ========================================
   Animations & Effects
   ======================================== */
.slide-section {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-section:nth-child(1) {
    animation-delay: 0s;
}

.slide-section:nth-child(2) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(3) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(4) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(5) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(6) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(7) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(8) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(9) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(10) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(11) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(12) {
    animation-delay: 0.1s;
}

.slide-section:nth-child(13) {
    animation-delay: 0.1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Smooth scrolling snap on larger screens */
@media (min-width: 769px) {
    html {
        scroll-snap-type: y proximity;
    }
}

/* Print styles */
@media print {

    .main-nav,
    .dots-nav,
    .progress-container,
    .scroll-indicator,
    .contact-overlay {
        display: none !important;
    }

    .slide-section {
        min-height: auto;
        page-break-after: always;
    }

    .slide-image {
        max-height: none;
    }
}
/* ========================================
   Blog Styles
   ======================================== */

/* Blog Header */
.blog-header {
    background-color: var(--cream-light);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.blog-header h1 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

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

.blog-tag {
    display: inline-block;
    background: var(--cream-bg);
    color: var(--sage-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.blog-card-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.blog-card-content h2 a {
    color: var(--text-heading);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-content h2 a:hover {
    color: var(--sage-green);
}

.blog-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--sage-green);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--sage-green-light);
}

/* Article Page Styles */
.article-header {
    background-color: var(--cream-light);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-heading);
    margin: 1rem 0;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.article-hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--sage-green);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-heading);
}

.highlight-box {
    background-color: var(--cream-bg);
    border-left: 4px solid var(--mustard);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--mustard);
}

.cta-box {
    background: linear-gradient(135deg, var(--sage-green), var(--sage-green-light));
    padding: 3rem;
    text-align: center;
    border-radius: 16px;
    color: white;
    margin-top: 4rem;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--sage-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-table .column {
    flex: 1;
    min-width: 250px;
    background: var(--cream-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.comparison-table h3 {
    margin-top: 0;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--terracotta);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.75rem;
    }
}
