:root {
  --color-bg:            #ffffff;
  --color-bg-light:      #fbfbfb;
  --color-bg-newsletter: #ccd3e2;
  --color-gold:          #a18e4f;
  --color-gold-from:     rgba(178, 153, 96, 0.60);
  --color-cta-green:     #3eeb3e;
  --color-badge-from:    #ffdd00;
  --color-badge-to:      #ff9500;
  --color-purple:        #8b5cf6;
  --color-white:         #ffffff;
  --font-inter:          'Inter', sans-serif;
  --font-figtree:        'Figtree', sans-serif;
  --radius-pill:         999px;
  --radius-card:         28px;
  --radius-sm:           8px;
  --max-width:           1440px;
  --content-pad:         82px;
  --color-newsletter-card: #e9ebee;
  --radius-lg: 12px;
  --color-black: #000000;
  --color-text-primary: #000000;
}

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

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

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

body {
  font-family: var(--font-inter);
  background: var(--color-bg);
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 2px;
}

/* ── Utility ────────────────────────────────────────────────── */
.brand__gold { color: var(--color-gold); }


/* ── Shared buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-inter);
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--cta {
  padding: 15px 32px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: var(--color-black);
  background: var(--color-cta-green);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-pill);
}

.btn__arrow { width: 20px; height: 20px; object-fit: contain; }



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

.site-header{
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;
}

/* ===== STAGGERED FULL BOUNCE CYCLE ===== */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================
   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: 100;
    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;
}

.dot{
  margin: 0 10px;
}


/* Base styles for all icons */
.social-links img {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}

/* ===== Main Header ===== */
.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: 24px;
}

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

.tagline {
    font-size: 16px;
    line-height: 19px;
    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;
}




.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===== Newsletter Section ===== */
.newsletter {
    background-color: var(--color-bg-newsletter);
    padding: clamp(2rem, 8vw, 6.25rem) clamp(1rem, 5vw, 13.75rem);
    min-height: 496px;
    position: relative;
}

.newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-newsletter-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-wrap: wrap;  /* Allow wrapping on mobile */
    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: 100%;
    max-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;
    line-height: 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: 20px;
}

.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;
}

.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;
}


/* --------------------------------------------------------------------------
   5. Main Content Layout
   -------------------------------------------------------------------------- */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 0;
}






/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding: 50px 0;
  background: var(--color-bg-light);
  width: 100%;
}

/* Heading block */
.portfolio__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 619px;
  width: 100%;
  padding: 0 16px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label__text {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.section-label__line {
  display: block;
  width: 60px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.portfolio__title {
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: 1.15;
}

.portfolio__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-black);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 35px 12px;
  border-top: 1.5px solid var(--color-black);
  border-bottom: 1.5px solid var(--color-black);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  background: transparent;
  border: 1px solid var(--color-black);
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.filter-btn:focus {
  outline: 1.5px solid var(--color-black);
  outline-offset: 2px;
}

.filter-btn img { width: 22px; height: 22px; object-fit: contain; }

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-black);
  color: var(--color-white);
}
.filter-btn.active img,
.filter-btn:hover img { filter: invert(1); }

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1144px;
  padding: 0 16px;
}

/* Project card */
.project-card {
  position: relative;
  width: 100%;
  height: 255px;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 19px 21px;
}

.project-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}


.project-card__img.active {
   opacity: 1;
}

.project-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.project-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card__btn {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 15px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.project-card__btn img {
  width: 18px;
  height: 18px;
}

/* hover show */
.project-card:hover .project-card__btn {
  opacity: 1;
  transform: translateY(0);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-black);
  background: linear-gradient(to right, var(--color-badge-from), var(--color-badge-to));
  color: var(--color-black);
  align-self: flex-start;
}

.project-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  top: 50%;
  transform: translateY(30%);
}

