/* =========================================
   ICE MAN RECOVERY - MASTER STYLESHEET
   Table of Contents:
   1. Variables & Resets
   2. Typography & Utilities
   3. Layout Structure
   4. Header & Navigation
   5. Buttons & Forms
   6. Cards & UI Components
   7. Package Colors
   8. Page Specifics (Hero, Benefits, Dashboard, Modals)
   9. Sexy Fire & Ice Footer
  10. E-Commerce Shop & Filters
   ========================================= */

/* =========================================
   1. VARIABLES & RESETS
   ========================================= */
:root {
    /* Brand Colors */
    --ice-blue: #0A84C6;
    --ice-blue-hover: #076496;
    --heat-red: #D32F2F;
    --dark-bg: #111111;
    --dark-surface: #1A1A1A;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-grey: #E0E0E0;
    --text-main: #333333;
    --text-muted: #666666;

    /* Package Colors */
    --pkg-single: white;
    --pkg-blue: #0A84C6;
    --pkg-red: #D32F2F;
    --pkg-silver: #A9A9A9;
    --pkg-bronze: #CD7F32;
    --pkg-copper: #B87333;
    --pkg-platinum: #E5E4E2;
    --pkg-gold: #D4AF37;
    --pkg-diamond: #B9F2FF;

    /* Layout & UI */
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--ice-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--ice-blue-hover);
}

ul {
    list-style: none;
}

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 15px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-dark { color: var(--dark-bg); }
.text-muted { color: var(--text-muted); }

/* Package Text Utilities */
.text-blue { color: var(--pkg-blue); }
.text-red { color: var(--pkg-red); }
.text-silver { color: var(--pkg-silver); }
.text-bronze { color: var(--pkg-bronze); }
.text-copper { color: var(--pkg-copper); }
.text-platinum { color: var(--pkg-platinum); }
.text-gold { color: var(--pkg-gold); }
.text-diamond { color: var(--pkg-diamond); text-shadow: 0 0 8px rgba(185, 242, 255, 0.4); }

.font-bold { font-weight: 700; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mt-auto { margin-top: auto; }

/* =========================================
   3. LAYOUT STRUCTURE
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.bg-off-white {
    background-color: var(--off-white);
}

/* Responsive CSS Grid */
.grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
.main-navbar {
    background-color: rgba(10, 10, 10, 0.9); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.brand-logo img {
    height: 80px;
    display: block;
    margin: 0; 
    animation: cinematicLogoReveal 1.2s ease-out forwards;
    transition: filter 1.5s ease-in-out, transform 0.4s ease-in-out;
}

@keyframes cinematicLogoReveal {
    0% { opacity: 0; transform: scale(0.85) translateY(-15px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.logo-glow-blue { filter: drop-shadow(0 0 8px rgba(7, 100, 150, 1.0)) drop-shadow(0 0 25px rgba(10, 132, 198, 0.9)) drop-shadow(0 0 40px rgba(10, 132, 198, 0.7)); }
.logo-glow-red { filter: drop-shadow(0 0 8px rgba(160, 20, 20, 1.0)) drop-shadow(0 0 25px rgba(211, 47, 47, 0.9)) drop-shadow(0 0 40px rgba(211, 47, 47, 0.7)); }

.brand-logo a:hover img {
    transform: scale(1.08) translateY(-2px); 
    filter: drop-shadow(0 8px 15px rgba(10, 132, 198, 0.7)) !important; 
}

.nav-links {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 10, 10, 0.9); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    padding: 20px 0;
    z-index: 999;
}

.nav-links.active { display: flex; }

.nav-links a {
    color: #cccccc;
    font-weight: 600;
    padding: 10px 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--white);
    text-shadow: 0 0 15px rgba(10, 132, 198, 0.8);
}

.menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
    position: absolute;
    right: 20px; 
}

@media (min-width: 1200px) {
    .nav-container { justify-content: space-between; }
    .menu-toggle { display: none; }
    .nav-links {
        display: flex;
        background: transparent !important;
        backdrop-filter: none;
        border: none;
        position: static;
        flex-direction: row;
        width: auto;
        box-shadow: none;
        padding: 0;
        align-items: center;
        gap: 20px;
        margin-right: 20px;
    }
}

/* =========================================
   5. BUTTONS & FORMS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary { background-color: var(--ice-blue); color: var(--white); }
.btn-primary:hover { background-color: var(--ice-blue-hover); color: var(--white); }
.btn-secondary { background-color: var(--heat-red); color: var(--white); }
.btn-outline { background-color: transparent; border: 2px solid var(--ice-blue); color: var(--ice-blue); }
.btn-outline:hover { background-color: var(--ice-blue); color: var(--white); }
.btn-outline-red { background-color: transparent; border: 2px solid var(--heat-red); color: var(--heat-red); }
.btn-outline-red:hover { background-color: var(--heat-red); color: var(--white); }
.btn-outline-o2 { background-color: transparent; border: 2px solid #00E5FF; color: #00E5FF }
.btn-outline-o2:hover { background-color: #00E5FF; color: var(--white); }
.btn-outline-white { background-color: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background-color: var(--white); color: var(--dark-bg); }


.btn-block { display: block; width: 100%; }

/* Custom White Button */
.btn-white {
    background-color: var(--white);
    color: var(--dark-bg);
    border: 2px solid var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--dark-bg); }
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--ice-blue);
    box-shadow: 0 0 0 3px rgba(10, 132, 198, 0.2);
}

