/* =========================================================
   GLOBAL RESET & BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7f7f7;
  color: #111;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 92%;
  max-width: 1250px;
  margin: auto;
}

/* Section */
.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #111;
  color: #fff;
}

.center {
  text-align: center;
}

/* Section Head */
.section-head h2 {
  font-size: 38px;
  font-weight: 700;
  margin-top: 10px;
}

.section-kicker {
  letter-spacing: 3px;
  font-size: 13px;
  color: #e02020;
  font-weight: 600;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Progress */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff3b3b, #ffb3b3);
  width: 0;
  z-index: 9999;
}

/* Loader */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#pageLoader.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

.loader-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e02020;
  animation: pulse 0.6s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); opacity: .5; }
  to { transform: scale(1.6); opacity: 1; }
}

.loader-text {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}

/* =========================================================
   NAVBAR
========================================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 999;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 52px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #e02020;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #e02020;
  color: #fff;
}

.btn-primary:hover {
  background: #c01818;
  transform: translateY(-3px);
}

.btn-ghost-light {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-ghost-light:hover {
  background: #fff;
  color: #111;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-premium {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Hero background image */
.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/top.png") center/cover no-repeat;
  filter: brightness(0.78) contrast(1.05);
}

/* Vignette + edge highlights */
.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      transparent 55%,
      rgba(0,0,0,0.28)
    ),
    linear-gradient(to top,
      rgba(255,255,255,0.09),
      transparent 40%
    ),
    linear-gradient(to bottom,
      rgba(255,255,255,0.05),
      transparent 40%
    );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Glow following cursor */
.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Shimmer overlay (very soft rose tone) */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 35% 50%,
    rgba(255,150,150,0.04),
    transparent 75%
  );
  animation: heroShimmer 12s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Parallax layers (transparent now) */
.hero-layer-1,
.hero-layer-2 {
  position: absolute;
  inset: 0;
  background: transparent !important;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-glass {
  max-width: 650px;
  padding: 40px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin: 10px 0 15px;
  font-weight: 700;
}

/* Text shine on span */
.hero-title span {
  background: linear-gradient(120deg, #ff4a4a, #ffffff, #ff4a4a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: heroShine 5s linear infinite;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.hero-subtitle {
  margin: 15px 0 28px;
  opacity: 0.85;
  font-size: 17px;
  line-height: 1.5;
}

/* Hero meta */
.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.85;
}

.hero-meta span {
  background: rgba(255,255,255,0.14);
  padding: 8px 16px;
  border-radius: 20px;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  margin-top: 45px;
}

.about-grid p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 10px 18px;
  background: #f2f2f2;
  border-radius: 20px;
  font-size: 14px;
  color: #444;
  transition: 0.3s;
}

.pill-list span:hover {
  background: #e02020;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================================================
   WHY GHK SECTION
========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 45px;
}

.card {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  color: #111;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  transition: 0.35s;
  border: 1px solid rgba(0,0,0,0.05);
}

.card-dark {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  opacity: 0.85;
}

.micro-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.with-glow {
  position: relative;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  animation: floatBlob 10s ease-in-out infinite alternate;
}

.glow-1 {
  top: -80px;
  left: -120px;
  background: #ff4747;
}

.glow-2 {
  bottom: -90px;
  right: -160px;
  background: #ff9494;
}

@keyframes floatBlob {
  from { transform: translateY(-40px) rotate(10deg); }
  to { transform: translateY(40px) rotate(-10deg); }
}

.service-grid {
  margin-top: 45px;
}

.service-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(224,32,32,0.28);
  border-color: rgba(224,32,32,0.5);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(224,32,32,0.12);
  color: #e02020;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.9;
}

/* =========================================================
   FEATURED PROJECT SECTION
========================================================= */
.featured-section {
  padding-top: 90px;
  padding-bottom: 100px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 30px;
  margin-top: 45px;
}

.featured-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
  height: 280px;        /* smaller height */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* subtle glow around featured images */
