 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box
 }

 :root {
   --gold: #C9A84C;
   --gold-light: #E8C97A;
   --gold-dark: #8B6914;
   --dark: #1A1A1A;
   --darker: #0D0D0D;
   --white: #FFFFFF;
   --off-white: #F8F6F1;
   --light-gray: #F2F0EB;
   --mid-gray: #888;
   --marble: #F5F3EE;
   --text-dark: #1C1C1C;
   --text-mid: #4A4A4A;
   --text-light: #888;
 }

 html {
   scroll-behavior: smooth
 }

 body {
   font-family: 'Inter', sans-serif;
   color: var(--text-dark);
   background: var(--white);
   overflow-x: hidden
 }

 /* SCROLLBAR */
 ::-webkit-scrollbar {
   width: 4px
 }

 ::-webkit-scrollbar-track {
   background: #f1f1f1
 }

 ::-webkit-scrollbar-thumb {
   background: var(--gold);
   border-radius: 2px
 }

 /* NAV */
 nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   background: rgba(26, 26, 26, 0.97);
   backdrop-filter: blur(12px);
   padding: 0 40px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 64px;
   transition: all 0.3s ease
 }

 nav.scrolled {
   background: rgb(13 13 13 / 59%);
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3)
 }

 .nav-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none
 }

 .nav-logo-icon {
   width: 36px;
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Playfair Display', serif;
   font-weight: 700;
   font-size: 16px;
   color: var(--dark)
 }
 .nav-logo-icon img {
    width: 100%;
    border-radius: 20px;
}
 .nav-logo-text {
   color: var(--white);
   font-size: 13px;
   line-height: 1.2
 }

 .nav-logo-text span {
   display: block;
   font-weight: 300;
   font-size: 11px;
   color: rgba(255, 255, 255, 0.6)
 }

 .nav-links {
   display: flex;
   align-items: center;
   gap: 32px
 }

 .nav-links a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   font-size: 13px;
   font-weight: 400;
   transition: color 0.3s;
   letter-spacing: 0.3px
 }

 .nav-links a:hover {
   color: var(--gold)
 }

 .nav-links a.active {
   color: var(--gold)
 }

 .nav-cta {
   background: var(--gold);
   color: var(--dark);
   padding: 9px 20px;
   border-radius: 4px;
   font-size: 13px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s;
   letter-spacing: 0.3px
 }

 .nav-cta:hover {
   background: var(--gold-light);
   transform: translateY(-1px)
 }

 .hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 4px
 }

 .hamburger span {
   width: 22px;
   height: 2px;
   background: var(--white);
   transition: all 0.3s
 }

 /* HERO */
 .hero {
   position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 60px 80px;
  overflow: hidden;
  background: var(--darker);
 }

 .hero-bg {
   position: absolute;
   inset: 0;
   z-index: 0
 }

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* video hidden — using fallback image so it always looks great */
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.70) 55%,
    rgba(13,13,13,0.40) 100%
  );
}

 .hero-content {
   position: relative;
   z-index: 2;
   max-width: 1200px;
   padding: 0 40px;
   padding-top: 64px
 }

 .hero-tag {
   display: inline-block;
   color: var(--gold);
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 3px;
   text-transform: uppercase;
   margin-bottom: 20px;
   opacity: 0;
   animation: fadeUp 0.8s 0.3s forwards
 }

 .hero h1 {
   font-family: 'Playfair Display', serif;
   font-size: clamp(52px, 7vw, 96px);
   font-weight: 900;
   color: var(--white);
   line-height: 1.0;
   letter-spacing: -2px;
   max-width: 766px;
   opacity: 0;
   animation: fadeUp 0.8s 0.5s forwards
 }

 .hero h1 span {
   color: var(--gold)
 }

 .hero-sub {
   color: rgba(255, 255, 255, 0.7);
   font-size: 16px;
   font-weight: 300;
   margin-top: 20px;
   max-width: 420px;
   line-height: 1.7;
   opacity: 0;
   animation: fadeUp 0.8s 0.7s forwards
 }

 .hero-btns {
   display: flex;
   gap: 16px;
   margin-top: 36px;
   opacity: 0;
   animation: fadeUp 0.8s 0.9s forwards
 }

 .btn-primary {
   background: var(--gold);
   color: var(--dark);
   padding: 14px 32px;
   border-radius: 4px;
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block
 }

 .btn-primary:hover {
   background: var(--gold-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35)
 }

 .btn-outline {
   border: 1.5px solid rgba(255, 255, 255, 0.5);
   color: var(--white);
   padding: 14px 32px;
   border-radius: 4px;
   font-size: 14px;
   font-weight: 400;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block
 }

 .btn-outline:hover {
   border-color: var(--gold);
   color: var(--gold)
 }

 .hero-stats {
   position: absolute;
   bottom: 48px;
   left: 40px;
   right: 40px;
   display: flex;
   gap: 0;
   z-index: 2;
   max-width: 700px;
   opacity: 0;
   animation: fadeUp 0.8s 1.1s forwards
 }

 .hero-stat {
   flex: 1;
   padding: 0 32px 0 0;
   border-right: 1px solid rgba(255, 255, 255, 0.15)
 }

 .hero-stat:first-child {
   padding-left: 0
 }

 .hero-stat:last-child {
   border-right: none
 }

 .hero-stat-num {
   font-family: 'Playfair Display', serif;
   font-size: 32px;
   font-weight: 700;
   color: var(--gold)
 }

 .hero-stat-label {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 2px;
   letter-spacing: 0.5px
 }

 .hero-scroll {
   position: absolute;
   right: 40px;
   top: 50%;
   transform: translateY(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px
 }

 .hero-scroll-line {
   width: 1px;
   height: 80px;
   background: linear-gradient(to bottom, transparent, var(--gold), transparent);
   animation: scrollPulse 2s infinite
 }

 .hero-scroll-text {
   writing-mode: vertical-rl;
   font-size: 10px;
   letter-spacing: 3px;
   color: rgba(255, 255, 255, 0.4);
   text-transform: uppercase
 }

 /* SVG HERO BG */
 .hero-svg-decoration {
   position: absolute;
   right: -100px;
   top: 50%;
   transform: translateY(-50%);
   z-index: 1;
   opacity: 0.06
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(24px)
   }

   to {
     opacity: 1;
     transform: translateY(0)
   }
 }

 @keyframes scrollPulse {

   0%,
   100% {
     opacity: 0.3
   }

   50% {
     opacity: 1
   }
 }

 /* SECTION COMMON */
 section {
   padding: 50px 40px
 }

 .section-inner {
   max-width: 1200px;
   margin: 0 auto
 }

 .section-tag {
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 12px
 }

 .section-title {
   font-family: 'Playfair Display', serif;
   font-size: clamp(32px, 4vw, 52px);
   font-weight: 700;
   color: var(--text-dark);
   line-height: 1.15
 }

 .section-sub {
   color: var(--text-mid);
   font-size: 15px;
   margin-top: 12px;
   line-height: 1.7;
   max-width: 520px
 }

 .reveal {
   opacity: 0;
   transform: translateY(32px);
   transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1)
 }

 .reveal.visible {
   opacity: 1;
   transform: translateY(0)
 }

 .reveal-left {
   opacity: 0;
   transform: translateX(-32px);
   transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1)
 }

 .reveal-left.visible {
   opacity: 1;
   transform: translateX(0)
 }

 .reveal-right {
   opacity: 0;
   /*transform: translateX(32px);*/
   /*transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1)*/
 }

 .reveal-right.visible {
   opacity: 1;
   /*transform: translateX(0)*/
 }

 /* SERVICES */
 .services-bg {
   background: var(--white)
 }

 .services-header {
   display: flex;
   align-items: center;
   margin-bottom: 56px;
   flex-direction: column;
   text-align: center;
 }

 .services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px;
   justify-items: center;
 }

 .service-card {
   position: relative;
   width: 100%;
   aspect-ratio: 0.78;
   border-radius: 22px;
   overflow: hidden;
   padding: 18px;
   border: 1px solid rgba(0, 0, 0, .08);
   box-shadow:
     0 12px 35px rgba(0, 0, 0, .08),
     inset 0 1px 0 rgba(255, 255, 255, .7);
   transition: .45s ease;
   cursor: pointer;
   text-decoration:none;
   color:inherit;
    display:block;
 }

 .service-card.steel {
   background: url(../images/Premium_brushed_stainless_steel_texture,_202606260029.jpeg);
 }

 .service-card.marble {
   background: url(../images/Luxury_Italian_Calacatta_marble_slab,_202606260033.jpeg);
 }

 .card-img {
   width: 100%;
   height: 52%;
   object-fit: cover;
   border-radius: 16px;
   display: block;
   box-shadow:
     0 8px 24px rgba(0, 0, 0, .12);
 }

 .service-card:hover {

   transform: translateY(-10px);

   box-shadow:
     0 25px 60px rgba(0, 0, 0, .16);

 }

 .service-card:hover .card-img {

   transform: scale(1.04);

 }

 .card-img {

   transition: .5s ease;

 }

 .service-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
   transition: all 0.4s
 }

 .service-content {
   display: flex;
   flex-direction: column;
   height: 100%;
 }

 .service-card h3 {

   margin-top: 24px;

   font-family: "Cormorant Garamond", serif;

   font-size: 3rem;

   font-weight: 600;

   line-height: .95;

   letter-spacing: -1px;

   color: #111;
 }

 .service-card p {

   margin-top: 18px;

   font-size: 1rem;

   line-height: 1.55;

   opacity: .78;

   max-width: 92%;

   font-weight: 400;

 }

 .service-tag {

   position: absolute;
   top: 28px;
   left: 28px;

   background: #C8A46A;
   color: #111;

   padding: 6px 14px;

   border-radius: 40px;

   font-size: .72rem;
   font-weight: 600;

   display: none;

 }

 /* SVG ILLUSTRATIONS */

 .arch-illustration {
   width: 100%;
   height: auto
 }

 /* STATS BAR */
 .stats-bar {
   background: var(--dark);
   padding: 32px 40px
 }

 .stats-bar-inner {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-around;
   align-items: center
 }

 .stat-item {
   text-align: center
 }

 .stat-num {
   font-family: 'Playfair Display', serif;
   font-size: 36px;
   font-weight: 700;
   color: var(--gold)
 }

 .stat-label {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 4px
 }

 .stat-divider {
   width: 1px;
   height: 50px;
   background: rgba(255, 255, 255, 0.1)
 }

 /* PROCESS & TIMELINE */
 .process-bg {
   background: var(--marble)
 }

 .timeline-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: start;
   margin-top: 64px
 }

 .timeline-left .section-title {
   font-size: clamp(28px, 3.5vw, 46px)
 }

 .timeline-list {
   margin-top: 40px;
   position: relative
 }

 .timeline-list::before {
   content: '';
   position: absolute;
   left: 20px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1))
 }

 .timeline-item {
   display: flex;
   gap: 24px;
   margin-bottom: 36px;
   position: relative
 }

 .timeline-dot {
   width: 40px;
   height: 40px;
   background: var(--gold);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   z-index: 1;
   transition: transform 0.3s, box-shadow 0.3s
 }

 .timeline-item:hover .timeline-dot {
   transform: scale(1.15);
   box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.15)
 }

 .timeline-dot svg {
   width: 18px;
   height: 18px;
   stroke: var(--dark);
   fill: none;
   stroke-width: 2
 }

 .timeline-body h4 {
   font-family: 'Playfair Display', serif;
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 6px;
   color: var(--text-dark)
 }

 .timeline-body p {
   font-size: 13px;
   color: var(--text-mid);
   line-height: 1.7
 }

 .timeline-right {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px
 }

 .timeline-photo {
   border-radius: 8px;
   overflow: hidden;
   position: relative
 }

 .timeline-photo:first-child {
   grid-column: span 2
 }

 .timeline-photo img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   transition: transform 0.5s ease;
   display: block
 }

 .timeline-photo:first-child img {
   height: 200px
 }

 .timeline-photo:hover img {
   transform: scale(1.05)
 }

 .play-btn {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(0, 0, 0, 0.3)
 }

 .play-btn svg {
   width: 44px;
   height: 44px;
   stroke: var(--white);
   fill: rgba(255, 255, 255, 0.2);
   stroke-width: 1.5
 }

 /* CITIES MAP */
 .cities-section {
   background: var(--white)
 }

 .cities-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
   margin-top: 64px
 }

 .map-container {
   position: relative
 }

 .wb-map {
   width: 100%;
   max-width: 420px
 }

 .city-pin {
   cursor: pointer;
   transition: transform 0.3s
 }

 .city-pin:hover {
   transform: scale(1.2)
 }

 .city-cards {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
   margin-top: 32px
 }

 .city-card {
   background: var(--light-gray);
   border-radius: 10px;
   padding: 20px;
   transition: all 0.3s;
   cursor: pointer;
   border: 1.5px solid transparent
 }

 .city-card:hover {
   background: var(--white);
   border-color: var(--gold);
   transform: translateY(-3px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08)
 }

 .city-card h4 {
   font-family: 'Playfair Display', serif;
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 10px;
   color: var(--text-dark)
 }

 .city-card ul {
   list-style: none
 }

 .city-card ul li {
   font-size: 12px;
   color: var(--text-mid);
   padding: 3px 0;
   display: flex;
   align-items: center;
   gap: 6px
 }

 .city-card ul li::before {
   content: '•';
   color: var(--gold);
   font-size: 14px
 }

 /* PROJECTS FOLIO */
 .projects-bg {
   background: var(--off-white)
 }

 .projects-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 48px
 }

 .projects-filter {
   display: flex;
   gap: 8px
 }

 .filter-btn {
   padding: 8px 20px;
   border-radius: 100px;
   border: 1.5px solid var(--light-gray);
   background: var(--white);
   font-size: 13px;
   cursor: pointer;
   transition: all 0.3s;
   color: var(--text-mid)
 }

 .filter-btn.active,
 .filter-btn:hover {
   background: var(--dark);
   color: var(--white);
   border-color: var(--dark)
 }

 .projects-masonry {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px
 }

 .project-card {
   border-radius: 12px;
   overflow: hidden;
   position: relative;
   cursor: pointer
 }

 .project-card:nth-child(1) {
   grid-row: span 2
 }

 .project-card:nth-child(4) {
   grid-column: span 2
 }

 .project-card img {
   width: 100%;
   height: 100%;
   min-height: 220px;
   object-fit: cover;
   transition: transform 0.6s ease;
   display: block
 }

 .project-card:hover img {
   transform: scale(1.05)
 }

 .project-card-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
   opacity: 0;
   transition: opacity 0.4s
 }

 .project-card:hover .project-card-overlay {
   opacity: 1
 }

 .project-card-info {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 20px;
   transform: translateY(10px);
   opacity: 0;
   transition: all 0.4s
 }

 .project-card:hover .project-card-info {
   transform: translateY(0);
   opacity: 1
 }

 .project-card-info h4 {
   color: var(--white);
   font-family: 'Playfair Display', serif;
   font-size: 18px;
   font-weight: 600
 }

 .project-badge {
   display: inline-block;
   background: var(--gold);
   color: var(--dark);
   font-size: 10px;
   font-weight: 600;
   padding: 3px 10px;
   border-radius: 3px;
   letter-spacing: 1px;
   margin-top: 6px;
   text-transform: uppercase
 }

 /* TESTIMONIALS */
 .testimonials-bg {
   background: var(--marble)
 }

 .testimonials-header {
   text-align: center;
   margin-bottom: 64px
 }

 .testimonials-header .section-sub {
   margin: 0 auto;
   text-align: center
 }

 .testimonials-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px
 }

 .testimonial-card {
   background: var(--white);
   border-radius: 12px;
   padding: 32px;
   position: relative;
   transition: all 0.4s;
   border: 1.5px solid transparent
 }

 .testimonial-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
   border-color: var(--gold-light)
 }

 .quote-icon {
   font-family: 'Playfair Display', serif;
   font-size: 64px;
   color: var(--gold);
   line-height: 0.7;
   margin-bottom: 16px;
   display: block;
   opacity: 0.6
 }

 .testimonial-card p {
   font-size: 14px;
   color: var(--text-mid);
   line-height: 1.8;
   font-style: italic
 }

 .testimonial-author {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-top: 24px;
   padding-top: 20px;
   border-top: 1px solid var(--light-gray)
 }

 .author-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--gold);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   font-size: 14px;
   color: var(--dark);
   flex-shrink: 0
 }

 .author-name {
   font-weight: 600;
   font-size: 14px;
   color: var(--text-dark)
 }

 .author-role {
   font-size: 12px;
   color: var(--text-light)
 }

 .testimonial-dots {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-top: 40px
 }

 .t-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.15);
   cursor: pointer;
   transition: all 0.3s
 }

 .t-dot.active {
   background: var(--gold);
   width: 24px;
   border-radius: 4px
 }

 /* PARTNER BRANDS */
 .brands-section {
   background: var(--white);
   padding: 60px 40px
 }

 .brands-inner {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center
 }

 .brands-title {
   font-family: 'Playfair Display', serif;
   font-size: 28px;
   margin-bottom: 40px;
   color: var(--text-dark)
 }

 .brands-row {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 48px;
   flex-wrap: wrap
 }

 .brand-item {
   opacity: 0.5;
   transition: all 0.3s;
   filter: grayscale(100%);
   cursor: pointer
 }

 .brand-item:hover {
   opacity: 1;
   filter: grayscale(0%)
 }

 .brand-logo {
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center
 }

 .brand-name {
   font-size: 18px;
   font-weight: 700;
   letter-spacing: 1px;
   color: var(--text-dark)
 }

 /* FAQ */
 .faq-section {
   background: var(--off-white)
 }

 .faq-inner {
   max-width: 800px;
   margin: 0 auto
 }

 .faq-title {
   text-align: center;
   font-family: 'Playfair Display', serif;
   font-size: 36px;
   margin-bottom: 8px
 }

 .faq-sub {
   text-align: center;
   color: var(--text-mid);
   font-size: 14px;
   margin-bottom: 48px
 }

 .faq-item {
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   overflow: hidden
 }

 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 22px 0;
   cursor: pointer;
   font-size: 15px;
   font-weight: 500;
   color: var(--text-dark);
   transition: color 0.3s;
   user-select: none
 }

 .faq-question:hover {
   color: var(--gold)
 }

 .faq-arrow {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: var(--light-gray);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: all 0.4s
 }

 .faq-item.open .faq-arrow {
   background: var(--gold);
   transform: rotate(45deg)
 }

 .faq-arrow svg {
   width: 14px;
   height: 14px;
   stroke: currentColor;
   stroke-width: 2;
   fill: none
 }

 .faq-item.open .faq-arrow svg {
   stroke: var(--dark)
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, padding 0.4s
 }

 .faq-answer-inner {
   font-size: 14px;
   color: var(--text-mid);
   line-height: 1.8;
   padding-bottom: 20px
 }

 .faq-item.open .faq-answer {
   max-height: 200px
 }

 /* CTA SECTION */
 .cta-section {
   background: var(--dark);
   padding: 100px 40px;
   position: relative;
   overflow: hidden
 }

 .cta-bg-art {
   position: absolute;
   inset: 0;
   opacity: 0.05
 }

 .cta-inner {
   max-width: 900px;
   margin: 0 auto;
   text-align: center;
   position: relative;
   z-index: 2
 }

 .cta-tag {
   color: var(--gold);
   font-size: 11px;
   letter-spacing: 3px;
   text-transform: uppercase;
   font-weight: 600;
   margin-bottom: 16px
 }

 .cta-title {
   font-family: 'Playfair Display', serif;
   font-size: clamp(36px, 5vw, 68px);
   font-weight: 900;
   color: var(--white);
   line-height: 1.1;
   letter-spacing: -1px
 }

 .cta-sub {
   color: rgba(255, 255, 255, 0.6);
   font-size: 16px;
   margin-top: 20px;
   line-height: 1.7
 }

 .cta-btns {
   display: flex;
   justify-content: center;
   gap: 16px;
   margin-top: 48px;
   flex-wrap: wrap
 }

 .btn-gold {
   background: var(--gold);
   color: var(--dark);
   padding: 16px 40px;
   border-radius: 4px;
   font-size: 15px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block;
   border: none;
   cursor: pointer
 }

 .btn-gold:hover {
   background: var(--gold-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4)
 }

 .btn-white-outline {
   border: 1.5px solid rgba(255, 255, 255, 0.4);
   color: var(--white);
   padding: 16px 40px;
   border-radius: 4px;
   font-size: 15px;
   font-weight: 400;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block
 }

 .btn-white-outline:hover {
   border-color: var(--gold);
   color: var(--gold)
 }

 .cta-deco-line {
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   top: 0;
   width: 1px;
   height: 80px;
   background: linear-gradient(to bottom, var(--gold), transparent);
   opacity: 0.4
 }

 /* FOOTER */
 footer {
   background: var(--darker);
   padding: 72px 40px 40px
 }

 .footer-inner {
   max-width: 1200px;
   margin: 0 auto
 }

 .footer-top {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
   gap: 48px;
   margin-bottom: 56px
 }

 .footer-brand .nav-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
   margin-bottom: 20px
 }

 .footer-brand p {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.45);
   line-height: 1.8;
   max-width: 240px
 }

 .footer-col h5 {
   color: var(--white);
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-bottom: 20px
 }

 .footer-col ul {
   list-style: none
 }

 .footer-col ul li {
   margin-bottom: 10px
 }

 .footer-col ul li a {
   color: rgba(255, 255, 255, 0.45);
   font-size: 13px;
   text-decoration: none;
   transition: color 0.3s;
   display: block
 }

 .footer-col ul li a:hover {
   color: var(--gold)
 }

 .footer-contact-item {
   display: flex;
   gap: 8px;
   margin-bottom: 12px;
   align-items: flex-start
 }

 .footer-contact-item span {
   color: rgba(255, 255, 255, 0.45);
   font-size: 12px;
   line-height: 1.6
 }

 .footer-contact-label {
   color: var(--gold);
   font-size: 10px;
   font-weight: 600;
   letter-spacing: 1px;
   display: block;
   text-transform: uppercase
 }

 .footer-map {
   border-radius: 8px;
   overflow: hidden;
   margin-top: 16px;
   border: 1px solid rgba(255, 255, 255, 0.1)
 }

 .footer-map-placeholder {
   width: 100%;
   height: 100px;
   background: #2a2a2a;
   display: flex;
   align-items: center;
   justify-content: center
 }

 .footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   padding-top: 32px;
   flex-wrap: wrap;
   gap: 16px
 }

 .footer-copy {
   color: rgba(255, 255, 255, 0.3);
   font-size: 12px
 }

 .footer-links-bottom {
   display: flex;
   gap: 24px
 }

 .footer-links-bottom a {
   color: rgba(255, 255, 255, 0.3);
   font-size: 12px;
   text-decoration: none;
   transition: color 0.3s
 }

 .footer-links-bottom a:hover {
   color: var(--gold)
 }

 .footer-social {
   display: flex;
   gap: 12px
 }

 .social-btn {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s;
   cursor: pointer
 }

 .social-btn:hover {
   border-color: var(--gold);
   background: var(--gold)
 }

 .social-btn svg {
   width: 14px;
   height: 14px;
   stroke: rgba(255, 255, 255, 0.5);
   fill: none;
   stroke-width: 2
 }

 .social-btn:hover svg {
   stroke: var(--dark)
 }

 /* MOBILE NAV */
 .mobile-menu {
   display: none;
   position: fixed;
   top: 64px;
   left: 0;
   right: 0;
   background: rgba(13, 13, 13, 0.99);
   padding: 20px 40px 32px;
   z-index: 999;
   flex-direction: column;
   gap: 0;
   border-top: 1px solid rgba(255, 255, 255, 0.08)
 }

 .mobile-menu.open {
   display: flex
 }

 .mobile-menu a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   font-size: 15px;
   padding: 14px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   display: block
 }

 .mobile-menu a:last-child {
   border-bottom: none;
   color: var(--gold);
   font-weight: 600
 }

 /* CURSOR GLOW */
 .cursor-glow {
   position: fixed;
   pointer-events: none;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
   transform: translate(-50%, -50%);
   z-index: 9999;
   transition: opacity 0.3s;
   opacity: 0
 }

 /* SCROLL PROGRESS */
 .scroll-progress {
   position: fixed;
   top: 0;
   left: 0;
   height: 2px;
   background: var(--gold);
   z-index: 2000;
   transition: width 0.1s linear
 }

 /* BACK TO TOP */
 .back-top {
   position: fixed;
   bottom: 32px;
   right: 32px;
   width: 44px;
   height: 44px;
   background: var(--gold);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 999;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.3s;
   box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4)
 }

 .back-top.visible {
   opacity: 1;
   transform: translateY(0)
 }

 .back-top:hover {
   background: var(--gold-light);
   transform: translateY(-3px)
 }

 .back-top svg {
   width: 18px;
   height: 18px;
   stroke: var(--dark);
   fill: none;
   stroke-width: 2.5
 }

 /* IMAGE PLACEHOLDERS */
 .img-placeholder {
   background: linear-gradient(135deg, #e8e0d0 0%, #d4c9b5 50%, #c4b89f 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden
 }

 .img-ph-arch {
   background: linear-gradient(135deg, #2a2520 0%, #3d3530 50%, #2a2520 100%)
 }

 .img-ph-int {
   background: linear-gradient(135deg, #e8d5b5 0%, #d4b896 50%, #c4a07c 100%)
 }

 .img-ph-fab {
   background: linear-gradient(135deg, #3a3535 0%, #504a40 50%, #3a3530 100%)
 }

 .img-ph-land {
   background: linear-gradient(135deg, #3a5a3a 0%, #4a7045 50%, #3a5a3a 100%)
 }

 .img-ph-house {
   background: linear-gradient(135deg, #c8d4b8 0%, #b4c4a0 50%, #a0b08a 100%)
 }

 .img-ph-ext {
   background: linear-gradient(135deg, #d4c4a0 0%, #c4a87c 50%, #b89060 100%)
 }

 .img-ph-interior {
   background: linear-gradient(135deg, #f0e8d8 0%, #e0d0b8 50%, #d0b89a 100%)
 }

 @media(max-width:900px) {
   nav {
     padding: 0 20px
   }

   .nav-links,
   .nav-cta {
     display: none
   }

   .hamburger {
     display: flex
   }

   section {
     padding: 72px 20px
   }

   .services-grid,
   .projects-masonry,
   .testimonials-grid,
   .timeline-grid,
   .cities-grid,
   .footer-top {
     grid-template-columns: 1fr
   }

   .hero-content {
     padding: 0 20px;
     padding-top: 64px
   }

   .hero h1 {
     font-size: 48px
   }

   .hero-stats {
     flex-wrap: wrap;
     bottom: 32px;
     left: 20px
   }

   .stats-bar-inner {
     flex-wrap: wrap;
     gap: 24px;
     justify-content: center
   }

   .brands-row {
     gap: 24px
   }

   .projects-masonry{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
}

.project-card,
.project-card:nth-child(1),
.project-card:nth-child(4){
    grid-column:auto !important;
    grid-row:auto !important;
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}


   .hero-scroll {
     display: none
   }

   .footer-bottom {
     flex-direction: column;
     align-items: flex-start
   }
 }
/* ══════════════════════════════════════════════════════
   ELECTRICAL WIRING SERVICE PAGE — ARCHITECT FOR YOU
   All rules prefixed elec- to avoid any conflicts with
   the existing homepage stylesheet.
══════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────── */
.elec-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 60px 80px;
  overflow: hidden;
  background: var(--darker);
}

.elec-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.elec-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* video hidden — using fallback image so it always looks great */
}

.elec-hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.elec-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.70) 55%,
    rgba(13,13,13,0.40) 100%
  );
}

.elec-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1200px;
}

.elec-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.elec-hero-h1 span {
  color: var(--gold);
}

/* ── HERO FORM ─────────────────────────────────────── */
.elec-hero-form {
  position: relative;
  z-index: 2;
  width: 340px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.elec-form-tag {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

.elec-form-group {
  margin-bottom: 12px;
}

.elec-form-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.elec-form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.elec-form-input option {
  background: #1a1a1a;
  color: var(--white);
}

.elec-form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.elec-form-textarea {
  resize: none;
  min-height: 76px;
}

.elec-form-btn {
  width: 100%;
  margin-top: 6px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}

.elec-form-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.4);
}

/* ── TRUST SECTION OVERRIDE ────────────────────────── */
.elec-trust {
  padding: 40px 60px;
}

.elec-trust .stat-num {
  font-size: 48px;
}

/* ── ELECTRICAL SERVICES GRID ──────────────────────── */
.elec-services-section {
  background: var(--white);
  padding: 100px 40px;
}

.elec-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.elec-service-card {
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 28px 22px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}

.elec-service-card:hover {
  background: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.elec-service-icon {
  width: 44px;
  height: 44px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.elec-service-card:hover .elec-service-icon {
  background: rgba(201,168,76,0.15);
}

.elec-service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.elec-service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.elec-service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── VIDEO SHOWCASE ─────────────────────────────────── */
.elec-video-section {
  background: var(--darker);
  padding: 100px 40px;
}

.elec-video-section .section-tag,
.elec-video-section .section-title {
  color: var(--white);
}

.elec-video-header {
  text-align: center;
  margin-bottom: 56px;
}

.elec-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.elec-video-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.elec-video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.elec-video-card:hover .elec-video-thumb {
  transform: scale(1.03);
}

.elec-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.15) 60%,
    transparent 100%
  );
}

.elec-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.25);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s;
  z-index: 2;
}

