/* ==========================================================================
   NITRIC BOOST ULTRA - ADVANCED STYLESHEET
   Theme: High-Converting Performance Blue
   Updated: Converted from Green Theme to Blue Theme[cite: 2]
   ========================================================================== */

/* ===== GLOBAL RESETS =====[cite: 2] */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

:root {
  /* === LIGHT THEME BRAND COLORS (UPDATED TO BLUE) ===[cite: 2] */
  --bg-main:         #ffffff; /* Clean White */
  --bg-hero:         #F4F8FB; /* Soft cool blue-grey for hero */
  --bg-light:        #F0F4F8; /* Very soft blue for alternating sections */
  
  --brand-blue:      #0d6efd; /* Trustworthy Strong Blue replacing Green */
  --brand-blue-dark: #0a58ca; /* Darker Blue for hovers */
  --brand-gold:      #FFCC00; /* Bright yellow for review stars */
  --brand-red:       #e74c3c; /* Urgency red */
  --banner-yellow:   #FFF6CC; /* Soft yellow for the urgency banner */
  
  --text-main:       #000000; /* High contrast dark text */
  --text-muted:      #131212; /* Softer text for paragraphs */
  --border-light:    #EAEAEA; /* Subtle borders */

  /* Shadows[cite: 2] */
  --shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md:       0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-btn:      0 4px 15px rgba(13, 110, 253, 0.3); /* Blue shadow */

  /* === TYPOGRAPHY SCALES ===[cite: 2] */
  --f-xs:    0.9rem;
  --f-sm:    1.05rem;
  --f-body:  1.15rem; 
  --f-md:    1.35rem;
  --f-lg:    1.55rem;
  --f-xl:    2.0rem;
  --f-2xl:   2.5rem;
  --f-3xl:   3.2rem;
  --f-price: 3.5rem;
  --lh-body: 1.6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
  padding-bottom: 0px;
}