.project-card__title,
.project-card__location {
  transition: color 0.4s ease;
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.tag--outline-white {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.tag--white-solid {
  background: var(--color-white);
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  color: var(--color-black);
}
.tag--white-border-black {
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

/* Card title */
.project-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 24px;
}
.project-card__title--dark { color: var(--color-black); }
.project-card__title--white { color: var(--color-white); }

/* Card location */
.project-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
}
.project-card__location--dark { color: var(--color-black); }
.project-card__location--white { color: var(--color-white); }

/* SVG map pin */
.project-card__pin {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* Title spacing from tag */
.project-card__meta > div { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }

/* Placeholder card */
.project-card--placeholder {
  background: var(--color-white);
  border: 1px solid var(--color-black);
  align-items: center;
  justify-content: center;
}

.project-card__placeholder-text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
}

.cta-section {
  width: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 13.46%, var(--color-white) 80.29%);
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding: 75px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  text-align: center;
  padding: 0 16px;
}

.cta-section__heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.3;
  color: var(--color-black);
}
.cta-section__heading--white { color: var(--color-white); }

.cta-section__sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 22px;
}

/* OVERLAY */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.65); /* dark overlay */
  padding: 100px 0;
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

.modal.active {
  display: block;
}
  

.modal__content {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

/* IMAGE */
.modal__img {
  width: 100%;
  height: 550px; /* ✅ correct */
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* BODY */
.modal__body {
  padding: 20px;
}

/* TOP ROW */
.modal__top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.modal__tag {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 14px;
  line-height: 17px
}

.modal__date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 17px;
}

/* TITLE */
.modal__title {
  font-size: 31px;
  font-weight: 600;
  line-height: 38px;
  margin: 10px 0;
}

/* LOCATION */
.modal__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

/* TEXT */
.modal__text {
  font-size: 16px;
  line-height: 19px;
}

.modal__text ol {
  margin: 10px 0 20px 20px;
}

/* FOOTER */
.modal__footer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTON */
.modal__btn {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 14px 20px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* FILE */
.modal__file {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CLOSE */
.modal__close {
  position: absolute;
  top: 50px;
  right: 250px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.modal__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

/* form X */
.modal__close span:nth-child(1) {
  transform: rotate(45deg);
}

.modal__close span:nth-child(2) {
  transform: rotate(-45deg);
}
.modal__close:hover {
  transform: scale(1.15) rotate(90deg);
  background: #000;
}

/* animate lines on hover */
.modal__close:hover span {
  background: #fff;
}

/* ===== 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;
}

/* Responsive small screens */
@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;
  }
}


@media (max-width: 1200px) {
  :root { --content-pad: 40px; }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0 40px;
  }

  .footer-top { gap: 40px; padding: 25px 40px 0; }
}

/* ── Small Tablet (≤ 900px) ─────────────────────────────────── */
@media (max-width: 900px) {


  .footer-columns {
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col {
  flex: 1 1 200px;
  align-items: flex-start;
}

  .nav__links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .nav__links a { font-size: 14px; }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 20px;
  }

  .portfolio { gap: 32px; padding: 40px 0; }

  .footer-top { flex-direction: column; gap: 32px; padding: 25px 20px 0; }
  .footer-brand { width: 100%; }
}

/* ── Mobile (≤ 600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
  
  .newsletter-envelope {
  right: -20px;
  width: 70%;
}
  .project-card__btn {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__links { justify-content: flex-start; }

  .projects-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }

  .project-card { height: 220px; }
  .project-card__body { width: 100%; }

  .filter-bar { padding: 20px 16px; gap: 8px; }
  .filter-btn { padding: 10px 14px; font-size: 13px; }

  .cta-section {
    padding: 50px 20px;
  }
  .cta-section__inner { gap: 24px; }

  .footer-top { padding: 25px 16px 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .portfolio__title { font-size: 32px; }
  .portfolio__desc { font-size: 15px; }
}

/* ============================================
   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;
  }
}