.elec-play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  stroke: none;
  margin-left: 3px;
}

.elec-play-btn:hover,
.elec-video-card:hover .elec-play-btn {
  background: var(--gold);
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: 0 0 0 12px rgba(201,168,76,0.15);
}

.elec-play-btn:hover svg,
.elec-video-card:hover .elec-play-btn svg {
  fill: var(--dark);
}

.elec-video-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  z-index: 2;
  font-family: 'Playfair Display', serif;
}

/* ── WHY CHOOSE (Split) ─────────────────────────────── */
.elec-why-section {
  background: var(--off-white);
  padding: 100px 40px;
}

.elec-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.elec-why-image {
  position: relative;
}

.elec-why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.elec-why-img-wrap > div {
  width: 95px;
    height: 108px;
}

.elec-why-img-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.elec-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.elec-badge-txt {
  font-size: 11px;
  font-weight: 600;
  color: rgba(26,26,26,0.75);
  text-align: center;
  margin-top: 4px;
  line-height: 1.3;
}

.elec-why-content {
  padding: 0;
}

.elec-why-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.elec-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.elec-check-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.elec-check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2.5;
}

.elec-why-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.elec-why-item span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PROCESS (Horizontal) ──────────────────────────── */
.elec-process-section {
  padding: 100px 40px;
}