/* ===== TYPOGRAPHY =====[cite: 2] */
h1 { font-size: var(--f-3xl); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; color: #111; }
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; color: #111; }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3; }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; color: #111; }

p, li { font-size: var(--f-body); line-height: var(--lh-body); margin-bottom: 18px; text-align: left; color: var(--text-muted); }
a { text-decoration: none; color: var(--brand-blue); transition: color 0.3s ease; }
a:hover { color: var(--brand-blue-dark); }

/* ===== UTILITIES =====[cite: 2] */
.section      { padding: 80px 24px; }
.wrap         { padding: 0 15px; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.font-bold    { font-weight: 700; }

.bg-dark      { background: var(--bg-light); color: var(--text-main); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.bg-light     { background: var(--bg-main); color: var(--text-main); }
.text-white   { color: var(--text-main) !important; }
.text-gold    { color: var(--brand-blue) !important; } /* Mapped to Blue */
.text-light-grey { color: var(--text-muted) !important; }

.max-w-900    { max-width: 900px; margin-left: auto; margin-right: auto; width: 100%; }
.max-w-1000   { max-width: 1000px; margin-left: auto; margin-right: auto; width: 100%; }
.max-w-1100   { max-width: 1100px; margin-left: auto; margin-right: auto; width: 100%; }
.mx-auto      { margin-left: auto; margin-right: auto; }
.mt-20        { margin-top: 20px; }
.mt-36        { margin-top: 36px; }
.mb-20        { margin-bottom: 20px; }

.sec-title    { text-align: center; margin-bottom: 15px; color: #111; }
.sec-sub      { text-align: center; font-size: var(--f-md); margin-bottom: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.brand-title  { color: var(--brand-blue); }

/* ===== BLUE CTA BUTTONS =====[cite: 2] */
.btn-cta {
  display: inline-block; 
  background: linear-gradient(to bottom, #0d6efd, #0b5ed7); /* Updated to Blue */
  color: #ffffff !important; 
  padding: 18px 45px; 
  border-radius: 4px;
  font-weight: 800; 
  font-size: var(--f-lg);
  margin-top: 20px;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #084298;
  cursor: pointer;
}
.btn-cta:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4); 
  background: linear-gradient(to bottom, #0b5ed7, #0a58ca);
}
.btn-cta-xl { 
  font-size: 1.4rem;  
  padding: 20px 40px;
  width: 100%;
  max-width: 500px;
}

/* ===== COMPLIANCE & GEO BANNERS =====[cite: 2] */
.geo-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: #111111; color: #ffffff;
    text-align: center; padding: 10px 15px; font-size: var(--f-sm); font-weight: 600;
    z-index: 1050; letter-spacing: 0.5px;
}
.compliance-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #ffffff; border-top: 2px solid var(--border-light);
    color: var(--text-muted); padding: 15px 24px;
    z-index: 9999; display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}
.compliance-content p { margin: 0; font-size: var(--f-xs); line-height: 1.4; text-align: left; }
.btn-accept {
    background: var(--brand-blue); color: #ffffff; border: none;
    padding: 10px 20px; border-radius: 4px; cursor: pointer; font-weight: bold;
    margin-left: 20px; white-space: nowrap; transition: 0.2s;
}
.btn-accept:hover { background: var(--brand-blue-dark); }

.compliance-buttons {
    display: flex; gap: 15px; margin-left: 20px;
}

.btn-reject {
    background: transparent; color: var(--text-muted); border: 1px solid #cccccc;
    padding: 10px 20px; border-radius: 4px; cursor: pointer; font-weight: 600;
    white-space: nowrap; transition: background 0.2s, color 0.2s;
}
.btn-reject:hover { background: #f0f0f0; color: #111111; }

@media (max-width: 600px) {
    .compliance-buttons { flex-direction: column; margin-left: 0; width: 100%; gap: 10px; }
    .btn-reject, .btn-accept { width: 100%; margin-left: 0; text-align: center; }
}

/* ===== NAVIGATION =====[cite: 2] */
nav {
  position: fixed; top: 0px; left: 0; right: 0; 
  z-index: 1000; background: var(--bg-main);
  border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 24px;
}
.nav-logo img { width: auto; height: 50px; } 
.nav-links { display: flex; gap: 30px; list-style: none; margin-bottom: -19px; }
.nav-links a { color: var(--text-main); font-weight: 500; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-blue); }

.btn-nav {
  background: linear-gradient(to bottom, #0d6efd, #0b5ed7); 
  color: #ffffff !important; padding: 12px 30px; border-radius: 4px; 
  font-weight: 700; font-size: var(--f-sm); transition: all .2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-transform: uppercase;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3); }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 30px; height: 3px; background: #111; border-radius: 2px; }

.mob-menu { 
  display: none; flex-direction: column; gap: 18px; 
  padding: 20px 24px; background: var(--bg-main); 
  border-top: 1px solid var(--border-light); 
  position: absolute; top: 100%; left: 0; width: 100%;
  box-shadow: var(--shadow-md);
}
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 600; font-size: var(--f-md); }

/* ===== HERO SECTION =====[cite: 2] */
.hero { 
  padding: 80px 24px 80px; background: var(--bg-hero);
  color: var(--text-main); border-bottom: 1px solid var(--border-light);
}
.hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.hero-img img { width: 100%; max-width: 500px; margin: 0 auto; filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.1)); }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-img { margin-bottom: 30px; }
    .hero-content p { text-align: center; }
    .hero-bullets { display: inline-block; text-align: left; }
    .trust-badge-top { justify-content: center; }
}
.trust-badge-top { font-size: var(--f-sm); color: #111; font-weight: 500; margin-bottom: 15px; display: flex; align-items: center; gap: 8px;}
.trust-badge-top::before { content: "★★★★★"; color: var(--brand-gold); font-size: 1.2rem; letter-spacing: 2px;}

.hero-content h1 span { color: var(--brand-blue); }
.hero-content p { color: var(--text-muted); font-size: var(--f-lg); margin-bottom: 25px; }
.hero-bullets { list-style: none; margin-bottom: 25px; padding-left: 0; }
.hero-bullets li { font-size: var(--f-body); font-weight: 500; margin-bottom: 12px; color: var(--text-main); display: flex; align-items: center; gap: 10px;}

.sale-price { 
    background: var(--banner-yellow); display: inline-block; padding: 8px 20px;
    border-radius: 50px; font-size: var(--f-md); font-weight: 800; color: #111; margin-bottom: 10px; 
}
.stock-alert { font-size: var(--f-sm); color: var(--brand-red); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; }
.pulse-dot { display: inline-block; width: 10px; height: 10px; background: var(--brand-red); border-radius: 50%; margin-right: 10px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); } 70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); } 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); } }

