:root {
--primary: #FFC651;
--secondary: #FFEABE;
--accent: #FF0266;
--text-primary: #212121;
--text-secondary: #666;
--background: #fdfaf5;
--surface: #ffffff;
--shadow: rgba(0, 0, 0, 0.1);
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background-color: var(--background);
color: var(--text-primary);
}

nav {
background: var(--primary);
padding: 16px 40px;
display: flex;
justify-content: center;
gap: 32px;
position: sticky;
top: 0;
z-index: 100;
}

nav a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 1rem;
transition: opacity 0.3s ease;
}

nav a:hover {
opacity: 0.7;
}

.hero {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 80px 40px 60px;
position: relative;
overflow: hidden;
background: var(--background);
min-height: 600px; /* ← this is the line that sets the minimum height */
}

.hero::before {
content: "";
position: absolute;
right: -100px;
top: -80px;
width: 600px;
height: 700px;
background: var(--primary);
border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%;
z-index: 0;
opacity: 0.15;
}

.hero-text {
flex: 1;
padding: 20px;
z-index: 1;
}

.hero-text h1 {
font-size: 3rem;
margin-bottom: 20px;
color: #FFA000;
}

.hero-text p {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 40px;
max-width: 500px;
}

.hero-text button {
background-color: var(--accent);
color: white;
padding: 14px 36px;
border: none;
border-radius: 50px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}

.hero-text button:hover {
background-color: #e91e63;
}

.hero-img {
flex: 1;
padding: 5px;
text-align: center;
z-index: 1;
min-width: 300px;
}

.hero-img img {
max-width: 800px;
width: 100%;
}

section {
scroll-margin-top: 80px;
}