.elec-process-track {
  position: relative;
  padding-bottom: 8px;
}

.elec-process-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2));
  z-index: 0;
}

.elec-process-steps {
  display: flex;
  gap: 0;
  justify-content: space-between;
  min-width: 700px;
}

.elec-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.elec-process-dot {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.elec-process-step:hover .elec-process-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 12px rgba(201,168,76,0.15);
}

.elec-process-dot svg {
  width: 22px;
  height: 22px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
}

.elec-process-arrow {
  display: none;
}

.elec-process-step h5 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.elec-process-step p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 130px;
}

/* ── MATERIALS ───────────────────────────────────────── */
.elec-materials-section {
  background: var(--white);
  padding: 100px 40px;
}

.elec-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.elec-brand-card {
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  transition: all 0.35s;
  cursor: default;
}

.elec-brand-card:hover {
  background: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.elec-brand-name {
    height: 100px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-transform: uppercase;
}
.elec-brand-name img{
      width: 100%;
    height: 100%;
    object-fit: cover;
}

.elec-brand-type {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 5px;
  letter-spacing: 0.3px;
  text-align: center;
}

/* ── COMPLETED PROJECTS (Masonry) ─────────────────── */
.elec-completed-section {
  padding: 100px 40px;
}

.elec-completed-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.elec-completed-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* First card spans 2 rows */
.elec-completed-card:nth-child(1) {
  grid-row: span 2;
}

/* Last card spans 2 columns */
.elec-completed-card:nth-child(5) {
  grid-column: span 2;
}

.elec-completed-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.elec-completed-card:hover .elec-completed-img {
  transform: scale(1.05);
}

.elec-completed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.4s;
}

