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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  color: var(--color-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { display: block; max-width: 100%; }

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

:root {
  --color-gold-start: #d5c113;
  --color-gold-end: #e59501;
  --color-gold-light: #d9b60f;
  --color-gold-accent: #a18e4f;
  --color-dark-nav-start: rgba(15, 19, 26, 0.80);
  --color-dark-nav-end: rgba(15, 19, 26, 0.75);
  --color-hero-bg: #ededed;
  --color-faq-bg: #ffffff;
  --color-newsletter-bg: #ccd3e2;
  --color-newsletter-card: #e9ebee;
  --color-footer-bg: #ffffff;
  --color-topbar-bg: #f0f0f0;
  --color-muted: #555b66;
  --color-subtle: #7e7575;
  --color-body: #000000;
  --font-inter: 'Inter', sans-serif;
  --font-figtree: 'Figtree', sans-serif;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --max-width: 1440px;
  --container-pad: 82px;
}

.top-bar {
    background-color: #f0f0f0;
    background-color: transparent;
    border-bottom: 1.5px solid #fdfbfb;
    box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 1);
    padding: 20px 10px;
}

.site-header{
position:sticky;
top:0;
z-index:1000;

backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);

background:rgba(255,255,255,0.65);

border-bottom:1px solid rgba(0,0,0,0.08);
}

.top-bar-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 22px;
    align-items: center;
}

.contact-item{
display:flex;
align-items:center;
gap:8px;
font-size:16px;
}

.contact-item img{
width:22px;
height:22px;
}

.contact-item a{
color:#000;
text-decoration:underline;
white-space:nowrap;
}

.contact-item a:hover{
color:#a18e4f;
}


.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links img {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}


.social-links a:hover img {
  opacity: 0.7;
  animation-duration: 0.9s !important;
  animation-play-state: running;
}


.main-header {
    top:0;
    background-color: transparent;
    background: linear-gradient(to right, rgba(15, 19, 26, 0.8), rgba(15, 19, 26, 0.75));
    box-shadow: -1px 4px 4px 0px rgba(0, 0, 0, 0.3), 1px 2px 4px 0px rgba(0, 0, 0, 0.3);
    padding: 10px 82px;
    z-index:1000;
    transition:all .3s ease;
}


.header-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    gap: 8px;
    align-items: center;
}


.logo-text {
    display: flex;
    flex-direction: column;
    width: 134px;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.company-name .highlight {
    color: #ffffff;
}

.tagline {
    font-size: 16px;
    font-style: italic;
    color: #e0e0e0;
    font-weight: 400;
}

.logo-accent {
    width: 30px;
    height: 32.397px;
}

.main-nav {
    display: flex;
    gap: 183px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
  position: relative;
    font-size: 17px;
    line-height: 21px;
    font-weight: 400;
    color: #ffffff; /* Slightly dim */
    transition: all 0.4s ease;
    display: inline-block;
}

/* Main hover effect - brighten and lift */
.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 182, 0.3); /* Warm light */
}

/* Underline glow effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 255, 182, 0.8), 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    filter: blur(1px);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Optional - light burst on hover */
.nav-links a:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 70%
    );
    animation: lightBurst 0.6s ease-out;
    z-index: -1;
}

@keyframes lightBurst {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-quote {
    background: linear-gradient(to right, rgba(178, 153, 96, 0.6), #090401);
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 10px 10px;
    color: #ffffff;
    letter-spacing: 0;
    box-shadow: 0px 0px 4px 0px rgba(9, 4, 1, 0.6);
}


.btn-quote:hover {
    opacity: 0.9;
}

.btn-contact {
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 9px 10px;
    letter-spacing: 0;
    color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-contact:hover {
    background-color: #1a1a1a;
}

.nav-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 17.5px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}






/* ===== Newsletter Section ===== */
.newsletter {
    background-color: #ccd3e2;
    padding: 100px 220px;
    min-height: 496px;
    position: relative;
}

.newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #e9ebee;
    border-radius: 12px;
    display: flex;
    position: relative;
    min-height: 296px;
}

.newsletter-content {
    padding: 32px;
    max-width: 659px;
    z-index: 2;
}


.newsletter-content h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    line-height: 32px;
    margin-bottom: 12px;
}