.secure-checkout { font-size: 0.9rem; color: var(--text-muted); margin-top: 15px; font-weight: 500; }

/* ===== BENEFITS BADGES =====[cite: 2] */
.badges-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.badge-card { text-align: center; padding: 35px 20px; border: 1px solid var(--border-light); border-radius: 8px; background: var(--bg-main); transition: all .3s; box-shadow: var(--shadow-sm); }
.badge-card:hover { border-color: var(--brand-blue); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.badge-card img { width: 75px; height: 75px; object-fit: contain; margin: 0 auto 20px; display: block; }
.badge-card h4 { color: #111; margin-bottom: 15px; font-size: var(--f-lg); }
.badge-card p { font-size: 1.05rem; text-align: center; color: var(--text-muted); }

/* ===== TWO COLUMNS =====[cite: 2] */
.two-col { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.image-box img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }

/* ===== INGREDIENTS LIST =====[cite: 2] */
.ing-list { 
    max-width: 1000px; 
    margin: 0 auto; 
    list-style: none; 
    padding-left: 0; 
}

.ing-item { 
    padding: 40px; 
    margin-bottom: 30px; 
    background: var(--bg-main); 
    border-radius: 12px; 
    border: 1px solid var(--border-light); 
    position: relative; 
    display: grid; 
    grid-template-columns: 150px 1fr; 
    gap: 40px; 
    align-items: center; 
    transition: all 0.3s ease; 
    box-shadow: var(--shadow-sm); 
    margin-left: 20px; /* Prevents the absolute number from cutting off */
}

/* Subtle 3D hover effect */
.ing-item:hover { 
    border-color: var(--brand-blue); 
    box-shadow: var(--shadow-md); 
    transform: translateX(5px); 
}

.ing-num { 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)); 
    color: #ffffff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: var(--f-xl); 
    font-weight: 800; 
    position: absolute; 
    left: -25px; 
    top: 30px; 
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.4); 
}

.ing-img { 
    width: 100%; 
    max-width: 150px; 
    border-radius: 50%; 
    border: 3px solid var(--bg-light); 
    margin: 0 auto; 
    transition: transform 0.3s ease;
}

/* Image dynamic hover */
.ing-item:hover .ing-img {
    transform: scale(1.05) rotate(5deg);
}

.ing-content h4 { 
    color: var(--brand-blue); 
    margin-bottom: 15px; 
    font-size: var(--f-xl); 
}

/* === MOBILE RESPONSIVENESS FOR INGREDIENTS === */
@media (max-width: 768px) {
    .ing-item {
        grid-template-columns: 1fr; /* Stacks image on top of text */
        text-align: center;
        padding: 50px 25px 30px;
        margin-left: 0;
        gap: 20px;
    }
    
    .ing-num {
        left: 50%;
        transform: translateX(-50%);
        top: -25px; /* Moves number to the top center on mobile */
    }
    
    .ing-item:hover {
        transform: translateY(-5px); /* Changes hover direction for mobile */
    }
}