.featured-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0, rgba(255,120,120,0.3), transparent 55%),
              radial-gradient(circle at 80% 100%, rgba(255,255,255,0.18), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-image:hover::before {
  opacity: 1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.featured-image:hover img {
  transform: scale(1.06);
}

.featured-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(17,17,17,0.7);
  padding: 6px 14px;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
}

.featured-label-after {
  background: rgba(224,32,32,0.7);
}

.featured-copy {
  padding: 20px;
  background: #1c1c1c;
  border-radius: 16px;
  color: #fff;
  height: fit-content;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

.featured-copy h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.featured-copy p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.55;
}

.featured-copy ul {
  margin: 18px 0 20px;
  padding-left: 18px;
}

.featured-copy ul li {
  margin-bottom: 6px;
  opacity: 0.85;
}

.featured-btn {
  padding: 10px 20px;
  display: inline-block;
}

/* =========================================================
   STATS SECTION
========================================================= */
.stats-row {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #e02020;
}

.stat-label {
  display: block;
  font-size: 15px;
  margin-top: 6px;
  opacity: 0.8;
}

/* =========================================================
   GALLERY SECTION (FEATURED WORK)
========================================================= */
.gallery {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

/* each item fixed ratio so they don’t become too tall */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  cursor: pointer;
  aspect-ratio: 4 / 3;              /* keeps size controlled */
}

/* glow effect */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(circle at 10% 0, rgba(255,140,140,0.4), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(255,255,255,0.25), transparent 55%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.55));
}

.gallery-item figcaption {
  position: absolute;
  bottom: 12px;
  left: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.gallery-item figcaption span {
  display: block;
  font-size: 13px;
  opacity: 0.8;
}

/* =========================================================
   TESTIMONIALS SLIDER
========================================================= */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 320px;
  max-width: 350px;
  background: #1b1b1b;
  color: #fff;
  padding: 25px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: 0.9;
}

.testimonial-name {
  font-size: 14px;
  opacity: 0.7;
}

/* Arrow buttons */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e02020;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

#testPrev { left: -10px; }
#testNext { right: -10px; }

.testimonial-nav:hover {
  background: #c01818;
}

/* =========================================================
   LOGO STRIP (MARQUEE)
========================================================= */
.client-strip {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollLogos 26s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  height: 55px;
  transition: 0.3s;
  filter: none !important;
  opacity: 0.95;
  /* soft glow for logos */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border-radius: 10px;
  background: #fff;
  padding: 6px 10px;
}

.logo-track img:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 26px rgba(224,32,32,0.35);
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   CLIENT GRID
========================================================= */
.client-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
}

.client-card {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.35s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.client-card img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(224,32,32,0.28);
  border-color: rgba(224,32,32,0.4);
}

.more-clients-text {
  margin-top: 25px;
  text-align: center;
  font-size: 15px;
  opacity: 0.7;
}

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section {
  padding-top: 90px;
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.contact-list {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  font-size: 20px;
  color: #e02020;
}

.contact-item span {
  font-weight: 600;
  font-size: 14px;
}

.contact-item a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
}

.contact-note {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.75;
}

/* Contact form */
.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* Floating fields */
.floating-field {
  position: relative;
  margin-bottom: 22px;
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fafafa;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: 0.25s;
}

.floating-field textarea {
  height: 110px;
  resize: none;
}

.floating-field label {
  position: absolute;
  left: 15px;
  top: 14px;
  color: #777;
  font-size: 15px;
  transition: 0.25s;
  pointer-events: none;
}

/* On typing */
.floating-field input:focus + label,
.floating-field textarea:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:not(:placeholder-shown) + label {
  top: -9px;
  background: #fff;
  padding: 0 6px;
  font-size: 12px;
  color: #e02020;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 40px;
}

.spinner {
  width: 0;
  height: 0;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 10px;
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
}



/* =========================================================
   BACK TO TOP BUTTON
========================================================= */
#backToTop {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: #e02020;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
}

#backToTop:hover {
  background: #c01818;
  transform: scale(1.05);
}

/* =========================================================
   LEAD POPUP
========================================================= */
.lead-popup {
  position: fixed;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  padding: 18px 25px;
  border-radius: 14px;
  color: #fff;
  display: none;
  align-items: center;
  gap: 18px;
  z-index: 8999;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.lead-popup p {
  margin: 0;
  font-size: 15px;
}

.lead-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.75;
}

.lead-close:hover {
  opacity: 1;
}