.newsletter-content h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 24px;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    line-height: 24px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 342px;
}

.form-group input {
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.39);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #000000;
    height: 48px;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-group small {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    line-height: 16px;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8b5cf6;
    border-radius: 8px;
    border: none;
    padding: 16px 16px;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    height: 48px;
    min-width: 105px;
}

.btn-subscribe:hover {
    background-color: #7c3aed;
}

.newsletter-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}
.newsletter-envelope {
    position: relative;
    width: 85%;
    right: -65px;
    max-width: 340px;
    z-index: 2;
}

/* ===== Footer ===== */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 49px;
    display: flex;
    gap: 69px;
}

.footer-brand {
    max-width: 429px;
}

.brand-logo {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
}

.brand-img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
}

.brand-text {
    width: 134px;
}

.brand-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.brand-text h3 .highlight {
    color: #000000;
}

.brand-text p {
    font-size: 16px;
    font-style: italic;
    color: #000000;
    font-weight: 400;
}

.brand-accent {
    width: 30px;
    height: 32.397px;
}

.brand-desc {
    font-size: 16.5px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
}

.footer-columns {
    display: flex;
    gap: 70px;
    flex: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
}
.footer-contact-col {
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    color: #000000;
    position: relative;
    padding-left: 12px;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 23.5px;
    border-left: 3px solid #000000;
    background-color: #000000;
    border-radius: 999px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000000;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-box {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 22px;
    height: 22px;
}

.footer-contact .label {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #555b66;
    margin-bottom: 8px;
}

.footer-contact .value {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    line-height: 16px;
}

.footer-contact .value a {
    display: inline-block;
    word-break: break-all;
    max-width: 150px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dot{
  margin: 0 10px;
}


.copyright {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 400;
    color: #000000;
}

.copyright span:first-child {
    font-size: 18px;
}

.copyright span:last-child {
    font-size: 15px;
    line-height: 18px;
}


/* ============================================================
   CONTACT HERO
   ============================================================ */
.contact-hero {
  background: var(--color-hero-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 45px 20px 0;
  text-align: center;
}

.contact-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-hero__badge-line {
  display: block;
  width: 60px;
  height: 1.5px;
  background: #333;
}

.contact-hero__badge-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  white-space: nowrap;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 676px;
}

.contact-hero__title {
  font-family: var(--font-inter);
  font-size: 60px;
  font-weight: 700;
  line-height: 73px;
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 100%;
}

.contact-hero__title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero__subtitle {
  font-size: 19px;
  font-weight: 400;
  color: #000;
  line-height: 23px;
  max-width: 676px;
}

/* ============================================================
   CONTACT MAIN (Info + Form)
   ============================================================ */
.contact-main {
  background: var(--color-hero-bg);
  padding: 45px 167px 100px;
}

.contact-main__inner {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  max-width: 1106px;
  margin: 0 auto;
}

/* ---- Contact Info (left) ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 37px;
  flex-shrink: 0;
  width: 436px;
}

.contact-info__header {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info__title {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
}

.contact-info__desc {
  font-size: 16.5px;
  font-weight: 400;
  color: #000;
  line-height: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-detail-item__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  padding: 14px;
}
.contact-detail-item__icon-wrap img{
  width:22px;
  height:22px;
  max-width:none;
  flex-shrink:0;
}

.contact-detail-item__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-detail-item__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 22px;
}

.contact-detail-item__value {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 19px;
}

.contact-detail-item__value em {
  font-style: italic;
}


/* Map placeholder */
.map-placeholder {
  width: 340px;
  height: 340px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-placeholder iframe{
width:100%;
height:100%;
border:0;
}


/* ---- Quote Form (right) ---- */
.quote-form-card {
  background: #fff;
  border: 1px solid #000;
  border-radius: var(--radius-xl);
  padding: 41px 47px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
}

.quote-form-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-form-card__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 53px;
  border: 1px solid #000;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: rgba(128,128,128,0.05);
}


.quote-form-card__header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-form-card__header-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
  line-height: 1.2;
}



.quote-form-card__header-sub {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

/* ---- Form fields ---- */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width:476px;
  width:100%;
}

.form-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  min-width: 472px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  flex-shrink: 0;
}

