/* Premium UI Variables - Refined for Conversions */
:root {
    --primary: #7a0016; /* Ruby Red matching the logo */
    --primary-light: #a3001e;
    --secondary: #d4af37; /* Gold matching the logo */
    --accent: #25D366; /* WhatsApp Green for high conversion */
    --text-main: #1d3557;
    --text-muted: #457b9d;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 10px 40px 0 rgba(31, 38, 135, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--text-main);
    background-color: #fcf8f2; /* Soft warm background */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Mesh & Shapes */
.bg-shape {
    position: absolute; filter: blur(80px); z-index: -1; opacity: 0.5;
}
.shape-1 {
    top: -5%; left: -10%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, #fde4e4 0%, #fff0c7 100%); border-radius: 50%;
}
.shape-2 {
    bottom: 20%; right: -10%; width: 60vw; height: 60vw;
    background: radial-gradient(circle, #e9ecef 0%, #fde4e4 100%); border-radius: 50%;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.container { width: 92%; max-width: 1100px; margin: 0 auto; }

.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: var(--border-radius); box-shadow: var(--glass-shadow);
}

/* Header & SVG Logo */
.glass-header { 
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--secondary);
}
.slim-header { padding: 8px 0 !important; border-bottom: 1px solid rgba(212, 175, 55, 0.4) !important; background: rgba(255, 255, 255, 0.98) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: center; align-items: center; position: relative; min-height: 60px; }

.logo-group { display: flex; align-items: center; gap: 12px; }
.logo-container { width: 80px; height: 80px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; }
.slim-logo { width: 55px !important; height: 55px !important; }
.main-logo { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.brand-name-text { display: flex; flex-direction: column; justify-content: center; }
.brand-main { font-size: 1.3rem !important; font-weight: 800; color: var(--primary); line-height: 1.2; }
.brand-sub { font-size: 0.85rem !important; color: var(--secondary); font-weight: 600; margin-top: 2px; }

/* Custom Banner Hero (Image Based) */
.hero-banner-section { padding: 40px 0 20px 0; }
.cover-image-container {
    padding: 0; 
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 3px solid var(--secondary);
    display: flex;
}
.main-cover-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Urgency & Stock Bar */
.urgency-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
@media (min-width: 768px) { .urgency-grid { grid-template-columns: 1fr 1fr; } }

.countdown-timer, .stock-alert { padding: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; border-left: 5px solid var(--primary); }
.timer-label { font-weight: bold; font-size: 1.1rem; color: var(--primary); }
.time-blocks { display: flex; gap: 10px; align-items: center; }
.time-box { background: var(--primary); color: white; padding: 5px 10px; border-radius: 8px; text-align: center; min-width: 50px; }
.time-box span { display: block; font-size: 1.5rem; font-weight: bold; line-height: 1; }
.time-box small { font-size: 0.7rem; opacity: 0.8; }
.colon { font-size: 1.5rem; font-weight: bold; color: var(--primary); }

/* Floating Call Container & Menu */
.floating-call-container { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.call-menu { display: flex; flex-direction: column; gap: 10px; background: white; padding: 15px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.05); opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-origin: bottom right; }
.call-menu.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.call-menu-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary); font-weight: 700; font-size: 1.1rem; padding: 10px 15px; background: #f8f9fa; border-radius: 8px; transition: var(--transition); white-space: nowrap; }
.call-menu-item:hover { background: #25D366; color: white; transform: translateX(-5px); }

/* Floating Call Button */
.floating-call-btn { background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); transition: var(--transition); text-decoration: none; border: 3px solid white; animation: callPulse 2s infinite; cursor: pointer; padding: 0; }
.floating-call-btn:hover { transform: scale(1.1); background: #1da851; }
.call-svg-icon { width: 32px; height: 32px; fill: white; }
@keyframes callPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 991px) {
    .floating-call-container { bottom: 135px; right: 20px; }
    .floating-call-btn { width: 55px; height: 55px; }
    .call-svg-icon { width: 26px; height: 26px; }
}

.stock-icon { font-size: 2rem; display: inline-block; animation: fireBounce 1s infinite alternate ease-in-out; }
@keyframes fireBounce {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}
.stock-text strong { display: block; color: var(--primary); }
.stock-count { color: #d90429; font-size: 1.2rem; font-weight: bold; }
.progress-bar-container { width: 100%; height: 8px; background: #e9ecef; border-radius: 10px; margin-top: 10px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, #d90429, #ef233c); border-radius: 10px; }

/* Combo Offer Section */
.combo-offer-section { padding: 30px 0; }
.combo-card { padding: 40px; border: 3px solid var(--secondary); background: linear-gradient(to bottom, #ffffff, #fffdf8); text-align: center; }
.single-combo-image-wrapper { 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    margin-bottom: 30px; position: relative; width: 100%; max-width: 500px; 
    margin-left: auto; margin-right: auto;
    background: radial-gradient(circle, #fff 0%, #faedcd 100%);
    border-radius: 20px; padding: 25px; box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}
.single-combo-image { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); margin-bottom: 20px; transition: transform 0.3s; }
.single-combo-image:hover { transform: scale(1.02); }
.combo-glow-text-container {
    text-align: center;
    background: rgba(122, 0, 22, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(122, 0, 22, 0.2);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.combo-glow-text { 
    font-size: 1.25rem; 
    color: var(--primary); 
    font-weight: 800; 
    animation: textPulse 2s ease-in-out infinite alternate; 
    margin: 0;
}
.combo-action { display: flex; flex-direction: column; align-items: center; gap: 15px; background: #fff5f5; padding: 25px; border-radius: 16px; border: 1px dashed var(--primary-light); }
.price-box { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 2.5vw, 15px); flex-wrap: nowrap; white-space: nowrap; width: 100%; }
.old-price { font-size: clamp(1.1rem, 4vw, 1.5rem); color: #888; text-decoration: line-through; font-weight: bold; }
.new-price { font-size: clamp(1.5rem, 6vw, 2.2rem); color: #d90429; font-weight: 900; }
@keyframes textPulse {
    from { transform: scale(1); text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    to { transform: scale(1.03); text-shadow: 0 4px 10px rgba(122, 0, 22, 0.3); }
}

/* Trust Badges & Strip */
.trust-badges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 50px; }
@media (min-width: 768px) { .trust-badges-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-badge {
    background: white; padding: 15px; border-radius: 12px; text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 1px solid #f8f9fa;
}
.trust-icon { font-size: 2rem; display: block; margin-bottom: 5px; }
.trust-badge span { font-weight: 600; font-size: 0.9rem; color: #444; }

.trust-section-strip { padding: 15px 0; background: white; border-bottom: 1px dashed #eee; margin-top: -5px; position: relative; z-index: 5; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.trust-strip-grid { display: flex; flex-wrap: nowrap; justify-content: center; gap: clamp(4px, 1.5vw, 15px); width: 100%; white-space: nowrap; overflow-x: hidden; }
.trust-item { display: flex; align-items: center; gap: clamp(3px, 1vw, 5px); font-size: clamp(0.6rem, 2.8vw, 0.85rem); font-weight: 700; color: var(--primary); background: #fffcf2; padding: clamp(3px, 1vw, 5px) clamp(5px, 1.5vw, 12px); border-radius: 20px; border: 1px solid #faedcd; }
.trust-icon-small { font-size: 1.1rem; }

/* Inline Combo Urgency */
.urgency-inside-box { background: #fffdf8; border: 2px dashed rgba(212, 175, 55, 0.5); border-radius: 16px; padding: 15px; margin: 20px 0; width: 100%; max-width: 500px; margin-left: auto; margin-right: auto; }
.urgency-grid-combo { display: flex; flex-direction: column; gap: 15px; align-items: center; }
@media (min-width: 768px) { .urgency-grid-combo { flex-direction: row; justify-content: space-around; } }
.countdown-timer-mini, .stock-alert-mini { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.timer-label-mini { font-weight: 800; color: var(--primary); font-size: 1rem; }
.time-box strong { display: block; font-size: 1.5rem; line-height: 1; }

/* Premium Adjustments */
.premium-card { border: none !important; box-shadow: 0 15px 40px rgba(0,0,0,0.06) !important; background: white !important; }
.premium-shadow { box-shadow: 0 20px 40px -10px rgba(122, 0, 22, 0.15) !important; border: 1px solid rgba(212, 175, 55, 0.3) !important; }
.secure-icon { font-size: 2.5rem; display: block; margin-bottom: -10px; }
.highlighted-total { background: #d90429; color: white; padding: 2px 10px; border-radius: 8px; font-size: 1.3rem; }

/* Lifestyle / Romantic Appeal Section */
.lifestyle-section { padding: 20px 0 60px 0; }
.couple-card {
    display: flex; flex-direction: column; overflow: hidden;
    background: linear-gradient(135deg, #fff9f9 0%, #fff 100%);
    border: 2px solid #ffe3e3; min-height: 400px;
}
@media (min-width: 768px) {
    .couple-card { flex-direction: row; align-items: stretch; }
    .couple-image-wrapper { width: 45%; min-height: 450px; }
    .couple-text { width: 55%; padding: 40px !important; }
}

.couple-image-wrapper { position: relative; height: 320px; overflow: hidden; }
.image-placeholder-box { width: 100%; height: 100%; }
.couple-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.couple-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(122,0,22,0.6) 0%, transparent 60%); }
.overlay-text {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(122, 0, 22, 0.92); color: white; padding: 10px 25px;
    border-radius: 30px; font-weight: bold; font-size: 1rem; z-index: 3;
    white-space: nowrap; border: 2px solid var(--secondary); box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.couple-text { padding: 30px 20px; }
.romantic-title { font-size: clamp(1.8rem, 3vw, 2.2rem); color: var(--primary); margin-bottom: 15px; font-weight: 800; }
.couple-text p { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
.romantic-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.romantic-benefits li { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 600; color: var(--primary-light); }
.romantic-benefits li span { font-size: 1.5rem; }

/* Customer Reviews Section Premium */
.reviews-section { padding: 60px 0; background: linear-gradient(135deg, #fdfbf7, #fff); margin-bottom: 50px; border-top: 1px dashed #eaddc0; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { 
    background: white; padding: 30px 25px; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); position: relative; 
    border: 1px solid rgba(212, 175, 55, 0.15); transition: var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1); }
.quote-icon { position: absolute; top: 10px; right: 20px; font-size: 5rem; color: rgba(212, 175, 55, 0.1); line-height: 1; font-family: Georgia, serif; }
.review-content { position: relative; z-index: 2; min-height: 80px; }
.review-content p { font-style: italic; font-size: 1.05rem; line-height: 1.6; color: #444; margin-bottom: 25px; }
.review-author-area { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f0f0f0; padding-top: 15px; }
.author-avatar { width: 50px; height: 50px; background: var(--secondary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 2px solid white; }
.author-info { display: flex; flex-direction: column; align-items: flex-start; }
.author-info strong { color: var(--primary); font-size: 1.1rem; margin-bottom: 2px; }
.verified-badge { font-size: 0.75rem; color: #10b981; font-weight: 600; margin-bottom: 3px; display: flex; align-items: center; gap: 3px; }
.author-info .stars { font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 0; }

/* Checkout Section */
.checkout-section { padding: 60px 0 100px; }
.checkout-glass-card { background: white; max-width: 600px; margin: 0 auto; padding: 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-top: 8px solid var(--primary); }
.checkout-header { text-align: center; margin-bottom: 25px; }
.secure-icon { font-size: 3rem; margin-bottom: 15px; display: inline-block; }
.checkout-header h3 { font-size: clamp(1.35rem, 5vw, 1.8rem); color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.checkout-header p { font-size: 0.95rem; color: #555; }

.order-bill { background: #fffcf2; padding: 20px; border-radius: 12px; margin-bottom: 30px; border: 1px solid #faedcd; }
.bill-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-muted); font-weight: 500; }
.total-row { margin-top: 15px; padding-top: 15px; border-top: 2px dashed #d4af37; font-weight: 800; color: var(--primary); font-size: 1.3rem; }
.free-text { color: #2a9d8f; font-weight: bold; }

/* Floating Label Form */
.modern-form .input-group { position: relative; margin-bottom: 25px; }
.modern-form input, .modern-form textarea { width: 100%; padding: 15px; border: 2px solid #e9ecef; border-radius: 12px; font-size: 1rem; font-family: inherit; background: transparent; transition: var(--transition); }
.modern-form input:focus, .modern-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(122, 0, 22, 0.1); }
.modern-form label { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); background: white; padding: 0 5px; color: #adb5bd; transition: var(--transition); pointer-events: none; }
.modern-form textarea + label { top: 20px; }
.modern-form input:focus + label, .modern-form input:not(:placeholder-shown) + label,
.modern-form textarea:focus + label, .modern-form textarea:not(:placeholder-shown) + label { top: 0; font-size: 0.85rem; color: var(--primary); font-weight: 700; }

.secure-checkout-badge { text-align: center; margin-bottom: 20px; font-size: 0.9rem; color: #2a9d8f; font-weight: 600; padding: 10px; background: #e8f5e9; border-radius: 8px; }

/* Buttons */
.btn-primary { display: inline-block; background: linear-gradient(135deg, var(--accent) 0%, #128C7E 100%); color: white; padding: clamp(12px, 3vw, 18px) clamp(15px, 4vw, 32px); border-radius: 50px; font-size: clamp(1rem, 4vw, 1.3rem); font-weight: 700; text-decoration: none; text-align: center; border: none; cursor: pointer; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); transition: var(--transition); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }
.banner-btn { background: linear-gradient(135deg, var(--primary) 0%, #d90429 100%); box-shadow: 0 10px 20px rgba(217, 4, 41, 0.3); }
.banner-btn:hover { box-shadow: 0 15px 25px rgba(217, 4, 41, 0.4); }
.full-width { width: 100%; }

/* Premium Footer */
.glass-footer { background: #0f172a; color: #cbd5e1; padding: 40px 0 20px; margin-top: 50px; border-top: 3px solid var(--secondary); font-family: inherit; }
.footer-content { display: flex; flex-direction: column; gap: 30px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }

.footer-brand { text-align: center; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 10px; border: 2px solid var(--secondary); background: white; object-fit: contain; padding: 2px; }
.footer-brand p { font-size: 0.9rem; color: #94a3b8; }

.footer-links-grid { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.contact-info h4, .social-info h4 { font-size: 0.95rem; color: #fff; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }

.phone-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.footer-phone { display: flex; align-items: center; gap: 5px; color: #cbd5e1; font-size: 1.1rem; font-weight: 700; text-decoration: none; transition: 0.3s; padding: 6px 12px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.footer-phone:hover { color: var(--secondary); background: rgba(255,255,255,0.1); border-color: var(--secondary); }

.fb-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #1877F2; color: white; text-decoration: none; padding: 10px 20px; border-radius: 8px; font-weight: bold; font-size: 1rem; transition: 0.3s; width: max-content; margin: 0 auto; }
.fb-button:hover { background: #166fe5; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(24,119,242,0.4); }
.fb-svg-icon { width: 22px; height: 22px; }

.copyright { text-align: center; font-size: 0.85rem; color: #64748b; }

@media (min-width: 768px) {
    .footer-content { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; }
    .footer-brand, .footer-links-grid, .social-info { text-align: left; }
    .footer-links-grid { flex-direction: row; gap: 50px; }
    .phone-list { justify-content: flex-start; flex-direction: column; gap: 8px; }
    .fb-button { margin: 0; }
}

/* Desktop Only / Mobile Only classes */
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 991px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }
}

/* Floating Trust Badge (Desktop) */
.floating-trust-badge { position: fixed; bottom: 30px; left: 30px; z-index: 998; background: white; border: 2px solid var(--secondary); padding: 10px 15px; border-radius: 12px; display: flex; align-items: center; gap: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.floating-trust-badge .trust-icon { font-size: 1.8rem; }
.floating-trust-badge .trust-msg { display: flex; flex-direction: column; }
.floating-trust-badge .trust-msg strong { color: var(--primary); font-size: 0.95rem; line-height: 1.2; }
.floating-trust-badge .trust-msg span { color: #555; font-size: 0.8rem; }

/* Sticky CTA for Mobile */
.sticky-mobile-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: white; padding: 10px 15px 15px; box-shadow: 0 -5px 20px rgba(0,0,0,0.15); z-index: 100; display: flex; flex-direction: column; gap: 8px; transform: translateY(150%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-top: 2px solid var(--secondary); border-radius: 20px 20px 0 0; }
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-super-btn { display: flex; justify-content: center; align-items: center; position: relative; background: linear-gradient(135deg, #d90429, #ff3366); color: white; text-decoration: none; padding: 10px 20px; border-radius: 50px; box-shadow: 0 4px 10px rgba(217,4,41,0.2); width: 100%; }
.sticky-super-btn .btn-content { display: flex; flex-direction: column; align-items: center; }
.sticky-super-btn .btn-title { font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.sticky-super-btn .btn-subtitle { font-size: 0.85rem; font-weight: 600; opacity: 0.95; margin-top: 2px; }
.sticky-super-btn .btn-arrow { position: absolute; right: 20px; font-size: 1.5rem; font-weight: 900; animation: bounceRight 1s infinite alternate; }
.sticky-trust-msg { color: #d90429; font-size: 0.8rem; font-weight: 700; text-align: center; }

@keyframes bounceRight { from { transform: translateX(0); } to { transform: translateX(5px); } }

@media (min-width: 992px) { .sticky-mobile-cta { display: none !important; } }
@media (max-width: 991px) { .desktop-only { display: none !important; } }

/* Details Section Re-style */
.details-section { padding: 60px 0; }
.section-heading { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--primary); margin-bottom: 40px; }
.text-center { text-align: center; }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
.feature-card { padding: 30px; transition: var(--transition); border-top: 4px solid var(--primary); }
.feature-img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.feature-card:hover { transform: translateY(-5px); }
.card-icon { font-size: 2.5rem; margin-bottom: 15px; }
.feature-card h4 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary); font-weight: 800; }
.highlight-card { border-top: 4px solid var(--secondary); }

/* Utilities & Animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.appear { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.pulse-animation { animation: pulse 2s infinite; }
.loader { border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top: 3px solid #fff; width: 24px; height: 24px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