/* POPIA Toggle Switch */
.toggle-wrapper { align-items: center; gap: 10px; }
.switch { position: relative; display: inline-block; width: 50px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc; transition: .4s; border-radius: 34px;
}
.slider:before {
    position: absolute; content: ""; height: 16px; width: 16px;
    left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--ice-blue); }
input:checked + .slider:before { transform: translateX(26px); }

/* =========================================
   6. CARDS & UI COMPONENTS
   ========================================= */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 25px;
    border: 1px solid var(--light-grey);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.card-title { font-size: 1.25rem; margin-bottom: 10px; }
.card-price { font-size: 1.8rem; font-weight: 700; color: var(--ice-blue); margin-bottom: 15px; }

.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-img-header { width: 100%; height: 180px; overflow: hidden; }
.card-img-header img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-card:hover .card-img-header img { transform: scale(1.05); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex: 1; }

/* =========================================
   7. PACKAGE SPECIFIC COLORS & BORDERS
   ========================================= */
.pkg-single-dark { border-top-color: var(--white); }
.pkg-single { border-top-color: var(--pkg-single); }
.pkg-blue { border-color: var(--pkg-blue); border-top-color: var(--pkg-blue); }
.pkg-red { border-color: var(--pkg-red); border-top-color: var(--pkg-red); }
.pkg-silver { border-color: var(--pkg-silver); border-top-color: var(--pkg-silver); }
.pkg-bronze { border-color: var(--pkg-bronze); border-top-color: var(--pkg-bronze); }
.pkg-copper { border-color: var(--pkg-copper); border-top-color: var(--pkg-copper); }
.pkg-platinum { border-color: var(--pkg-platinum); border-top-color: var(--pkg-platinum); border: 1px solid rgba(229, 228, 226, 0.4); }
.pkg-gold { border-color: var(--pkg-gold); border-top-color: var(--pkg-gold); border: 1px solid rgba(212, 175, 55, 0.4); }
.pkg-diamond { 
    border-color: var(--pkg-diamond); 
    border-top-color: var(--pkg-diamond); 
    border: 2px solid rgba(185, 242, 255, 0.6); 
    box-shadow: 0 8px 25px rgba(185, 242, 255, 0.15);
    transform: translateY(-5px); 
}

/* =========================================
   8. PAGE SPECIFICS (CINEMATIC CAROUSEL HERO)
   ========================================= */