.elec-completed-card:hover .elec-completed-overlay {
  opacity: 1;
}

.elec-completed-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}

.elec-completed-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
}

.elec-completed-video .elec-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* ── PROJECT IMAGE SIZING FIX ──────────────────────── */
.elec-proj-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── FINAL CTA ───────────────────────────────────────── */
.elec-final-cta {
  position: relative;
  background: var(--darker);
  padding: 140px 40px;
}

.elec-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.elec-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.88) 100%);
}
.dropdown{
    position:relative;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:5px;
}

.dropdown-menu{

    position:absolute;

    top:100%;

    left:0;

    width:280px;

    background:#071321;

    border:1px solid rgba(217,164,65,.2);

    border-radius:18px;

    padding:12px 0;

    backdrop-filter:blur(20px);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;

    z-index:9999;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu a{

    display:block;

    padding:12px 22px;

    color:#fff;

    transition:.3s;

}

.dropdown-menu a:hover{

    background:rgba(217,164,65,.08);

    color:#D9A441;

    padding-left:28px;

}

.mobile-title{

    color:#D9A441;

    font-weight:700;

    margin:15px 0 10px;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:1px;

}
/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .elec-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .elec-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px 60px;
  }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px 60px;
  }
  .elec-hero-form {
    width: 100%;
    margin-top: 32px;
  }
  .elec-hero-h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .elec-why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .elec-video-grid {
    grid-template-columns: 1fr;
  }
  .elec-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .elec-completed-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .elec-completed-card:nth-child(1) {
    grid-row: unset;
  }
  .elec-completed-card:nth-child(5) {
    grid-column: unset;
  }
  .elec-process-steps {
    gap: 15px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    min-width: 0px;
  }
  .elec-brands-row {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .elec-brand-name{
    width: 180px;
    height: unset;
  }
  .elec-trust {
    padding: 40px 20px;
  }
  .elec-why-img-wrap {
    aspect-ratio: 4/3;
  }
  .projects-header{
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
  }
  .projects-filter{
    gap: 2px;
  }
  .afy-dock{
    left: 32% !important;
    width: 150px !important;
  }
  .hero-btns{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .elec-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .elec-service-card {
    padding: 20px 16px;
  }
  .elec-completed-masonry {
    grid-template-columns: 1fr;
  }
  .elec-brand-card {
    min-width: 110px;
    padding: 18px 20px;
  }
}
/* ----------------------- cta popup css ----------------------- */

/* ==========================================================================
   Architect For You — Global CTA Popup
   Namespaced entirely under .afy-popup-root to avoid any collision with
   host page styles. No bare element selectors, no IDs, no globals.
   ========================================================================== */

.afy-popup-root,
.afy-popup-root * {
  box-sizing: border-box;
}

.afy-popup-root {
  --afy-bg-primary: #071321;
  --afy-bg-secondary: #0e1c2f;
  --afy-gold: #d9a441;
  --afy-gold-hover: #e5b85a;
  --afy-text-primary: #ffffff;
  --afy-text-secondary: #e5e7eb;
  --afy-text-tertiary: #a8b0ba;
  --afy-border: rgba(217, 164, 65, 0.18);
  --afy-glass-bg: rgb(149 149 149 / 18%);
  --afy-glass-border: rgba(217, 164, 65, 0.2);
  --afy-whatsapp: #25d366;
  --afy-call: #25c4d3;
  --afy-radius: 24px;
  --afy-font-display: "Playfair Display", Georgia, serif;
  --afy-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  position: fixed;
  inset: 0;
  width: 0;
  height: 0;
  z-index: 2147483000;
  font-family: var(--afy-font-body);
  color: var(--afy-text-primary);
}

/* ---------- shared resets within the namespace ---------- */
.afy-popup-root button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.afy-popup-root a {
  color: inherit;
  text-decoration: none;
}

/* ---------- overlay (mobile only, dims page behind expanded card) ---------- */
.afy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 12, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  z-index: 2147483001;
}

