  :root {
    --gold: #E8A020;
    --gold-dark: #B57A10;
    --gold-light: #FDE9B8;
    --sun: #F5C842;
    --navy: #0A1628;
    --navy-mid: #112240;
    --navy-light: #1D3461;
    --white: #FAFAF8;
    --gray-light: #F2F0EB;
    --gray-mid: #C8C5BC;
    --gray-text: #6B6860;
    --green: #2D7A4F;
    --green-light: #E3F5EC;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 32px rgba(10,22,40,0.12);
    --shadow-card: 0 2px 16px rgba(10,22,40,0.08);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── NAV ─────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,160,32,0.2);
    transition: all .3s ease;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-icon svg { width: 24px; height: 24px; }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
  }
  .nav-logo-text span { color: var(--gold); }

  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(250,250,248,0.75);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .02em;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: .55rem 1.25rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: background .2s, transform .2s !important;
  }
  .nav-cta:hover { background: var(--sun) !important; transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
    background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
  }

  .mobile-menu {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    padding: 1.5rem 5%;
    flex-direction: column; gap: 1.25rem;
    border-bottom: 1px solid rgba(232,160,32,0.2);
    z-index: 999;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(250,250,248,0.8);
    text-decoration: none;
    font-size: 1rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* ── HERO ─────────────────────────────────────────── */
  #home {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2040 100%);
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-orbs {
    position: absolute; inset: 0; pointer-events: none;
  }
  .orb {
    position: absolute; border-radius: 50%;
    opacity: .12;
  }
  .orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px; right: -100px;
  }
  .orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
    bottom: -100px; left: 10%;
    opacity: .07;
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 700px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.3);
    color: var(--gold);
    font-size: .8rem; font-weight: 500;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  .hero-badge::before {
    content: ''; display: block;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.5rem;
  }
  .hero-title .accent { color: var(--gold); }
  .hero-title .line2 { display: block; }

  .hero-desc {
    font-size: 1.1rem;
    color: rgba(250,250,248,0.65);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 500;
    padding: .85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(232,160,32,0.35);
  }
  .btn-primary:hover {
    background: var(--sun);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232,160,32,0.45);
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 400;
    padding: .85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(250,250,248,0.25);
    transition: border-color .2s, background .2s;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(232,160,32,0.08);
  }

  .hero-stats {
    display: flex; gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  .stat-number {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: .8rem;
    color: rgba(250,250,248,0.5);
    margin-top: .25rem;
    letter-spacing: .04em;
  }

  .hero-visual {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    width: min(420px, 40vw);
    pointer-events: none;
  }

  /* ── SECTIONS COMMON ─────────────────────────────── */
  section { padding: 6rem 5%; }

  .section-label {
    display: inline-block;
    font-size: .75rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-light);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
  }

  /* ── SERVICES ─────────────────────────────────────── */
  #services { background: var(--gray-light); }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(10,22,40,0.06);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--sun));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--gold-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
  }
  .service-icon svg { width: 26px; height: 26px; }

  .service-name {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 600;
    color: var(--navy);
    margin-bottom: .6rem;
  }
  .service-desc {
    font-size: .9rem;
    color: var(--gray-text);
    line-height: 1.65;
  }
  .service-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: .75rem; font-weight: 500;
    color: var(--green);
    background: var(--green-light);
    padding: .25rem .75rem;
    border-radius: 50px;
  }

  /* ── PROJECTS ─────────────────────────────────────── */
  #projects { background: var(--white); }

  .projects-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .projects-header .section-subtitle { margin: 0 auto; }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .3s, box-shadow .3s;
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.06);
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

  .project-img {
    width: 100%; height: 200px;
    object-fit: cover;
    display: block;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
  }

  .project-img-placeholder {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    position: relative;
  }

  .project-badge {
    position: absolute; top: 12px; left: 12px;
    font-size: .72rem; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 50px;
  }

  .badge-mega { background: var(--navy); color: var(--gold); }
  .badge-rooftop { background: var(--green); color: #fff; }
  .badge-mini { background: var(--gold); color: var(--navy); }
  .badge-commercial { background: #7B2D8B; color: #fff; }

  .project-body { padding: 1.25rem 1.5rem; }
  .project-name {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
  }
  .project-meta {
    font-size: .82rem;
    color: var(--gray-text);
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: .75rem;
  }
  .project-meta span { display: flex; align-items: center; gap: 4px; }
  .project-desc {
    font-size: .875rem;
    color: var(--gray-text);
    line-height: 1.6;
  }

  /* ── ABOUT ────────────────────────────────────────── */
  #about {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
  }

  #about::before {
    content: '';
    position: absolute; top: 0; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative; z-index: 1;
  }

  .about-label { color: var(--gold); background: rgba(232,160,32,0.12); }

  .about-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  .about-text {
    font-size: .95rem;
    color: rgba(250,250,248,0.65);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
  }

  .about-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 2rem;
  }
  .value-item {
    display: flex; gap: 10px; align-items: flex-start;
  }
  .value-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 6px; flex-shrink: 0;
  }
  .value-text {
    font-size: .875rem;
    color: rgba(250,250,248,0.75);
    line-height: 1.5;
  }
  .value-text strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2px;
  }

  .about-visual {
    display: grid; gap: 1rem;
  }
  .about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
  }
  .about-card-num {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700;
    color: var(--gold);
  }
  .about-card-label {
    font-size: .85rem;
    color: rgba(250,250,248,0.5);
    margin-top: .25rem;
  }
  .about-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── WHY SOLAR ────────────────────────────────────── */
  #why {
    background: var(--gray-light);
    text-align: center;
  }
  .why-header { margin-bottom: 3rem; }
  .why-header .section-subtitle { margin: 0 auto; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
  }

  .why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(10,22,40,0.06);
    transition: transform .3s;
  }
  .why-card:hover { transform: translateY(-4px); }
  .why-number {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 800;
    color: var(--gold);
    line-height: 1;
  }
  .why-unit { font-size: 1.2rem; }
  .why-label {
    font-size: .9rem;
    color: var(--gray-text);
    margin-top: .5rem;
    line-height: 1.4;
  }
  .why-icon {
    font-size: 2rem; margin-bottom: 1rem;
    display: block;
  }

  /* ── CONTACT ──────────────────────────────────────── */
  #contact { background: var(--white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }

  
  .contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 2rem;
  }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--gold-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-icon svg { width: 20px; height: 20px; }
  .contact-label {
    font-size: .75rem; font-weight: 500;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: .25rem;
  }
  .contact-value {
    font-size: .95rem;
    color: var(--navy);
    line-height: 1.5;
  }
  .contact-value a {
    color: var(--navy); text-decoration: none;
    transition: color .2s;
  }
  .contact-value a:hover { color: var(--gold-dark); }

  .social-title {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
  }
  .social-links {
    display: flex; gap: .75rem; flex-wrap: wrap;
  }
  .social-btn {
    display: flex; align-items: center; gap: 8px;
    padding: .6rem 1.1rem;
    border: 1.5px solid rgba(10,22,40,0.12);
    border-radius: 50px;
    color: var(--navy);
    text-decoration: none;
    font-size: .85rem; font-weight: 500;
    transition: all .2s;
  }
  .social-btn:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--gold-dark);
  }
  .social-btn svg { width: 16px; height: 16px; }

  /* Form */
  .contact-form {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 2.5rem;
  }
  .form-title {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block;
    font-size: .8rem; font-weight: 500;
    color: var(--gray-text);
    margin-bottom: .4rem;
    letter-spacing: .04em;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--white);
    border: 1.5px solid rgba(10,22,40,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--navy);
    outline: none;
    transition: border-color .2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    padding: .9rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 500;
    border: none; border-radius: 50px;
    cursor: pointer;
    transition: background .2s, transform .2s;
    margin-top: .5rem;
  }
  .form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

  /* ── MAP ──────────────────────────────────────────── */
  #location { background: var(--gray-light); padding: 0; }

  .map-header {
    padding: 4rem 5% 2rem;
    text-align: center;
  }
  .map-header .section-subtitle { margin: 0 auto; }

  .map-container {
    width: 100%; height: 420px;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
  }

  .map-container iframe {
    width: 100%; height: 100%; border: none;
    filter: saturate(0.8) contrast(1.05);
  }

  .map-overlay-card {
    position: absolute; bottom: 2rem; left: 5%;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    max-width: 300px;
    border-left: 4px solid var(--gold);
  }
  .map-company {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: var(--navy);
    margin-bottom: .25rem;
  }
  .map-address {
    font-size: .82rem;
    color: var(--gray-text);
    line-height: 1.5;
  }
  .map-directions {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: .75rem;
    font-size: .8rem; font-weight: 500;
    color: var(--gold-dark);
    text-decoration: none;
    transition: color .2s;
  }
  .map-directions:hover { color: var(--gold); }

  /* ── FOOTER ───────────────────────────────────────── */
  footer {
    background: var(--navy);
    color: rgba(250,250,248,0.6);
    padding: 3rem 5% 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

 
  .footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 1rem;
    text-decoration: none;
  }
  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: var(--white);
  }
  .footer-logo-text span { color: var(--gold); }
  .footer-tagline {
    font-size: .875rem;
    line-height: 1.65;
    max-width: 260px;
    color: rgba(250,250,248,0.5);
  }

  .footer-col-title {
    font-family: var(--font-display);
    font-size: .9rem; font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: .02em;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: .6rem; }
  .footer-links a {
    color: rgba(250,250,248,0.5);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: .8rem;
  }
  .footer-copy { color: rgba(250,250,248,0.35); }
  .footer-socials { display: flex; gap: .75rem; }
  .footer-social {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(250,250,248,0.5);
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .footer-social:hover { background: var(--gold); color: var(--navy); }
  .footer-social svg { width: 16px; height: 16px; }

  /* ── RESPONSIVE ───────────────────────────────────── */
  @media (max-width: 1024px) {
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    #home { padding: 100px 5% 60px; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

    .services-header { flex-direction: column; align-items: flex-start; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .about-cards-row { grid-template-columns: 1fr; }
    .map-overlay-card { left: 1rem; right: 1rem; max-width: none; }
  }

  @media (max-width: 480px) {
    section { padding: 4rem 1.25rem; }
    nav { padding: 1rem 1.25rem; }
    .footer-top { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── SCROLL ANIMATIONS ────────────────────────────── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  .stagger-1 { transition-delay: .1s; }
  .stagger-2 { transition-delay: .2s; }
  .stagger-3 { transition-delay: .3s; }
  .stagger-4 { transition-delay: .4s; }
  .stagger-5 { transition-delay: .5s; }
  .stagger-6 { transition-delay: .6s; }

  /* ── TOAST ────────────────────────────────────────── */
  .toast {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    z-index: 9999;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* <!-- WhatsApp Floating Button --> */
 .whatsapp-float-pro {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float-pro svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float-pro:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Glow pulse */
.whatsapp-float-pro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 75px;
  background: #0A1628;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s;
  white-space: nowrap;
}

.whatsapp-float-pro:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* get qoute */

/* Overlay Background */
.quote-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.quote-box {
  background: #0A1628;
  padding: 28px 24px;
  border-radius: 14px;
  width: 90%;
  max-width: 380px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: popupFade 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Title */
.text-quote {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Inputs + Select + Textarea */
.quote-box input,
.quote-box select,
.quote-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--gray-light);;
  color: #0A1628;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

/* Focus effect */
.quote-box input:focus,
.quote-box select:focus,
.quote-box textarea:focus {
  border-color: #E8A020;
  box-shadow: 0 0 0 2px rgba(232,160,32,0.2);
}

/* Placeholder color */
.quote-box input::placeholder,
.quote-box textarea::placeholder {
  color: #0A1628;
}

/* Button */
.quote-box button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #E8A020, #B57A10);
  color: #0A1628;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
}

/* Button hover */
.quote-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,160,32,0.3);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #fff;
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* //designed by */
.project-credit{
  text-align: center;
}
.project-credit a {
  color: rgba(250, 250, 248, 0.5);
  text-decoration: none;
  text-align: center;
}

.project-credit a:hover {
  color:#E8A020 ;
}