.hero-carousel { position: relative; width: 100%; min-height: 85vh; overflow: hidden; background-color: var(--dark-bg); }
.hero-slide {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; background-size: cover;
    background-position: top 10% right 15%; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 45%, rgba(17,17,17,0) 100%); z-index: 1;
}
.hero-slide .container { display: flex; justify-content: flex-start; position: relative; z-index: 2; width: 100%; }
.hero-content { text-align: left; padding: 40px 15px; margin: 0; }
.hero-content h1, .hero-content .hero-sub, .hero-content .hero-buttons, .hero-content .hero-quote { max-width: 650px; }
.hero-content h1 {
    font-size: 4rem; line-height: 1.1; margin-bottom: 15px; text-transform: uppercase;
    color: var(--white); text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.hero-content .text-glow { color: var(--ice-blue); text-shadow: 0 0 20px rgba(10, 132, 198, 0.7); }
.hero-content .text-glow-red { color: var(--heat-red); text-shadow: 0 0 20px rgba(211, 47, 47, 0.7); }
.hero-content .hero-sub { font-size: 1.3rem; color: var(--white); letter-spacing: 2px; margin-bottom: 30px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.hero-buttons { display: flex; gap: 15px; justify-content: flex-start; flex-wrap: wrap; }
.hero-buttons .btn { padding: 15px 30px; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.hero-buttons .btn-primary { box-shadow: 0 0 20px rgba(10, 132, 198, 0.4); }

@media (max-width: 767px) {
    .hero-carousel { min-height: 90vh; }
    .hero-slide { background-position: top 10% center; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.9) 50%, rgba(17,17,17,1) 100%); }
    .hero-slide .container { justify-content: center; }
    .hero-content { text-align: center; margin-top: 150px; padding: 20px 15px 80px 15px; width: 100%; }
    .hero-content h1 { font-size: 2.6rem; margin-bottom: 10px; }
    .hero-content .hero-sub { font-size: 1rem; margin-bottom: 20px; }
    .hero-content h1, .hero-content .hero-sub, .hero-content .hero-buttons, .hero-content .hero-quote { max-width: 100%; }
    .hero-buttons { flex-direction: column; justify-content: center; }
    .hero-buttons .btn { width: 100%; }
}

.inline-heading { display: flex; align-items: center; flex-wrap: nowrap; gap: 12px; }
.inline-heading img { display: block; max-height: 1.2em; width: auto; margin-top: 5px; }
@media (max-width: 767px) { .inline-heading { justify-content: center; } }

/* 3D RUBIK'S CUBE ANIMATION */
.cube-container { display: flex; justify-content: center; align-items: center; perspective: 1200px; padding: 60px 0; }
.rubiks-cube { width: 280px; height: 280px; position: relative; transform-style: preserve-3d; animation: spinCube 20s infinite linear; }
.cube-face { width: 280px; height: 280px; border: 2px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 30px rgba(10, 132, 198, 0.3); overflow: hidden; border-radius: 10px; position: absolute; }
.cube-face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cube-front  { transform: rotateY(  0deg) translateZ(140px); }
.cube-right  { transform: rotateY( 90deg) translateZ(140px); }
.cube-back   { transform: rotateY(180deg) translateZ(140px); }
.cube-left   { transform: rotateY(-90deg) translateZ(140px); }
.cube-top    { transform: rotateX( 90deg) translateZ(140px); background: linear-gradient(135deg, var(--ice-blue), black); }
.cube-bottom { transform: rotateX(-90deg) translateZ(140px); background: linear-gradient(135deg, var(--heat-red), black); }

@keyframes spinCube {
    0% { transform: rotateX(25deg) rotateZ(15deg) rotateY(0deg); }
    100% { transform: rotateX(-25deg) rotateZ(15deg) rotateY(360deg); }
}

@media (max-width: 767px) {
    .rubiks-cube, .cube-face { width: 200px; height: 200px; }
    .cube-front  { transform: rotateY(  0deg) translateZ(100px); }
    .cube-right  { transform: rotateY( 90deg) translateZ(100px); }
    .cube-back   { transform: rotateY(180deg) translateZ(100px); }
    .cube-left   { transform: rotateY(-90deg) translateZ(100px); }
    .cube-top    { transform: rotateX( 90deg) translateZ(100px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(100px); }
    .cube-container { padding: 20px 0 40px 0; }
    .benefits-content { text-align: center; }
}

.premium-benefits-section { background-color: var(--dark-surface); color: var(--white); position: relative; }
.premium-benefits-section h2 { color: var(--white); font-size: 2.5rem; text-transform: uppercase; }
.text-light-muted { color: #A0A0A0; font-size: 1.1rem; letter-spacing: 0.5px; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1000px; margin: 40px auto 0; }
.benefit-item-ice {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 15px 25px;
    border-radius: 50px; display: flex; align-items: center; font-weight: 600; font-size: 1.05rem;
    color: var(--white); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: default;
}
.benefit-item-fire {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 15px 25px;
    border-radius: 50px; display: flex; align-items: center; font-weight: 600; font-size: 1.05rem;
    color: var(--white); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: default;
}

.benefit-item-ice:hover { background: rgba(10, 132, 198, 0.1); border-color: var(--ice-blue); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(10, 132, 198, 0.2); }
.benefit-item-fire:hover { background: rgba(255, 0, 0, 0.1); border-color: var(--heat-red); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2); }

.check-icon { background: var(--heat-red); color: var(--white); width: 28px; height: 28px; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; margin-right: 15px; font-size: 0.85rem; box-shadow: 0 0 10px var(--heat-red); }
.check-icon-ice { background-image: url('../img/icons/ice-icon.webp'); background-size: contain; background-repeat: no-repeat; color: var(--white); width: 28px; height: 28px; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; margin-right: 15px; font-size: 0.85rem; box-shadow: 0 0 10px var(--ice-blue); }
.check-icon-fire { background-image: url('../img/icons/fire-icon.webp'); background-size: contain; background-repeat: no-repeat; color: var(--white); width: 28px; height: 28px; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; margin-right: 15px; font-size: 0.85rem; box-shadow: 0 0 10px var(--heat-red); }

/* Dashboard / Profile / Admin */
.dashboard-layout { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
.sidebar { background: var(--off-white); padding: 20px; border-radius: var(--border-radius); }
.sidebar-menu li a { display: block; padding: 10px; color: var(--text-main); border-bottom: 1px solid var(--light-grey); }
.sidebar-menu li a:hover, .sidebar-menu li a.active { color: var(--ice-blue); font-weight: 600; border-bottom-color: var(--ice-blue); }
.dashboard-content { flex: 1; }
@media (min-width: 992px) { .dashboard-layout { flex-direction: row; } .sidebar { width: 250px; flex-shrink: 0; } }

/* Data Tables */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
table th, table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--light-grey); }
table th { background-color: var(--off-white); color: var(--dark-bg); font-weight: 600; }

/* Modals */
#modal-body { width: 100%; }
#modal-body iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; display: block; margin: 0 auto; border-radius: var(--border-radius); }
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
.modal.show { display: flex; justify-content: center; align-items: center; }
.modal-content { background-color: var(--white); padding: 30px; border-radius: var(--border-radius-lg); width: 90%; max-width: 600px; position: relative; box-shadow: var(--shadow-lg); animation: modalSlideIn 0.3s ease-out forwards; }
@keyframes modalSlideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--text-muted); z-index: 10; background: var(--white); border-radius: 50%; width: 30px; height: 30px; display: flex; justify-content: center; align-items: center; }
.close-btn:hover { color: var(--heat-red); }