.promo-banner {
background: linear-gradient(90deg, #00c6ff, #0072ff);
color: #fff;
text-align: center;
padding: 12px 20px;
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
font-size: 1.1rem;
font-weight: 600;
letter-spacing: 0.5px;
box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
animation: fadeIn 0.8s ease-out;
}

.promo-text {
animation: pulse 1.5s infinite;
}

@keyframes fadeIn {
from {opacity: 0; transform: translateY(-10px);}
to {opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
0%, 100% {opacity: 1;}
50% {opacity: 0.7;}
}




/* Pricing Section */
.pricing-section {
text-align: center;
padding: 80px 20px;
background: #f9fbfd;
display: flex;
flex-direction: column;
align-items: center;
}

.section-title {
font-size: 2.2rem;
color: #111;
margin-bottom: 10px;
}

.section-subtitle {
color: #555;
margin-bottom: 50px;
font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
max-width: 1000px;
}

/* Pricing Boxes */
.pricing-box {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
padding: 30px;
width: 230px;
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
cursor: pointer;
position: relative;
}

.pricing-box:hover {
transform: translateY(-8px) scale(1.03);
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
}

.pricing-box h3 {
margin-bottom: 10px;
color: #0072ff;
font-size: 1.2rem;
}

.price {
font-size: 1.8rem;
font-weight: 700;
color: #111;
}

.price span {
font-size: 0.9rem;
color: #777;
}

.deal {
background: #e8f3ff;
padding: 6px 10px;
border-radius: 8px;
color: #0072ff;
font-weight: 500;
display: inline-block;
margin: 10px 0 20px;
}

.highlight {
border: 2px solid #0072ff;
transform: scale(1.05);
}

.selected {
background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
}

.badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: #ffcc00;
color: #000;
font-weight: 600;
font-size: 0.8rem;
padding: 5px 10px;
border-radius: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Add-Ons */
.addons {
margin-top: 60px;
background: #fff;
padding: 30px 40px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
width: fit-content;
}

.addons h4 {
color: #0072ff;
margin-bottom: 15px;
font-size: 1.3rem;
}

.addons ul {
list-style: none;
padding: 0;
margin: 0;
color: #444;
text-align: left;
}

.addons li {
margin: 8px 0;
font-size: 0.95rem;
}














/* 🔹 Popup Overlay */
.popup {
display: none;
position: fixed;
inset: 0;
background-color: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
z-index: 1000;
animation: fadeIn 0.3s ease-in-out;
overflow: hidden;
}

/* 🔹 Popup Content (scrollable) */
.popup-content {
background: #fff;
padding: 30px;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
width: 90%;
max-width: 420px;
max-height: 90vh;
overflow-y: auto;
animation: slideUp 0.3s ease-in-out;
scrollbar-width: thin;
scrollbar-color: #0072ff #f0f0f0;
}

/* Scrollbar for Chrome/Safari */
.popup-content::-webkit-scrollbar {
width: 6px;
}
.popup-content::-webkit-scrollbar-thumb {
background: #0072ff;
border-radius: 3px;
}
.popup-content::-webkit-scrollbar-track {
background: #f0f0f0;
}

/* Headings */
.popup-content h3 {
margin-bottom: 20px;
font-size: 1.5rem;
color: #0072ff;
text-align: center;
}

.popup-content h4 {
margin: 25px 0 10px;
font-size: 1.1rem;
color: #0072ff;
}

/* Inputs */
.popup-content input,
.popup-content select {
width: 100%;
padding: 12px;
margin-bottom: 18px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1rem;
box-sizing: border-box;
}











.addons-options,
.checkboxes {
background: #f9fbfd;
padding: 14px;
border-radius: 8px;
margin-bottom: 20px;
}

/* label = checkbox + text in one line */
.addons-options label,
.checkboxes label {
display: inline-block;
font-size: 0.95rem;
color: #333;
margin-bottom: 10px;
cursor: pointer;
white-space: normal;
}

/* checkbox itself */
.addons-options input[type="checkbox"],
.checkboxes input[type="checkbox"] {
vertical-align: middle;   /* ✅ keeps it level with text */
margin-right: 8px;        /* ✅ space between checkbox & text */
accent-color: #0072ff;    /* ✅ modern blue color */
}










/* Hover highlight */
.addons-options label:hover,
.checkboxes label:hover {
background: #eef6ff;
border-radius: 6px;
padding: 3px 4px;
}

/* 🔹 Total Summary Box */
.total-box {
margin: 15px 0 20px;
background: #f1f5ff;
padding: 12px;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
text-align: center;
color: #0072ff;
}

/* 🔹 Buttons */
.popup-content button {
width: 100%;
padding: 14px;
background: linear-gradient(90deg, #00c6ff, #0072ff);
color: white;
border: none;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
margin-top: 10px;
transition: all 0.3s ease;
}

.popup-content button:hover {
transform: scale(1.03);
box-shadow: 0 6px 18px rgba(0, 114, 255, 0.3);
}

/* Cancel Button */
.close-btn {
background: #ccc !important;
color: #333 !important;
margin-top: 10px;
}

.close-btn:hover {
background: #bbb !important;
transform: none;
}

/* 🔹 Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes slideUp {
from { transform: translateY(40px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

/* 🔹 Responsive Fixes */
@media (max-width: 480px) {
.popup-content {
padding: 20px;
max-width: 90%;
}

.popup-content h3 {
font-size: 1.3rem;
}

.popup-content input,
.popup-content select {
font-size: 0.9rem;
padding: 10px;
}

.addons-options label,
.checkboxes label {
font-size: 0.85rem;
gap: 4px;
}

.total-box {
font-size: 1rem;
}

.popup-content button {
padding: 12px;
font-size: 0.9rem;
}
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"] {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1rem;
box-sizing: border-box;
}



















/* 🔹 Contact Section */
.contact-section {
text-align: center;
padding: 80px 20px;
background: linear-gradient(180deg, #f9fbfd 0%, #eef6ff 100%);
display: flex;
flex-direction: column;
align-items: center;
}

.contact-section .section-title {
font-size: 2.2rem;
color: #111;
margin-bottom: 10px;
}

.contact-section .section-subtitle {
color: #555;
margin-bottom: 50px;
font-size: 1rem;
}

/* 🔹 Contact Grid (always 3 in a row) */
.contact-grid {
display: flex;
justify-content: center;
align-items: stretch;
gap: 15px;
flex-wrap: nowrap;
width: 100%;
max-width: 1000px;
flex-shrink: 1;
}

/* 🔹 Contact Card */
.contact-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
padding: 25px;
flex: 1 1 0;
min-width: 0;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
box-sizing: border-box;
}

.contact-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 🔹 Icons & Text */
.contact-card i {
font-size: 1.8rem;
color: #0072ff;
margin-bottom: 10px;
}

.contact-card h3 {
color: #0072ff;
font-size: 1.2rem;
margin-bottom: 8px;
}

.contact-card p {
color: #444;
margin-bottom: 12px;
font-size: 0.95rem;
}

/* 🔹 Buttons */
.contact-card button {
background: linear-gradient(90deg, #00c6ff, #0072ff);
color: #fff;
border: none;
padding: 8px 16px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.contact-card button:hover {
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

/* 🔹 Location Text */
.location {
margin-top: 40px;
color: #0072ff;
font-weight: 500;
font-size: 1rem;
}

.location i {
margin-right: 8px;
}

/* 🔹 Mobile Optimization (fit 3 cards in a row) */
@media (max-width: 600px) {
.contact-grid {
gap: 10px;
}

.contact-card {
padding: 15px;
}

.contact-card i {
font-size: 1.3rem;
}

.contact-card h3 {
font-size: 1rem;
}

.contact-card p {
font-size: 0.8rem;
}

.contact-card button {
padding: 6px 10px;
font-size: 0.75rem;
}
}










.terms-section {
text-align: center;
padding: 80px 20px;
background: #f9fbfd;
display: flex;
flex-direction: column;
align-items: center;
}

.terms-section .section-title {
font-size: 2rem;
color: #111;
margin-bottom: 20px;
}

.terms-box {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
padding: 40px 30px;
max-width: 800px;
line-height: 1.7;
text-align: left;
color: #444;
font-size: 0.95rem;
}

.terms-box p {
margin-bottom: 18px;
}

.terms-box p:last-child {
margin-bottom: 0;
}

/* Optional subtle border accent */
.terms-box::before {
content: "";
display: block;
width: 60px;
height: 4px;
background: linear-gradient(90deg, #00c6ff, #0072ff);
border-radius: 2px;
margin-bottom: 20px;
}




/* === Success / Error Popup === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .popup-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.35s ease-in-out;
  }
  
  .popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .popup-icon.success {
    background: #e6f9ed;
    color: #2ecc71;
  }
  
  .popup-icon.error {
    background: #fdeaea;
    color: #e74c3c;
  }
  
  .popup-card h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #111;
  }
  
  .popup-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .popup-card button {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .popup-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(0, 114, 255, 0.3);
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes slideUp {
    from {transform: translateY(40px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
  }


/* === Terms Page Styling === */

.terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    color: #333;
  }
  
  .terms-container h2 {
    color: var(--primary, #0072ff);
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  
  .terms-container p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .terms-container a {
    color: var(--primary, #0072ff);
    text-decoration: underline;
  }
  
  .terms-container a:hover {
    text-decoration: none;
    color: var(--accent, #00c6ff);
  }

  nav {
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 14px 30px;
    color: white;
    box-shadow: 0 2px 10px var(--shadow);
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
  }
  
  nav a:hover {
    color: var(--accent);
  }
  
  nav .profile-icon {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
  }
  
  nav .profile-icon:hover {
    background: white;
    stroke: var(--accent);
  }


  .tip-section {
    background: rgba(255, 198, 81, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
  }
  
  .tip-section h4 {
    margin-bottom: 8px;
    color: #00a0af;
  }
  
  .tip-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
  }
  
  .tip-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  .tip-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .tip-btn.active {
    background: #00a0af;
    color: white;
  }
  
  .tip-btn:hover {
    background: #00a0af;
    color: white;
  }
  
  .recurring-label {
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
  }

  .popup {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
    z-index: 999;
  }
  
  .tip-note {
    font-size: 0.85rem;
    color: #555;
    margin-top: 6px;
    line-height: 1.4;
  }
  .tip-note strong {
    color: #222;
  }

footer {
text-align: center;
background: var(--primary);
color: white;
padding: 30px;
font-size: 0.95rem;
}
