/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #FAF6F0; /* Off-white warm cream */
    --color-bg-card: #FFFFFF;
    --color-text-primary: #3C2A21; /* Deep warm espresso */
    --color-text-secondary: #5D4037; /* Medium warm brown */
    --color-text-muted: #8D6E63; /* Soft taupe */
    --color-accent: #8B5E3C; /* Soft terracotta / hazelnut */
    --color-gold: #C5A880; /* Soft warm gold */
    --color-whatsapp: #25D366; /* WhatsApp official green */
    --color-whatsapp-hover: #20BA56;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Layout & Spacing */
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(60, 42, 33, 0.05);
    --shadow-hover: 0 20px 40px rgba(60, 42, 33, 0.1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   LAYOUT CONTAINER
   ========================================================================== */
.container {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    max-width: 1100px;
    width: 100%;
    min-height: 680px;
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

/* ==========================================================================
   IMAGE SECTION (LEFT)
   ========================================================================== */
.image-section {
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(60, 42, 33, 0.08);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Floating Badge on Image */
.floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-badge i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.floating-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-primary);
}

/* ==========================================================================
   CONTENT SECTION (RIGHT)
   ========================================================================== */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.content-wrapper {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 35px;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: -1px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-gold);
    opacity: 0.5;
    max-width: 40px;
}

.divider-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 600;
}

/* Main Message */
.main-message {
    margin-bottom: 40px;
}

.slogan {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-accent);
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
}

.description strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-bg-primary);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 42, 33, 0.03);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    font-size: 1rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* Call to Action (CTA) */
.cta-area {
    text-align: center;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: var(--color-whatsapp);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.cta-button:active {
    transform: translateY(-1px);
}

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

.btn-subtext {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

/* Footer */
.footer {
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding-top: 25px;
}

.footer-badge {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.badge-accent {
    color: var(--color-accent);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 900px) {
    body {
        padding: 10px;
    }
    
    .container {
        grid-template-columns: 1fr;
        min-height: auto;
        max-width: 500px;
    }
    
    .image-section {
        padding: 20px 20px 0 20px;
        height: 380px;
    }
    
    .content-section {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .image-section {
        height: 320px;
    }
    
    .brand-title {
        font-size: 2.8rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .feature-item {
        padding: 10px 14px;
    }
}