/* =========================================
   9. SEXY FIRE & ICE FOOTER
   ========================================= */
.fire-accent-footer { background-color: #111111; color: var(--white); position: relative; padding-top: 60px; margin-top: 60px; }
.fire-accent-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--ice-blue) 0%, var(--heat-red) 50%, #FF5722 80%, #FF9800 100%); box-shadow: 0 0 15px rgba(255, 87, 34, 0.4); }
.footer-grid { display: grid; gap: 40px; padding-bottom: 40px; }
@media (min-width: 768px) { .footer-grid.grid-3 { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-logo { height: 65px; filter: drop-shadow(0 0 8px rgba(255,255,255,0.1)); }
.fire-accent-footer h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 12px; }
.fire-accent-footer a { color: var(--light-grey); text-decoration: none; transition: all 0.3s ease; }
.fire-accent-footer a:hover { color: #FF5722; text-shadow: 0 0 8px rgba(255, 87, 34, 0.5); padding-left: 5px; }
.footer-contact p { color: var(--light-grey); margin-bottom: 10px; font-size: 0.95rem; }
.social-icons a { display: inline-block; margin-right: 15px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.footer-bottom { padding: 20px 0; text-align: center; background-color: #080808; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-bottom p { margin-bottom: 5px; font-size: 0.85rem; color: #888888; }
.developer-credit a { color: var(--ice-blue); }
.developer-credit a:hover { color: var(--ice-blue-hover); text-shadow: none; padding-left: 0; }

/* =========================================
   10. E-COMMERCE SHOP & FILTERS
   ========================================= */
.shop-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; align-items: center; background: var(--white); padding: 15px 25px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); margin-bottom: 30px; border: 1px solid var(--light-grey); }
.filter-group { display: flex; gap: 10px; }
.filter-btn { background: transparent; border: none; padding: 8px 16px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-radius: 20px; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--ice-blue); color: var(--white); }
.sort-group label { font-weight: 600; margin-right: 10px; color: var(--dark-bg); }

/* Dark Package Cards & New Color Badges */
.dark-pkg { background-color: var(--dark-bg); color: var(--white); border: 1px solid var(--text-muted); position: relative; padding-top: 40px; }
.pkg-badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%); padding: 5px 30px; font-weight: 700; font-size: 1.1rem; letter-spacing: 2px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }

.pkg-single-dark .pkg-badge { background: var(--white); color: var(--dark-bg);}
.badge-blue { background: var(--ice-blue); color: #fff; }
.badge-red { background: var(--heat-red); color: #fff; }
.badge-silver { background: linear-gradient(135deg, #e0e0e0, #888888); color: #111; }
.badge-bronze { background: linear-gradient(135deg, #CD7F32, #8B4513); color: #111; }
.badge-copper { background: linear-gradient(135deg, #B87333, #e59955); color: #fff; }
.badge-platinum { background: linear-gradient(135deg, #E5E4E2, #ffffff); color: #111; box-shadow: 0 0 10px rgba(229, 228, 226, 0.5); }
.badge-gold { background: linear-gradient(135deg, #F3E5AB, #D4AF37); color: #111; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
.badge-diamond { background: linear-gradient(135deg, #B9F2FF, #ffffff); color: #111; box-shadow: 0 0 15px rgba(185, 242, 255, 0.8); }

.pkg-single-dark .pkg-title { color: var(--white); }
.pkg-title { font-size: 1.6rem; margin-bottom: 5px; text-align: center; color: var(--white); }
.pkg-single-dark .pkg-price { color: var(--white); }
.pkg-price { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.pkg-subtitle { text-align: center; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 15px; margin-bottom: 15px; }
.pkg-features { font-size: 0.95rem; margin-bottom: 20px; }
.pkg-features li { margin-bottom: 8px; align-items: flex-start; }
.pkg-features span { margin-right: 10px; font-size: 1.1rem; }

/* Metallic Check Icons */
.check-blue { color: var(--ice-blue); }
.check-red { color: var(--heat-red); }
.check-silver { color: #A9A9A9; }
.check-bronze { color: #CD7F32; }
.check-copper { color: #B87333; }
.check-platinum { color: #E5E4E2; }
.check-gold { color: #D4AF37; }
.check-diamond { color: #B9F2FF; }

.pkg-target { font-size: 0.8rem; text-align: center; font-weight: 700; color: var(--ice-blue); margin-bottom: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.2); }

/* =========================================
   11. HOMEPAGE PREMIUM OVERHAUL (DARK THEME)
   ========================================= */
.ticker-tape { background: linear-gradient(90deg, var(--ice-blue) 0%, #054a70 100%); color: var(--white); padding: 12px 0; overflow: hidden; white-space: nowrap; font-weight: 800; font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase; box-shadow: 0 0 20px rgba(10, 132, 198, 0.4); position: relative; z-index: 10; }
.ticker-tape p { display: inline-block; margin: 0; padding-left: 100%; animation: scrollTicker 25s linear infinite; }
@keyframes scrollTicker { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }

.bg-dark-section { background-color: var(--dark-bg); color: var(--white); }
.bg-dark-section h2 { color: var(--white); }

.service-card-premium { background: linear-gradient(145deg, #1a1a1a, #0a0a0a); border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.8); color: var(--white); overflow: hidden; border-radius: var(--border-radius-lg); transition: all 0.4s ease; display: flex; flex-direction: column; height: 100%; }
.service-card-premium:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(10, 132, 198, 0.3); }
.service-card-premium .card-img-header { position: relative; }
.service-card-premium .card-img-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, transparent, #1a1a1a); }
.service-card-premium .card-title { color: var(--white); font-size: 1.5rem; margin-top: 5px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.service-card-premium .text-muted { color: #aaaaaa; }

/* =========================================
   12. INTERACTIVE CARD EFFECTS (COLOR BURST & GLOW)
   ========================================= */
.service-card-premium .card-img-header { height: 200px; background-color: #080808; }
.service-card-premium .card-img-header img { object-fit: contain; padding: 25px; filter: grayscale(100%) contrast(120%); transition: all 0.5s ease-in-out; }
.service-card-premium:hover .card-img-header img, .service-card-premium.in-view .card-img-header img { filter: grayscale(0%) contrast(100%); transform: scale(1.1); }

.glow-ice:hover, .glow-ice.in-view { border-color: var(--ice-blue); box-shadow: 0 15px 40px rgba(10, 132, 198, 0.5); }
.glow-fire:hover, .glow-fire.in-view { border-color: var(--heat-red); box-shadow: 0 15px 40px rgba(211, 47, 47, 0.5); }
.glow-oxygen:hover, .glow-oxygen.in-view { border-color: #00E5FF; box-shadow: 0 15px 40px rgba(0, 229, 255, 0.4); }
.glow-iv:hover, .glow-iv.in-view { border-color: #FFFFFF; box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4); }

/* =========================================
   13. PRICING TEASER & SOCIAL PROOF
   ========================================= */
.pricing-teaser-card { background: linear-gradient(145deg, #111, #0a0a0a); border: 1px solid rgba(255,255,255,0.1); padding: 40px 30px; border-radius: var(--border-radius-lg); text-align: center; transition: all 0.3s ease; }
.pricing-teaser-card:hover { border-color: var(--ice-blue); transform: translateY(-5px); }
.social-proof-box { background: linear-gradient(135deg, rgba(10, 132, 198, 0.1), transparent); border-left: 4px solid var(--ice-blue); padding: 40px; border-radius: var(--border-radius); text-align: center; margin: 40px auto; max-width: 800px; }
.social-proof-box2 { background: linear-gradient(135deg, rgba(10, 132, 198, 0.1), transparent); border-left: 4px solid var(--heat-red); padding: 40px; border-radius: var(--border-radius); text-align: center; margin: 40px auto; max-width: 800px; }
.social-proof-box p, .social-proof-box2 p { font-size: 1.4rem; font-style: italic; color: var(--white); line-height: 1.6; }

/* =========================================
   14. FLOATING ACTION BUTTON (FAB)
   ========================================= */
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; }
.fab-menu { display: flex; flex-direction: column; gap: 15px; margin-bottom: 15px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
.fab-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-item { background: var(--dark-bg); color: var(--white); padding: 12px 25px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; box-shadow: 0 4px 15px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 10px; border: 1px solid var(--ice-blue); white-space: nowrap; }
.fab-item:hover { background: var(--ice-blue); color: var(--white); }
.fab-item.whatsapp { border-color: #25D366; color: #25D366; }
.fab-item.whatsapp:hover { background: #25D366; color: var(--dark-bg); }
.fab-toggle { width: 65px; height: 65px; background: var(--ice-blue); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; cursor: pointer; box-shadow: 0 4px 20px rgba(10, 132, 198, 0.6); border: none; transition: transform 0.3s ease, background 0.3s ease; }
.fab-toggle.active { transform: rotate(45deg); background: var(--heat-red); box-shadow: 0 4px 20px rgba(211, 47, 47, 0.6); }

@media (max-width: 767px) {
    .fab-container { bottom: 20px; right: 20px; }
    .social-proof-box { padding: 25px; }
    .social-proof-box2 { padding: 25px; }
    .social-proof-box p { font-size: 1.1rem; }
    .social-proof-box2 p { font-size: 1.1rem; }
}

/* =========================================
   15. QUOTE BUILDER CARDS & RESPONSIVE GRID
   ========================================= */
    .quote-builder-card {
        background: #ffffff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        margin: 10px 0;
        border-left: 4px solid var(--ice-blue); /* Keeps the branding clean */
    }
    
    .responsive-grid {
        display: grid;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    /* Mobile First: Everything stacks by default */
    .responsive-grid.cols-3, 
    .responsive-grid.cols-2 { 
        grid-template-columns: 1fr; 
    }
    .responsive-grid.cols-4 { 
        grid-template-columns: 1fr 1fr; /* 2 columns for credits on mobile saves space */
    }

    /* Tablet & Desktop */
    @media (min-width: 768px) {
        .responsive-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
        .responsive-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
        .responsive-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    }
    
    .quote-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