.form-field--full {
  width: 100%;
}

.form-field__label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 17px;
}

.form-field__input {
  border: 1px solid #000;
  border-radius: var(--radius-sm);
  padding: 12.5px 10px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #000;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.form-field__input::placeholder { color: #aaa; }
.form-field__input:focus { border-color: var(--color-gold-end); }

.form-select-wrap {
  position: relative;
  width: 100%;
}

.form-field__select {
  width: 100%;
  border: 1px solid #000;
  border-radius: 37px;
  padding: 13px 40px 13px 10px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #000;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-field__select:focus { border-color: var(--color-gold-end); }

.form-select-wrap__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* File upload area */
.file-upload-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  border: 0.7px dashed #000;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.file-upload-area:hover {
  background: rgba(0,0,0,0.02);
}

.file-upload-area__text {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: var(--color-subtle);
  white-space: nowrap;
}

.file-upload-area__input {
  display: none;
}

.form-field__hint {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-subtle);
  line-height: 13px;
}

.form-field__textarea {
  border: 1px solid #000;
  border-radius: var(--radius-lg);
  padding: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #000;
  resize: vertical;
  outline: none;
  min-height: 165px;
  transition: border-color 0.2s, height 0.25s ease;
  width: 100%;
}

.form-field__textarea::placeholder { color: var(--color-subtle); }
.form-field__textarea:focus { border-color: var(--color-gold-end); }

/* Submit button */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.btn-submit {
    position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, var(--color-gold-light), #e49902);
  border: 1px solid #000;
  border-radius: var(--radius-md);
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-submit:hover { 
  opacity: 0.88; 
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-submit .btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  position: relative;
}

.btn-submit .btn-content img {
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.3, 1.2), opacity 0.4s ease, filter 0.4s ease;
  will-change: transform;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* TRAIL EFFECT 1 - Paper airplane trail */
.btn-submit .btn-content::after {
  content: "✈️";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 0) scale(0.5);
  opacity: 0;
  font-size: 20px;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.3, 1.2);
  pointer-events: none;
  z-index: 1;
  filter: blur(1px) brightness(1.3);
}

/* TRAIL EFFECT 2 - Sparkle trail */
.btn-submit .btn-content::before {
  position: absolute;
  left: -5px;
  top: 5px;
  transform: translate(0, 0) scale(0.3);
  opacity: 0;
  font-size: 16px;
  color: #FFD700;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.3, 1.2) 0.05s;
  pointer-events: none;
  z-index: 1;
}

.btn-submit .success-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
/* ===== FLYING EFFECTS - ARC TRAJECTORY + TRAILS ===== */
.btn-submit:hover .btn-content img {
  transform: translate(50px, -70px) scale(1.6) rotate(12deg);
  opacity: 0.7;
  filter: blur(2px) brightness(1.4);
}

/* Activate paper airplane trail */
.btn-submit:hover .btn-content::after {
  transform: translate(35px, -45px) scale(1.4);
  opacity: 0.8;
  content: "✈️✨"; /* Trail with sparkle */
}

/* Activate sparkle trail */
.btn-submit:hover .btn-content::before {
  transform: translate(15px, -20px) scale(1);
  opacity: 0.5;
}

/* Text fades slightly on hover */
.btn-submit:hover .btn-content span {
  opacity: 0.9;
  transition: opacity 0.3s;
}
/* Optimize animations */
.btn-submit .btn-content img,
.btn-submit .btn-content::before,
.btn-submit .btn-content::after {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.btn-submit.submitting {
  pointer-events: none;
}

.btn-submit.submitting .btn-content {
  opacity: 0;
}

.btn-submit.submitting .success-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.btn-submit.submitted {
  background: #15de73; /* Success green */
  background: linear-gradient(to right, #15de73, #15de73) !important;
  pointer-events: none;
  border-color: #000000;
}

.btn-submit.submitted .btn-content {
  opacity: 0;
}

.btn-submit.submitted .success-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}



/* Success message that appears after submission */
.form-submit__success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #e8f3e9;
  color: #3f7e5c;
  border-radius: 60px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  animation: fadeInUp 0.5s ease forwards;
  border: 1px solid #3f7e5c;
}

