/* ===================================
   RAMA ELECTRONIC AND HARDWARE
   Professional E-Commerce Stylesheet
   =================================== */
@import url('shop-style.css');

/* === CSS Variables === */
:root {
    /* Refined Editorial Palette */
    --primary-color: #1a1e21;
    --primary-dark: #0f1214;
    --accent-gold: #b38e44;
    /* More muted, elegant gold */
    --accent-light: #f9f6f0;

    --text-primary: #42474c;
    /* Elite Warm Charcoal - definitely not black */
    --text-secondary: #6e757c;
    --text-muted: #9ba2a8;

    --bg-body: #fcfcfc;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1e21;

    --border-color: #e5e5e5;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 7rem;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Gradients (keeping existing for now, but could be updated) */
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-luxury: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);

    /* Shadows - Deep & Sophisticated */
    --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.02);
    /* Keeping existing */
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
    /* Keeping existing */

    /* Border Radius - Sharper, more professional edges */
    --radius-xl: 32px;
    /* Keeping existing */
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    color: #1a1e21;
    /* Deep Midnight Charcoal - very dark but not black */
    letter-spacing: -0.01em;
}

h1,
.hero-title {
    color: #1a1e21;
}

.hero-subtitle {
    color: var(--accent-gold);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

/* === Navigation (Lexus Glass Effect) === */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: var(--spacing-md) 0;
    z-index: 1000;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.1em;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--spacing-xs) 0;
    position: relative;
    opacity: 0.7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* === Buttons (Luxury Feel) === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

/* === Hero Section (Premium Layout) === */
.hero {
    min-height: 90vh;
    padding: var(--spacing-2xl) 0;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
        linear-gradient(to bottom, #fcfcfc, #ffffff);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: var(--spacing-xl);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
}

/* === Quick Contact Bar === */
.quick-contact-bar {
    background: var(--bg-white);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-contact-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quick-contact-item svg {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* === Category Cards (Premium) === */
.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    text-align: left;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.category-link {
    margin-top: var(--spacing-md);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

/* === Product Grid System (4 Col Desktop, 2 Col Mobile) === */
.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-body);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns on Desktop */
    gap: var(--spacing-lg);
}

/* === Product Cards (Premium E-Commerce) === */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--bg-light);
    border-radius: 0;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.product-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.product-meta {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-brand {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* === Features Section (Premium) === */
.feature-card {
    background: var(--bg-white);
    border: 0;
    padding: var(--spacing-xl);
    text-align: left;
    transition: var(--transition-normal);
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === Dealer Section === */
.dealer-section {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.dealer-section h2 {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.brand-tag {
    padding: 0.8rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.brand-tag {
    padding: 0.8rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.brand-greatwhite {
    color: #e31e24 !important;
    /* Branded Red */
    border-color: rgba(227, 30, 36, 0.3) !important;
}

.brand-berger {
    color: #00a1e4 !important;
    /* Branded Blue */
    border-color: rgba(0, 161, 228, 0.3) !important;
}

.brand-lazer {
    color: #0056b3 !important;
    /* Branded Power Blue */
    border-color: rgba(0, 86, 179, 0.3) !important;
}

.brand-vitrex {
    color: #c91424 !important;
    /* Sharp Red */
    border-color: rgba(201, 20, 36, 0.3) !important;
}

.brand-premium {
    color: var(--accent-gold) !important;
    border-color: rgba(179, 142, 68, 0.3) !important;
}

.brand-tag:hover {
    transform: translateY(-3px) scale(1.05);
    background: white !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Attractive Gradient Text helper */
.gradient-text {
    background: linear-gradient(135deg, #1a1e21 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* === CTA Section (Luxury White) === */
.cta-section {
    background: var(--bg-white);
    text-align: center;
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

/* === Contact Page Styles === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.contact-info-wrapper,
.contact-form-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-info-wrapper h2,
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

/* === Brand Highlight Section === */
.brand-highlight-section {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.brand-highlight-section h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: var(--spacing-xs) 0;
}

.brand-highlight-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-link {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 2px;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-lg);
}

/* === Quick Actions Section === */
.quick-actions-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.quick-action-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.quick-action-card svg {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* === Location Page Styles === */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.info-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* === Footer (Midnight Theme) === */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer h3 {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
}

.footer h4 {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: var(--spacing-sm);
}

.footer a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === Floating Buttons === */
.floating-buttons {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-call {
    background: var(--primary-color);
}

.fab-whatsapp {
    background: #25D366;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* === WhatsApp Modal === */
.whatsapp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 30, 33, 0.85);
    /* Midnight tinted overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.whatsapp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 400px;
    box-shadow: var(--shadow-hover);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-color);
}

.whatsapp-modal-overlay.active .whatsapp-modal {
    transform: scale(1);
}

.whatsapp-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.whatsapp-icon-large {
    width: 60px;
    height: 60px;
    background: #DCF8C6;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
}

.whatsapp-modal h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.whatsapp-modal p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.whatsapp-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
    padding: 0.5rem;
    line-height: 1;
    z-index: 10;
}

.whatsapp-close:hover {
    color: var(--accent-red);
}

.wa-form-group {
    margin-bottom: 1rem;
}

.wa-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.wa-form-group input,
.wa-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--bg-body);
}

.wa-form-group input:focus,
.wa-form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    background: white;
}

.wa-btn-submit {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.wa-btn-submit:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wa-error {
    color: var(--accent-red);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    animation: fadeIn 0.3s ease;
}

.hidden {
    display: none;
}