:root {
  --ice: #00C8E8;
  --ice-dark: #0097BB;
  --ice-glow: #E0F8FD;
  --navy: #06122E;
  --navy-mid: #0D2149;
  --white: #FFFFFF;
  --off: #F4FBFD;
  --text: #1A2940;
  --muted: #5A7080;
  --card: #FFFFFF;
  --border: #C8EDF5;
  --green: #00C781;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--off); }
h1, h2, h3, h4, .logo-text { font-family: 'Rajdhani', sans-serif; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,18,46,0.96); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px; border-bottom: 1px solid rgba(0,200,232,0.15);
}
.logo-text { font-size: 22px; color: var(--white); letter-spacing: 1px; }
.logo-text span { color: var(--ice); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--ice); }
.nav-cta { background: var(--ice); color: var(--navy); padding: 8px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: #00b0ce; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

/* HERO */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0,200,232,0.12), transparent),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,200,232,0.07), transparent);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--ice) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ice) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,232,0.12); border: 1px solid rgba(0,200,232,0.3);
  color: var(--ice); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge::before { content: '❄'; font-size: 14px; }
h1.hero-title { font-size: clamp(40px, 7vw, 72px); color: var(--white); line-height: 1.05; margin-bottom: 16px; }
h1.hero-title span { color: var(--ice); display: block; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ice); color: var(--navy); padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px; text-decoration: none; font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #00b0ce; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white); padding: 14px 28px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3); font-weight: 500; font-size: 15px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--ice); background: rgba(0,200,232,0.06); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 32px; color: var(--ice); font-weight: 700; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.hero-ac-icon {
  position: absolute; right: 5%; bottom: 10%; width: clamp(200px,30vw,380px);
  opacity: 0.07; font-size: clamp(120px,20vw,260px); text-align: center; z-index: 1; user-select: none;
}

/* OFFER BANNER */
.offer-banner {
  background: linear-gradient(135deg, var(--ice-dark) 0%, var(--ice) 100%);
  padding: 18px 5%; display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.offer-banner-text { font-family: 'Rajdhani', sans-serif; font-size: 20px; color: var(--navy); font-weight: 700; }
.offer-badge {
  background: var(--navy); color: var(--ice); padding: 6px 18px; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700;
}
.offer-banner a { background: var(--navy); color: var(--white); padding: 8px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; transition: opacity 0.2s; }
.offer-banner a:hover { opacity: 0.85; }

/* SECTION BASE */
section { padding: 80px 5%; }
.section-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--ice-dark); font-weight: 600; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-title span { color: var(--ice-dark); }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* SERVICES */
.services-section { background: var(--white); }
.services-header { margin-bottom: 52px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--off); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 28px 24px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--ice); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,200,232,0.1); }
.service-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--ice); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }

/* AREAS */
.areas-section { background: var(--navy); }
.areas-section .section-title { color: var(--white); }
.areas-section .section-label { color: rgba(0,200,232,0.7); }
.areas-section .section-desc { color: rgba(255,255,255,0.5); }
.areas-header { margin-bottom: 48px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.area-pill {
  background: rgba(0,200,232,0.06); border: 1px solid rgba(0,200,232,0.2);
  color: rgba(255,255,255,0.8); padding: 10px 16px; border-radius: 8px;
  font-size: 13px; text-align: center; transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.area-pill:hover { background: rgba(0,200,232,0.12); border-color: var(--ice); }
.area-pill::before { content: '📍'; font-size: 11px; }
.areas-note { margin-top: 28px; color: rgba(255,255,255,0.4); font-size: 14px; text-align: center; }

/* WHY CHOOSE */
.why-section { background: var(--off); }
.why-header { margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.why-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--ice); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ice-glow); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.why-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PRICING */
.pricing-section { background: var(--white); }
.pricing-header { margin-bottom: 52px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.price-card {
  border: 2px solid var(--border); border-radius: 20px; padding: 32px 28px;
  text-align: center; transition: border-color 0.2s, transform 0.2s;
  background: var(--off);
}
.price-card:hover { border-color: var(--ice); transform: translateY(-4px); }
.price-card.featured { border-color: var(--ice); background: var(--ice-glow); }
.price-tag { font-family: 'Rajdhani', sans-serif; font-size: 42px; color: var(--navy); font-weight: 700; }
.price-tag sup { font-size: 20px; vertical-align: super; }
.price-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.price-name { font-family: 'Rajdhani', sans-serif; font-size: 20px; color: var(--navy); font-weight: 600; margin: 16px 0 8px; }
.price-features { list-style: none; text-align: left; margin: 16px 0 28px; }
.price-features li { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
.price-card .btn-primary { display: block; }
.featured-badge { background: var(--ice); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; letter-spacing: 1px; }

/* ABOUT */
.about-section { background: var(--off); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  background: var(--navy); border-radius: 24px; padding: 48px; text-align: center;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,200,232,0.15), transparent 70%);
}
.about-big-icon { font-size: 100px; position: relative; z-index: 2; }
.about-visual h3 { font-size: 28px; color: var(--white); font-family: 'Rajdhani', sans-serif; margin-top: 16px; position: relative; z-index: 2; }
.about-visual p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; position: relative; z-index: 2; }
.about-text .section-label { margin-top: 0; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.mv-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; }
.mv-card h4 { font-size: 14px; color: var(--ice-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.mv-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* CONTACT */
.contact-section { background: var(--navy); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-label { color: rgba(0,200,232,0.7); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 52px; align-items: center; }

/* Contact Left Side Info */
.contact-info-wrapper { padding-right: 20px; }
.contact-info-title { font-family: 'Rajdhani', sans-serif; font-size: 32px; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.contact-info-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(0,200,232,0.1);
  border-radius: 16px; padding: 24px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  transition: all 0.3s ease; text-decoration: none; position: relative; overflow: hidden;
}
.contact-card:hover { border-color: rgba(0,200,232,0.4); background: rgba(0,200,232,0.06); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.contact-card-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(0,200,232,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--ice); transition: transform 0.3s ease; }
.contact-card:hover .contact-card-icon { transform: scale(1.1); background: var(--ice); color: var(--navy); text-shadow: none; }
.contact-card-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-card-val { font-size: 16px; color: var(--white); font-weight: 500; margin-top: 4px; line-height: 1.4; }

/* Contact Form Box */
.contact-form-box { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.contact-form-box h3 { font-size: 28px; color: var(--navy); margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700; }
.form-sub-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--off); outline: none; transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ice-dark); background: var(--white); box-shadow: 0 0 0 3px rgba(0,200,232,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.select-wrapper { position: relative; }
.select-wrapper::after { content: '▼'; font-size: 10px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text); opacity: 0.6; }
.form-group select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; color: var(--text); }

.submit-btn {
  width: 100%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center;
  padding: 16px; border: none; border-radius: 10px; font-size: 16px; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; cursor: pointer; letter-spacing: 0.5px; transition: all 0.3s ease; margin-top: 10px;
}
.submit-btn:hover { background: var(--ice-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,232,0.25); }

/* FOOTER */
footer { background: #040d20; padding: 48px 5% 28px; border-top: 1px solid rgba(0,200,232,0.1); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 16px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--ice); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom span { color: rgba(0,200,232,0.6); }

/* FLOATING ACTIONS */
.offer-float {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  background: linear-gradient(135deg, #FF6B6B, #FF4757);
  color: #fff; padding: 12px 24px; border-radius: 50px; text-decoration: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(255,107,107,0.4);
  transition: all 0.3s ease; animation: floatPulse 2s infinite; cursor: pointer;
}
.offer-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 30px rgba(255,107,107,0.5); }
@keyframes floatPulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.7); } 70% { box-shadow: 0 0 0 16px rgba(255,107,107,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); } }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--navy); color: var(--white); font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; pointer-events: none;
  opacity: 0; transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* MODAL FOR BOOKING CONFIRMATION */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(6,18,46,0.8); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-content {
  background: var(--white); width: 100%; max-width: 500px; border-radius: 20px;
  padding: 32px; transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.show .modal-content { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.modal-header h3 { font-family: 'Rajdhani', sans-serif; font-size: 24px; color: var(--navy); }
.close-modal { background: none; border: none; font-size: 28px; color: var(--muted); cursor: pointer; line-height: 1; }
.modal-body { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.modal-details { background: var(--off); padding: 16px; border-radius: 12px; margin-bottom: 24px; border: 1px solid var(--border); }
.modal-details p { margin-bottom: 8px; font-size: 14px; color: var(--navy); }
.modal-details strong { color: var(--ice-dark); display: inline-block; width: 80px; }
.modal-btns { display: flex; gap: 12px; }

/* APPLIANCE CARDS */
.appliance-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,200,232,0.1) !important; border: 1.5px solid var(--ice); }
.appliance-card { border: 1.5px solid transparent; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(6,18,46,0.98); padding: 20px 5%; flex-direction: column; gap: 20px; border-bottom: 1px solid rgba(0,200,232,0.15); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-inner, .contact-inner, .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-info-wrapper { padding-right: 0; }
  .contact-form-box { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .mission-vision { grid-template-columns: 1fr; }
  .modal-btns { flex-direction: column; }
  .offer-float { 
    bottom: 20px; 
    left: 20px; 
    padding: 10px 16px; 
    font-size: 15px; 
    animation: floatPulse 2s infinite, mobileSlideIn 1s ease-out, bounceWiggle 5s infinite;
  }
  .wa-float { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 22px; }
}

@keyframes mobileSlideIn {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceWiggle {
  0%, 90%, 100% { transform: rotate(0deg) scale(1); }
  92% { transform: rotate(5deg) scale(1.1); }
  95% { transform: rotate(-5deg) scale(1.1); }
  97% { transform: rotate(5deg) scale(1.1); }
}

/* ✅ MOBILE STICKY CTA BAR STYLES */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 18, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 9998;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 200, 232, 0.2);
  gap: 12px;
  animation: slideUp 0.5s ease;
}

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

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
}

.mobile-cta-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-cta-btn:active {
  transform: scale(0.96);
}

.mobile-cta-btn.call {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.mobile-cta-btn.book {
  background: var(--ice);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 200, 232, 0.2);
}

.mobile-cta-btn span {
  font-size: 18px;
}

/* ✅ SECTION CTA BUTTONS */
.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 18, 46, 0.1);
  margin-top: 30px;
}

.section-cta:hover {
  background: var(--ice-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 200, 232, 0.2);
}

@media (max-width: 768px) {
  .section-cta {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  /* Modal Responsiveness Improvements */
  .modal-content {
    padding: 24px 16px !important;
    max-width: 95vw !important;
    border-radius: 24px !important;
  }
  
  .contact-form-box {
    padding: 20px 10px !important;
  }
  
  .form-group label {
    font-size: 12px;
  }
  
  .form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    font-size: 13px;
  }
  
  .submit-btn {
    padding: 14px;
    font-size: 15px;
  }
}