.afy-popup-root[data-afy-state="expanded"] .afy-overlay {
  opacity: 0;
}

@media (max-width: 640px) {
  .afy-popup-root[data-afy-state="expanded"] .afy-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---------- dock (collapsed orb) ---------- */
.afy-dock {
      position: fixed;
    left: 50%;
    bottom: 0;
    width: 150px;
    height: 64px;
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(150deg, var(--afy-gold) 0%, #c08f35 100%) !important;
    box-shadow: 0 8px 24px rgba(217, 164, 65, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483002;
    transform: scale(1);
    opacity: 1;
    transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 220ms ease, box-shadow 280ms ease;
    pointer-events: auto;
}

.afy-dock:hover {
  box-shadow:
    0 10px 28px rgba(217, 164, 65, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.afy-dock-icon {
  width: 26px;
  height: 26px;
  color: var(--afy-bg-primary);
}

.afy-popup-root[data-afy-state="expanded"] .afy-dock {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* gentle one-time pulse to earn attention without being a banner */
.afy-dock[data-afy-pulse="true"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--afy-gold);
  animation: afy-pulse-ring 2.2s ease-out 1;
}

@keyframes afy-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* dock unread-style dot, shown once before first interaction */
.afy-dock-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--afy-whatsapp);
  border: 2px solid var(--afy-bg-primary);
  opacity: 0;
  transition: opacity 200ms ease;
}

.afy-dock[data-afy-pulse="true"] .afy-dock-dot {
  opacity: 1;
}

/* ---------- card (expanded state) ---------- */
.afy-card {
  position: fixed;
  left: 38.3%;
  bottom: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: var(--afy-radius);
  background: #c9a84c40;
  border: 1px solid var(--afy-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.3);
  transform-origin: bottom right;
  transform: scale(0.4) translateY(12px);
  opacity: 0;
  pointer-events: none;
  z-index: 2147483002;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease;
}

.afy-popup-root[data-afy-state="expanded"] .afy-card {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .afy-card {
    right: 16px;
    left: 16px;
    bottom: 35px;
    width: auto;
    max-width: none;
  }
}

/* ---------- card header ---------- */
.afy-card-header {
  position: relative;
  padding: 28px 24px 4px;
}

.afy-close {
  position: absolute;
  top: 16px;
  right: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--afy-text-tertiary);
  transition: background 180ms ease, color 180ms ease;
}

.afy-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--afy-text-primary);
}