.lead-btn {
  background: #e02020;
  padding: 8px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

/* =========================================================
   CHAT WIDGET
========================================================= */
.chat-toggle {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9001;
}

.chat-toggle i {
  font-size: 22px;
}

.chat-widget {
  position: fixed;
  bottom: 110px;
  right: 24px;
  width: 320px;
  max-width: 90%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9002;
}

.chat-header {
  background: #111;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header span {
  font-size: 14px;
  font-weight: 500;
}

.chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  background: #f7f7f7;
  padding: 12px;
  max-height: 260px;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 10px;
  max-width: 85%;
}

.chat-message p {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
}

.chat-message-bot p {
  background: #111;
  color: #fff;
  border-bottom-left-radius: 3px;
}

.chat-message-user {
  margin-left: auto;
  text-align: right;
}

.chat-message-user p {
  background: #e02020;
  color: #fff;
  border-bottom-right-radius: 3px;
}

.chat-input-row {
  display: flex;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.chat-input-row input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 13px;
}

.chat-input-row button {
  width: 44px;
  border: none;
  background: #e02020;
  color: #fff;
  cursor: pointer;
}

.chat-input-row button i {
  font-size: 14px;
}

/* =========================================================
   FOOTER (PREMIUM)
========================================================= */
.footer {
  position: relative;
  background: #0f0f0f;
  color: #fff;
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(224,32,32,0.25), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(255,90,90,0.15), transparent 70%);
  opacity: 0.55;
  animation: footerGlow 10s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  from { opacity: 0.55; }
  to { opacity: 0.75; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-size: 17px;
  color: #ff4a4a;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ff4a4a;
}

.footer-logo {
  height: 60px;
  margin-bottom: 14px;
}

.footer-text {
  line-height: 1.5;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  opacity: 0.8;
}

/* =========================================================
   SUCCESS MODAL
========================================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 12000;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  animation: popIn 0.3s ease;
  position: relative;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  opacity: 0.6;
}

.modal-close:hover {
  opacity: 1;
}

.modal-ok {
  margin-top: 18px;
}

/* =========================================================
   BUTTONS & UTILITIES
========================================================= */
.btn-small {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-magnetic {
  transition: transform 0.2s ease;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.hidden { display: none !important; }

.section-pin {
  position: relative;
  z-index: 1;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* Tablets */
@media (max-width: 992px) {

  .hero-title {
    font-size: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #testPrev { left: 0; }
  #testNext { right: 0; }
}

/* Mobile */
@media (max-width: 768px) {

  .header {
    padding: 12px 0;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(17,17,17,0.95);
    flex-direction: column;
    width: 220px;
    padding: 20px 0;
    display: none;
    border-radius: 0 0 0 18px;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 12px 20px;
    font-size: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-glass {
    padding: 28px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 14px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Extra Small (Phones) */
@media (max-width: 500px) {

  .hero-title {
    font-size: 30px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .client-card img {
    width: 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .chat-widget {
    right: 12px;
    bottom: 90px;
    width: 92%;
  }

  .chat-toggle {
    right: 12px;
  }
}

/* =========================================================
   EXTRA ANIMATIONS
========================================================= */

/* Hero shimmer overlay */
@keyframes heroShimmer {
  0% {
    transform: translateX(-10px) translateY(-5px);
    opacity: 0.7;
  }
  50% {
    transform: translateX(10px) translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 0.8;
  }
}

/* Hero text shine */
@keyframes heroShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,.85);
display:none;
justify-content:center;
align-items:center;
z-index:99999;
padding:30px;
}

.service-modal.active{
display:flex;
}

.service-modal-content{
background:#fff;
width:95%;
max-width:1200px;
max-height:90vh;
overflow-y:auto;
padding:40px;
border-radius:20px;
position:relative;
}

.close-modal{
position:absolute;
top:20px;
right:25px;
font-size:35px;
cursor:pointer;
font-weight:700;
}

#modalTitle{
margin-bottom:30px;
text-align:center;
}

.modal-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.modal-item{
background:#f8f8f8;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.modal-item:hover{
transform:translateY(-5px);
}

.modal-item img{
width:100%;
height:180px;
object-fit:cover;
}

.modal-item h4{
padding:15px;
text-align:center;
font-size:16px;
}