/* ===== COMPARISON TABLE =====[cite: 2] */
.comparison-table-wrapper { width: 100%; overflow-x: auto; margin-top: 30px; }
.ranking-table { width: 100%; border-collapse: collapse; background: var(--bg-main); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); min-width: 700px; border: 1px solid var(--border-light); }
.ranking-table th { background: var(--bg-light); color: #111; padding: 22px; text-align: left; font-size: var(--f-lg); border-right: 1px solid var(--border-light); border-bottom: 2px solid var(--border-light); }
.ranking-table td { padding: 20px; border-bottom: 1px solid var(--border-light); font-size: var(--f-body); color: var(--text-main); }
.ranking-table tr:hover { background-color: var(--bg-light); }

td.text-gold { color: var(--brand-blue) !important; font-weight: 800;}
.text-red { color: var(--brand-red); font-weight: 700; }

/* ===== TESTIMONIALS =====[cite: 2] */
.testi-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.testi-card { background: var(--bg-main); border-radius: 8px; padding: 40px; text-align: center; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.stars { font-size: 1.6rem; color: var(--brand-gold); margin-bottom: 10px; letter-spacing: 2px;}
.verified { color: var(--brand-blue); font-weight: 700; font-size: var(--f-sm); margin-bottom: 15px; }
.testi-headline { font-size: var(--f-xl); color: #111; margin-bottom: 15px; font-weight: 800;}
.testi-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; text-align: center;}
.testi-name { font-weight: 700; color: #111; font-size: 1.1rem; }
.testi-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 3px solid var(--brand-blue); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* ===== PRICING PACKAGES =====[cite: 2] */
.pricing-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; text-align: center; }
.p-card { background: var(--bg-main); border-radius: 8px; border: 1px solid var(--border-light); position: relative; overflow: hidden; transition: all .3s; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.p-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.p-card-header { background-color: #D3E4F8; padding: 20px 15px; text-align: center; } /* Adjusted to soft blue */
.p-badge { background-color: #ffffff; color: #111111; font-weight: 700; font-size: 0.85rem; padding: 4px 18px; border-radius: 20px; display: inline-block; margin-bottom: 10px; text-transform: capitalize; }
.p-title { font-size: 1.4rem; font-weight: 800; color: #111111; margin: 0; font-family: 'Poppins', sans-serif; }
.p-card-body { padding: 30px 25px; display: flex; flex-direction: column; flex-grow: 1; }
.p-card-body img { width: 100%; max-width: 220px; margin: 0 auto 20px; transition: transform .3s; }
.p-card-body img:hover { transform: scale(1.05); }

.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.price-left { display: flex; align-items: center; gap: 8px; }
.price-big { font-size: 3rem; font-weight: 800; color: #111111; line-height: 1; }
.price-per { font-size: 0.85rem; color: #888888; line-height: 1.2; text-align: left; font-weight: 500; }
.save-badge { background-color: #FFEA00; color: #111111; font-weight: 800; font-size: 1rem; padding: 8px 12px; }

.retail-price { text-align: left; color: #A0A0A0; font-size: 1.2rem; margin-bottom: 15px; }
.retail-price s { text-decoration: line-through; text-decoration-color: #FF0000; }
.total-bar { background-color: #000000; color: #ffffff; font-weight: 700; font-size: 1.1rem; padding: 12px 25px; text-align: left; margin: 0 -25px 20px -25px; }

.feature-list { list-style: none; padding: 0; margin: 0 0 25px 0; flex-grow: 1; }
.feature-list li { font-size: 1rem; color: #333333; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.p-card-body .btn-cta { width: 100%; margin-top: auto; }
.secure-tag { font-size: 0.85rem; color: #111111; margin-top: 15px; font-weight: 700; text-transform: uppercase; }

/* ===== GUARANTEE & INNER SECTIONS =====[cite: 2] */
.mb-inner { display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; }
.mb-inner img { width: 100%; max-width: 280px; }
.mb-inner h3 { margin-bottom: 20px; font-size: var(--f-2xl); line-height: 1.2; color: #111;}

/* ===== FAQ =====[cite: 2] */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg-main); border-radius: 4px; margin-bottom: 15px; border: 1px solid var(--border-light); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 25px 30px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: var(--f-lg); font-weight: 700; color: #111; transition: background 0.3s; }
.faq-q:hover { background: var(--bg-light); }
.faq-arrow { color: var(--brand-blue); transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 30px; }
.faq-item.open .faq-ans { max-height: 800px; padding: 0 30px 25px; }
.faq-ans p { margin-bottom: 0; color: var(--text-muted); }

/* ===== FOOTER =====[cite: 2] */
footer { background: #111111; color: #E0E0E0; padding: 60px 24px 40px; text-align: center; border-top: 4px solid var(--brand-blue); }
.foot-disc { font-size: 0.9rem; line-height: 1.6; text-align: justify; text-align-last: center; opacity: 0.8; }
.foot-disc p { margin-bottom: 15px; text-align: center; color: #E0E0E0; }
.foot-links { display: flex; justify-content: center; gap: 25px; margin: 30px 0 20px; flex-wrap: wrap; }
.foot-links a { color: #E0E0E0; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }
.foot-links a:hover { color: var(--brand-blue); }
.contact-info a.text-gold { color: var(--brand-blue) !important;}
.foot-copy { font-size: 0.85rem; opacity: 0.6; margin-top: 15px;}

/* ===== RESPONSIVE DESIGN =====[cite: 2] */
@media (max-width: 1024px) {
  :root { --f-body: 1.1rem; --f-md: 1.25rem; --f-lg: 1.4rem; --f-xl: 1.7rem; --f-2xl: 2.1rem; --f-3xl: 2.6rem; --f-price: 2.8rem; }
  .two-col, .mb-inner, .testi-grid { grid-template-columns: 1fr; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .ing-item { grid-template-columns: 1fr; text-align: center; padding: 50px 25px 30px; }
  .ing-num { left: 50%; transform: translateX(-50%); top: -25px; }
  .mb-inner img { margin: 0 auto; }
}

@media (max-width: 600px) {
  :root { --f-body: 1.05rem; --f-md: 1.15rem; --f-lg: 1.25rem; --f-xl: 1.5rem; --f-2xl: 1.8rem; --f-3xl: 2.2rem; --f-price: 2.5rem; }
  nav { position: relative; width: 100%; z-index: 1000; background: var(--bg-main); border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
  .badges-grid { grid-template-columns: 1fr; }
  .btn-cta, .btn-cta-xl { padding: 16px 20px; font-size: var(--f-md); }
  .section { padding: 50px 20px; }
  .foot-disc { text-align: left; text-align-last: left; }
  .compliance-banner { flex-direction: column; gap: 15px; text-align: center; padding: 15px; }
  .btn-accept { margin-left: 0; width: 100%; }
}

/* ===== FINAL CTA SECTION =====[cite: 2] */
.cta-final-section { padding: 60px 24px; background: #F4F8FB; border-top: 2px solid var(--brand-blue); border-bottom: 2px solid var(--brand-blue); }
.cta-final-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.cta-final-img { flex: 0 0 200px; }
.cta-final-img img { width: 100%; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }
.cta-final-content { text-align: left; }
.cta-final-content h2 { font-size: 2.2rem; color: #111; margin-bottom: 15px; }
.cta-final-content p { color: var(--text-muted); margin-bottom: 20px; }

@media (max-width: 768px) {
    .cta-final-inner { flex-direction: column; text-align: center; }
    .cta-final-content { text-align: center; }
    .badges-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
}
@media (max-width: 480px) {
    .badges-container { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CONTACT & LEGAL PAGES STYLES =====[cite: 2] */
.contact-wrap { max-width: 1100px; margin: 120px auto 80px; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-box { background: #F0F4F8; padding: 40px; border-radius: 8px; border: 1px solid var(--brand-blue); }
.contact-info-box h2 { font-size: 2rem; margin-bottom: 15px; color: #111; }
.contact-info-box p { font-size: 1.05rem; color: #444; margin-bottom: 25px; }
.info-block { margin-bottom: 20px; }
.info-block strong { display: block; color: var(--brand-blue); font-size: 1.1rem; margin-bottom: 5px; }

.contact-form { background: var(--bg-main); padding: 40px; border-radius: 8px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #111; font-size: 0.95rem; }
.form-control { width: 100%; padding: 14px 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; font-family: 'Poppins', sans-serif; transition: border-color 0.3s; }
.form-control:focus { border-color: var(--brand-blue); outline: none; }
textarea.form-control { resize: vertical; min-height: 120px; }

.legal-wrap { max-width: 900px; margin: 120px auto 80px; padding: 0 24px; }
.legal-wrap h1 { font-size: 2.5rem; margin-bottom: 10px; text-align: center; color: #111; }
.legal-update { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 15px; color: var(--brand-blue); text-transform: uppercase; border-bottom: 1px solid var(--border-light); padding-bottom: 10px; }
.legal-content p { font-size: 1.05rem; color: #444; margin-bottom: 20px; line-height: 1.8; text-align: left; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; }
.legal-content li { font-size: 1.05rem; color: #444; margin-bottom: 10px; text-align: left; line-height: 1.6; }

@media (max-width: 768px) { 
    .contact-wrap { grid-template-columns: 1fr; margin-top: 100px; } 
    .legal-wrap { margin-top: 100px; }
}

/* ==========================================================================
   PRICING SECTION (MATCHING SCREENSHOT PERFECTLY)
   ========================================================================== */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: flex-end; /* Keeps bottom aligned naturally */
    margin-top: 50px;
}

.p-card {
    width: 310px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.popular-card {
    width: 340px;
    border: 2px solid #113654; /* Dark blue border like image */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-15px); /* Popped out effect */
    z-index: 2;
}

/* Card Headers */
.p-card-header {
    padding: 15px;
    text-align: center;
}

.bg-grey { background-color: #eef2f5; color: #333; }
.bg-dark-blue { background-color: #113654; color: #fff; }

.p-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Card Body */
.p-card-body {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.bg-white { background-color: #ffffff; }
.bg-cream { background-color: #fbf8e2; } /* Image exact cream color */

.package-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1a4f7b; /* Dark blue font */
    margin-bottom: 2px;
    line-height: 1.1;
}

.supply-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.p-card-body img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

/* Price Formatting */
.price-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #113654; /* Dark blue price text */
    margin-bottom: 15px;
}

.currency {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 8px;
}

.price-big {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -3px;
}

.per-jar {
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    line-height: 1.1;
    margin-top: auto;
    margin-bottom: 5px;
    margin-left: 5px;
}

/* Pill Badges (For Features) */
.pill-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
}

.pill {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 20px;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bg-red { background-color: #e53935; }
.bg-blue { background-color: #1976d2; }
.bg-gold { background-color: #e6910a; }

.check-circle {
    background: #fff;
    color: #113654;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
}

/* Save Text & Button */
.save-text {
    color: #ff0000;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.btn-buy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 90%;
    background-color: #00b84a; /* Image exact Green */
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 184, 74, 0.4);
    transition: transform 0.2s, background 0.2s;
    border-bottom: 4px solid #008a37; /* 3D bottom effect */
    margin-bottom: 15px;
}

.btn-buy:hover {
    background-color: #00cc52;
    transform: translateY(-2px);
}

.btn-buy .arrow {
    font-size: 1.3rem;
    font-weight: 900;
}

.pay-icons {
    max-width: 140px !important;
    margin-bottom: 15px !important;
}

/* Bottom Price Section (Red Strikethrough) */
.bottom-price {
    font-size: 1.3rem;
    color: #333;
    margin-top: auto;
}

.old-price s {
    color: #888; /* Grey text */
    text-decoration-color: #ff0000; /* Red strikethrough line */
    text-decoration-thickness: 2px;
}

.new-price {
    font-weight: 900;
    font-size: 1.4rem;
}

.shipping-text {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Fallbacks */
@media (max-width: 992px) {
    .pricing-grid { 
        flex-direction: column; 
        align-items: center; 
    }
    .popular-card { 
        transform: none; 
        width: 320px; 
    }
}