.afy-close svg {
  width: 16px;
  height: 16px;
}

/* badge — the signature element */
.afy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(217, 164, 65, 0.1);
  border: 1px solid var(--afy-border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--afy-gold);
  margin-bottom: 16px;
}

.afy-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--afy-gold);
  flex-shrink: 0;
}

.afy-title {
  font-family: var(--afy-font-display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--afy-gold);
  margin: 9px 0 8px;
  position: relative;
  padding-bottom: 12px;
}

.afy-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--afy-gold);
}

.afy-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin: 0 0 4px;
}

/* ---------- city picker (only rendered when needed) ---------- */
.afy-city-picker {
  padding: 4px 24px 8px;
}

.afy-city-label {
  font-size: 12px;
  color: #000;
  margin-bottom: 10px;
}

.afy-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.afy-city-chip {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--afy-border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--afy-text-secondary);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.afy-city-chip:hover {
  border-color: var(--afy-gold);
  color: var(--afy-text-primary);
  background: rgba(217, 164, 65, 0.08);
}

/* ---------- actions ---------- */
.afy-actions {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.afy-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.afy-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.afy-btn:active {
  transform: scale(0.98);
}

.afy-btn-primary {
  background: var(--afy-gold);
  color: var(--afy-bg-primary);
  box-shadow: 0 4px 14px rgba(217, 164, 65, 0.3);
}

.afy-btn-primary:hover {
  background: var(--afy-gold-hover);
  box-shadow: 0 6px 18px rgba(217, 164, 65, 0.4);
}

.afy-btn-whatsapp {
  background: var(--afy-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.afy-btn-whatsapp:hover {
  background: #2ee079;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.afy-btn-ghost {
  background: var(--afy-call);
  border: 1px solid var(--afy-border);
  color: var(--afy-text-secondary);
}

.afy-btn-ghost:hover {
  border-color: var(--afy-gold);
  color: var(--afy-text-primary);
  background: rgba(217, 164, 65, 0.05);
}

/* ---------- footer microcopy ---------- */
.afy-footer-note {
  text-align: center;
  font-size: 11px;
  color: #000;
  padding: 0 24px 20px;
  margin: -6px 0 0;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .afy-popup-root *,
  .afy-popup-root *::before {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- keyboard focus visibility ---------- */
.afy-popup-root button:focus-visible,
.afy-popup-root .afy-city-chip:focus-visible {
  outline: 2px solid var(--afy-gold);
  outline-offset: 2px;
}