.form-submit__success.show {
  display: block;
}

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

@keyframes pixelFade{
0%{opacity:1;transform:scale(1)}
50%{opacity:0.6;filter:blur(1px)}
100%{opacity:0;transform:scale(1.3)}
}

.btn-submit.submitted .success-icon{
animation:pixelFade 5s ease forwards;
}


/* Force icon to show */
.success-icon i,
.success-icon svg,
.success-icon img {
  display: inline-block !important;
  width: 30px !important;
  height: 30px !important;
  color: white !important;
  font-size: 30px !important;
  line-height: 1 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure the success icon container is visible */
.btn-submit .success-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  height: 100%;
  z-index: 9999 !important;
}

.form-submit__note {
  font-family: var(--font-inter);
  font-style: italic;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #000;
  text-align: center;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 59px;
  padding: 45px 270px;
}

.faq-section__title {
  font-size: 24px;
  font-weight: 900;
  color: #000;
  text-align: center;
  line-height: 29px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 899px;
  max-width: 100%;
}

.faq-item {
  background: #fff;
  border: 1px solid #000;
  border-radius: var(--radius-lg);
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
}

.faq-item__question {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  line-height: 23px;
}

.faq-item__answer {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  line-height: 21px;
}

.faq-item__answer strong {
  font-weight: 500;
}

/* ===== Device Warning Modal ===== */
.device-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.device-warning.active {
  opacity: 1;
  visibility: visible;
}

