/* ==========================================
   Zentro World Connect - Premium Stylesheet
   ========================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    --primary: #a81a29; /* Red */
    --primary-light: #c52536; /* Bright Red */
    --primary-dark: #7a101b; /* Deep Burgundy Red */
    --secondary: #a81a29; /* Red */
    --secondary-hover: #7a101b; /* Deep Red */
    --accent: #cca353; /* Gold accents look gorgeous with red & white! */
    --accent-light: #e6c587;
    --bg-cream: #ffffff; /* White background */
    --bg-light: #faf8f7; /* Very soft rose-white background */
    --text-dark: #221a1b; /* Soft dark slate with red hint */
    --text-muted: #665b5c; /* Muted slate with red hint */
    --white: #ffffff;
    --border-color: #f0e6e6; /* Soft border with red hint */
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    --shadow-md: 0 10px 15px -3px rgba(168, 26, 41, 0.06), 0 4px 6px -2px rgba(168, 26, 41, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(168, 26, 41, 0.1), 0 10px 10px -5px rgba(168, 26, 41, 0.03);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nowrap, a[href^="tel:"] {
    white-space: nowrap;
}

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

ul {
    list-style: none;
}

/* --- UTILITIES & LAYOUT --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
}

.font-semibold {
    font-weight: 600;
}

.hover-accent:hover {
    color: var(--accent) !important;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(223, 107, 124, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(223, 107, 124, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-text {
    padding: 0;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-text i {
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    color: var(--secondary);
}

.btn-text:hover i {
    transform: translateX(4px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    margin-right: 24px;
}

.top-contact a:hover {
    color: var(--accent);
}

.top-tagline span i {
    color: var(--accent);
    margin-right: 6px;
}

/* --- HEADER --- */
.header {
    background-color: rgba(252, 251, 250, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: padding var(--transition-normal), background-color var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    background-color: rgba(252, 251, 250, 0.98);
    box-shadow: var(--shadow-sm);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    padding: 2px;
    border: 1px solid var(--border-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-accent {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.logo-main {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    color: var(--accent);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.btn-nav {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 160px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s var(--transition-slow);
}

.badge {
    background-color: rgba(204, 163, 83, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent-light);
    padding: 6px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 580px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-quick-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s var(--transition-slow);
}

.hero-quick-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--accent-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.quick-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.quick-contact-item .contact-icon {
    font-size: 1.2rem;
    color: var(--accent);
    background: rgba(204, 163, 83, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quick-contact-item .contact-details {
    display: flex;
    flex-direction: column;
}

.quick-contact-item .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-contact-item .val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

.quick-card-badge {
    margin-top: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-cream);
    clip-path: ellipse(60% 80% at 50% 100%);
}

/* --- STATS SECTION --- */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition-normal);
}

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

.stat-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- SECTION HEADERS --- */
.section-subtitle {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- ABOUT SECTION --- */
.about {
    padding: 100px 0;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual .visual-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.visual-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.visual-badge h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.visual-badge p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-lead {
    font-size: 1.15rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 24px;
}

.about p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.pillar {
    display: flex;
    gap: 18px;
}

.pillar-icon {
    font-size: 1.3rem;
    color: var(--primary);
    background: var(--bg-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.pillar h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.about-footer-info {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.signature-block {
    display: flex;
    flex-direction: column;
}

.sig-title strong {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary);
    display: block;
}

.sig-title span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- PRODUCTS SECTION --- */
.products {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.filter-wrapper {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 28px;
}

.product-cat {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    height: 65px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-specs {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 20px;
}

.product-specs li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.product-specs li:last-child {
    margin-bottom: 0;
}

.product-specs li strong {
    color: var(--primary-light);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.package-info i {
    color: var(--primary);
    margin-right: 4px;
}

.quote-notice-banner {
    background-color: var(--white);
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-light);
}

.banner-content i {
    font-size: 1.4rem;
    color: var(--accent);
}



/* --- CONTACT SECTION --- */
.contact {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-col .section-title {
    color: var(--white);
}

.contact-lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--accent-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h3 i {
    font-size: 1.1rem;
    color: var(--accent);
}

.info-card p.address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.info-card.primary-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    position: relative;
}

.primary-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.info-card.primary-card p.position {
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-top: -12px;
    margin-bottom: 16px;
}

.highlight-link {
    font-weight: 600;
    color: var(--accent) !important;
}

.business-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.business-hours h4 {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-col {
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper {
    position: relative;
}

.form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-wrapper p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background-color: var(--bg-cream);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.error-msg {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-msg {
    display: block;
}

.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    padding: 24px;
    animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.success-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.success-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-wrapper .logo-accent {
    color: var(--white);
}

.footer-logo-wrapper .logo-main {
    color: var(--accent-light);
}

.footer-logo {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.footer h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
}

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

.footer ul li a {
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact p i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact-lead {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-top: 16px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phytosanitary-badge {
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    background: rgba(204, 163, 83, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: transform var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-quick-card {
        max-width: 500px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: left var(--transition-normal);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
        padding-bottom: 12px;
    }
    
    .btn-nav {
        margin-top: 12px;
        width: 100%;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-notice-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    
    .quote-notice-banner .btn {
        width: 100%;
    }
    
    .contact-form-col {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    

    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .visual-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
        gap: 10px;
    }
    
    .visual-badge i {
        font-size: 1.5rem;
    }
}

/* --- UTILITY CLASSES --- */
.nowrap {
    white-space: nowrap !important;
}