.device-warning__content {
  background: #fff;
  padding: 32px 28px;
  border-radius: 28px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.device-warning.active .device-warning__content {
  transform: scale(1);
}

.device-warning__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__text {
  font-size: 15px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 24px;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.device-warning__note {
  margin-top: 16px;
  font-size: 12px;
  color: #888;
  font-family: var(--font-inter), sans-serif;
}



/* Large desktop (> 1440px) */
@media (min-width: 1440px) {
  .contact-main { padding: 45px calc((100% - 1106px) / 2) 100px; }
  .faq-section { padding: 45px calc((100% - 899px) / 2); }
}

/* Tablet / small desktop (< 1200px) */
@media (max-width: 1199px) {
  .navbar { padding: 10px 40px; }
  .navbar__right { gap: 60px; }
  .contact-main { padding: 45px 40px 80px; }
  .contact-main__inner { gap: 60px; }
  .faq-section { padding: 45px 40px; }
  .faq-list { width: 100%; }
  .footer-main { gap: 40px; padding: 0 40px 40px; }
  .footer-brand { width: 300px; }
  .newsletter-card { width: calc(100% - 80px); }
}

/* Tablet (< 1024px) */
@media (max-width: 1023px) {

  .contact-main { padding: 40px 20px 60px; }
  .contact-main__inner { flex-direction: column; gap: 48px; align-items: center; }
  .contact-info { width: 100%; max-width: 570px; }
  .quote-form-card { width: 100%; max-width: 570px; }
  .quote-form { width: 100%; }
  .form-row { width: 100%; }

  .faq-section { padding: 40px 20px; }
  .newsletter-section { padding: 60px 0; }

}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  
.top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
 .schedule-section { padding: 30px 16px; }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .main-header {
        padding: 10px 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-quote,
    .btn-contact {
        width: 100%;
    }

    .privacy-container {
        padding: 0 20px;
    }


    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 24px;
    }

    .newsletter {
        padding: 60px 20px;
    }

    .newsletter-content {
        padding: 24px;
    }

    .newsletter-content h3 {
        font-size: 24px;
    }

    .newsletter-content h4 {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .btn-subscribe {
        width: 100%;
    }

    .footer-top {
        padding: 40px 30px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    
   .device-warning__content {
    padding: 24px 20px;
  }
  .device-warning__title {
    font-size: 20px;
  }
  .device-warning__text {
    font-size: 14px;
  }
  .device-warning__btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
    .section-title {
        font-size: 20px;
    }

    .content-card {
        padding: 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 15px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .newsletter-content h3 {
        font-size: 22px;
    }

    .footer-top {
        padding: 30px 20px;
    }

    .footer-col h4 {
        font-size: 20px;
    }


  .contact-hero__title { font-size: 38px; }
  .contact-hero__subtitle { font-size: 16px; }

  .form-row { flex-direction: column; gap: 16px; }
  .form-field { width: 100%; }
  .quote-form-card { padding: 24px 20px; }
  .quote-form { width: 100%; }
  .file-upload-area__text { white-space: normal; text-align: center; }

  .faq-section { padding: 32px 16px; }
  .faq-section__title { font-size: 20px; }
  .faq-item__question { font-size: 16px; }
  .faq-item__answer { font-size: 15px; }

  .newsletter-card__content { padding: 20px; }
  .newsletter-card__eyebrow { font-size: 22px; }
  .newsletter-form__field-group { flex-direction: column; }
  .newsletter-form__btn { width: 100%; }

  .footer-main { flex-direction: column; padding: 0 16px 32px; gap: 28px; }
  .footer-brand { width: 100%; }
  .footer-brand__desc { font-size: 14px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; padding: 16px; }
  .footer-bottom__copy { flex-wrap: wrap; }

  .contact-hero { padding: 32px 16px 0; }
  .contact-main { padding: 32px 16px 48px; }
  .map-placeholder { width: 100%; max-width: 340px; }
}

/* ============================================
   SMART HOURS TOOLTIP – PREMIUM VERSION
   ============================================ */

/* ── Container ── */
.phone-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* ── Tooltip ── */
.hours-tooltip {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #1a1a2e;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999999;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Arrow ── */
.hours-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: #1a1a2e;
}

/* ── Show on hover ── */
.phone-container:hover .hours-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ── Status row ── */
.hours-tooltip__status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

/* ── Status text (base) ── */
.hours-tooltip__status-text {
    font-weight: 600;
    font-size: 14px;
}

/* ── Status text (open - GREEN) ── */
.hours-tooltip__status-text--open {
    color: #22c55e;
    font-weight: 700;
    font-size: 15px;
}

/* ── Status text (closed - RED) ── */
.hours-tooltip__status-text--closed {
    color: #ff0000;
    font-weight: 700;
    font-size: 15px;
}

/* ── Countdown timer text ── */
.hours-tooltip__countdown {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ── Sub-text for "Send us an Email" ── */
.hours-tooltip__sub-text {
    font-size: 13px;
    font-weight: 350;
    display: block;
    margin-top: 2px;
}

/* ── Rows ── */
.hours-tooltip__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 0;
    width: 100%;
}

.hours-tooltip__icon {
    font-size: 15px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.hours-tooltip__label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.hours-tooltip__value {
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hours-tooltip {
        min-width: 200px;
        padding: 14px 16px;
        font-size: 12px;
        left: 50%;
        transform: translateX(-50%) translateY(6px);
    }
    .hours-tooltip__status-text--open,
    .hours-tooltip__status-text--closed {
        font-size: 14px;
    }
    .hours-tooltip__sub-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hours-tooltip {
        min-width: 180px;
        padding: 12px 14px;
        font-size: 11px;
        left: 0;
        transform: translateX(0) translateY(6px);
    }
    .hours-tooltip::before {
        left: 20%;
    }
    .hours-tooltip__status-text--open,
    .hours-tooltip__status-text--closed {
        font-size: 13px;
    }
    .hours-tooltip__sub-text {
        font-size: 11px;
    }
}

/* ── Respect user's motion preferences ── */
@media (prefers-reduced-motion: reduce) {
    .hours-tooltip {
        transition: none !important;
    }
    .phone-container:hover .hours-tooltip {
        transform: translateX(-50%) translateY(0);
    }
}

/* ── Focus styles for keyboard users ── */
.phone-link:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Smooth color transitions ── */
.hours-tooltip__status-text--open,
.hours-tooltip__status-text--closed {
    transition: color 0.3s ease;
}

/* ============================================
   TOOLTIP OVERFLOW & Z-INDEX FIX
   ============================================ */

/* ── Make all parent containers allow overflow ── */
.site-header,
.top-bar,
.top-bar-content,
.top-contact-info,
.contact-item,
.phone-container {
    overflow: visible !important;
}

/* ── Increase header z-index to sit above hero ── */
.site-header {
    z-index: 99999 !important;
    position: relative !important;
}


/* ============================================
   PREMIUM COOKIE CONSENT – PROFESSIONAL
   ============================================ */

/* ── Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    z-index: 999998;
    display: none;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
    animation: cookieSlideUp 0.5s ease;
}

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

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cookie-banner__link {
    color: #a18e4f;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-banner__link:hover {
    color: #c9b16a;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--primary {
    background: #a18e4f;
    color: #ffffff;
}

.cookie-banner__btn--primary:hover {
    background: #b8a35e;
}

.cookie-banner__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Modal ── */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: cookieModalFadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
}

@keyframes cookieModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cookie-modal__panel {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    animation: cookieModalPanelIn 0.4s ease;
}

@keyframes cookieModalPanelIn {
    from {
        transform: translateY(20px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cookie-modal__title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cookie-modal__close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.cookie-modal__description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.cookie-modal__options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cookie-option--essential {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-option__info {
    flex: 1;
}

.cookie-option__name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.cookie-option__desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-option__status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.cookie-option__control {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 16px;
}

/* ── Toggle Switch ── */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-switch input:checked + .toggle-slider {
    background: #a18e4f;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-switch input:disabled + .toggle-slider::before {
    background: rgba(255, 255, 255, 0.5);
}

/* ── Modal Footer ── */
.cookie-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal__btn {
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-modal__btn--primary {
    background: #a18e4f;
    color: #ffffff;
}

.cookie-modal__btn--primary:hover {
    background: #b8a35e;
}

.cookie-modal__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-modal__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner__actions {
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
        justify-content: center;
        min-width: 0;
        padding: 10px 16px;
        font-size: 12px;
    }

    .cookie-modal__panel {
        padding: 24px 20px;
        width: 95%;
    }

    .cookie-modal__title {
        font-size: 18px;
    }

    .cookie-option {
        padding: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cookie-option__control {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-modal__footer {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .cookie-modal__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-banner__text {
        font-size: 12px;
    }

    .cookie-banner__btn {
        font-size: 11px;
        padding: 8px 12px;
        flex: 1 1 auto;
    }

    .cookie-modal__panel {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .cookie-modal__title {
        font-size: 16px;
    }

    .cookie-modal__description {
        font-size: 13px;
    }
}


/* ── Floating WhatsApp Button (Glass – More Visible) ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 16px;
    
    /* ── Glass Effect (More Opaque & Vibrant) ── */
    background: rgba(37, 211, 102, 0.45);   /* Increased from 0.2 to 0.45 */
    backdrop-filter: blur(6px);              /* Slightly less blur to keep it sharper */
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35); /* Slightly brighter border */
    
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25); /* Stronger shadow */
    text-decoration: none;
    
    transition: all 0.3s ease;
}

/* ── Solid Green (On Hover) ── */
.whatsapp-float:hover {
    background: #25D366;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── Icon (White) ── */
.whatsapp-float-icon {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: scale(1.08);
}

/* ── Text (White) ── */
.whatsapp-float-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px 10px 12px;
        gap: 8px;
    }
    .whatsapp-float-icon {
        width: 22px;
        height: 22px;
    }
    .whatsapp-float-text {
        font-size: 13px;
    }
}

/* ── UNIVERSAL NOSCRIPT FALLBACK (All Screen Sizes) ── */
.noscript-fallback {
  display: flex; /* Always visible when JS is off */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari/iOS support */
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.noscript-fallback__content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  max-width: 500px; /* Slightly larger for desktop readability */
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.4s ease;
}

.noscript-fallback__title {
  font-size: 24px; /* Slightly larger for desktop */
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.noscript-fallback__text {
  font-size: 17px; /* Slightly larger for desktop */
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #333333;
  margin-bottom: 0;
}

/* ── RESPONSIVE: Optimize for smaller screens ── */
@media (max-width: 768px) {
  .noscript-fallback__content {
    padding: 30px 20px;
    max-width: 400px;
  }
  .noscript-fallback__title {
    font-size: 20px;
  }
  .noscript-fallback__text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .noscript-fallback__content {
    padding: 24px 16px;
    max-width: 340px;
  }
  .noscript-fallback__title {
    font-size: 18px;
  }
  .noscript-fallback__text {
    font-size: 14px;
  }
}