/* ============================================================
   INTERIOR CRAFT STUDIO — Complete Stylesheet
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1a1a2e;
  background: #fafafa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #d4a017, #d4a017); border-radius: 4px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; line-height: 1.3; }
p { line-height: 1.8; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Section ---- */
.section-padding { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-subtitle {
  display: inline-block;
  color: #d4a017;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}
.section-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary { background: #d4a017; color: #fff; }
.btn-primary:hover { background: #b8860b; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212,160,23,0.3); }
.btn-accent { background: #d4a017; color: #fff; }
.btn-accent:hover { background: #c49515; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid #d4a017; color: #d4a017; }
.btn-outline:hover { background: #d4a017; color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #0f172a; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.spinner {
  width: 50px; height: 50px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #d4a017; border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
.page-transition {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 99998; display: flex; pointer-events: none;
}
.page-transition .panel {
  flex: 1; background: #0f172a;
  transform: scaleY(0); transform-origin: bottom;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-outline {
  pointer-events: none; position: fixed; z-index: 99997; border-radius: 50%;
}
.cursor-dot { width: 8px; height: 8px; background: #d4a017; }
.cursor-outline { width: 40px; height: 40px; border: 2px solid #d4a017; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: all 0.4s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; z-index: 1001; }
.nav-company-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
  color: #fff; transition: color 0.3s;
}
.navbar.scrolled .nav-company-name { color: #0f172a; }
.nav-links { display: flex; align-items: center; }
.nav-links ul { display: flex; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85); position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: #d4a017;
  transition: width 0.3s; transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: #d4a017; }
.navbar.scrolled .nav-link { color: #0f172a; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: #d4a017; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; z-index: 1001; }
.search-btn, .dark-mode-toggle {
  color: #fff; font-size: 1.1rem; padding: 0.5rem; transition: color 0.3s;
}
.navbar.scrolled .search-btn, .navbar.scrolled .dark-mode-toggle { color: #0f172a; }
.dark-mode-toggle .fa-sun { display: none; }
body.dark-mode .dark-mode-toggle .fa-moon { display: none; }
body.dark-mode .dark-mode-toggle .fa-sun { display: inline; }
.dark-mode-toggle{display:none}

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 1001;
}
.hamburger span { width: 25px; height: 2px; background: #fff; transition: all 0.3s; }
.navbar.scrolled .hamburger span { background: #0f172a; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: #0f172a; z-index: 10000; transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 2rem;
}
.mobile-drawer.active { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.drawer-company-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.drawer-close { color: #fff; font-size: 1.5rem; }
.drawer-nav ul { list-style: none; }
.drawer-link {
  display: block; padding: 0.85rem 0; color: rgba(255,255,255,0.8);
  font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.drawer-link:hover, .drawer-link.active { color: #d4a017; padding-left: 0.5rem; }
.drawer-footer { margin-top: auto; }
.drawer-social { display: flex; gap: 1rem; }
.drawer-social a { color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.drawer-social a:hover { color: #d4a017; }
body.menu-open { overflow: hidden; }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15,23,42,0.95); backdrop-filter: blur(20px);
  z-index: 10001; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-container { width: 90%; max-width: 600px; position: relative; }
.search-close { position: absolute; top: -60px; right: 0; color: #fff; font-size: 2rem; }
.search-form { display: flex; border-bottom: 2px solid rgba(255,255,255,0.3); }
.search-input {
  flex: 1; background: none; border: none; color: #fff;
  font-size: 1.5rem; padding: 1rem 0; outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-submit { color: #d4a017; font-size: 1.25rem; padding: 0 0.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  /* overflow: hidden; background: #0f172a; */
}
.hero-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-bg-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat; z-index: -2;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15,23,42,0.6), rgba(15,23,42,0.35)); z-index: -1;
}
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-block; background: rgba(212,160,23,0.15); color: #d4a017;
  padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem; border: 1px solid rgba(212,160,23,0.3);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 1.5rem); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-caption {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  margin-bottom: 2rem; padding-left: 2px;
  border-left: 3px solid #d4a017; padding: 0.5rem 0 0.5rem 1rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.mouse {
  width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px; margin: 0 auto 0.5rem; position: relative;
}
.wheel {
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================================
   ABOUT SECTION (Home Page - Redesigned)
   ============================================================ */
.about-section { background: #fff; position: relative; overflow: hidden; }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-images { position: relative; padding-right: 2rem; }
.about-img-main-wrap {
  border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-main-wrap::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(212,160,23,0.1), transparent);
}
.about-img-main { width: 100%; height: 450px; object-fit: cover; display: block; }
.about-experience-badge {
  position: absolute; bottom: -20px; right: -10px;
  background: linear-gradient(135deg, #d4a017, #b8860b);
  color: #fff; padding: 1.5rem 2rem; border-radius: 16px;
  box-shadow: 0 10px 30px rgba(212,160,23,0.3);
  display: flex; align-items: center; gap: 0.75rem; z-index: 2;
}
.exp-number {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 700; line-height: 1;
}
.exp-text { font-size: 0.85rem; font-weight: 500; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }
.about-accent-line {
  position: absolute; top: 30px; left: -20px;
  width: 60px; height: 60px; border-left: 3px solid #d4a017;
  border-top: 3px solid #d4a017; border-radius: 8px 0 0 0; opacity: 0.4;
}
.about-content { }
.about-content .section-subtitle {
  display: inline-block; color: #d4a017; font-size: 0.85rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem;
}
.about-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #1a1a2e; margin-bottom: 1.25rem; line-height: 1.25; }
.about-description { color: #64748b; font-size: 1rem; line-height: 1.9; margin-bottom: 1.5rem; }
.about-features { list-style: none; margin-bottom: 2rem; }
.about-features li {
  padding: 0.5rem 0; color: #334155; font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.about-features li i { color: #d4a017; font-size: 0.8rem; flex-shrink: 0; }
.about-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600;
  font-size: 0.95rem; border: 2px solid #d4a017; color: #d4a017;
  background: transparent; transition: all 0.3s; text-decoration: none;
}
.btn-outline-gold:hover { background: #d4a017; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212,160,23,0.3); }

/* Mission & Vision */
.mission-vision-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-card, .vision-card {
  background: #fff; border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center;
}
.mv-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #d4a017);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.25rem; color: #fff;
}
.mv-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: #0f172a; }
.mv-text { color: #64748b; font-size: 0.95rem; line-height: 1.8; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.value-card {
  background: #fff; border-radius: 16px; padding: 2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.value-card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.25rem; color: #d4a017;
}
.value-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: #0f172a; }
.value-card-description { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* Founder Message */
.founder-quote-card {
  background: #fff; border-radius: 16px; padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center; max-width: 700px; margin: 0 auto;
}
.quote-icon { font-size: 3rem; color: #d4a017; margin-bottom: 1.5rem; }
.founder-quote { color: #475569; font-size: 1.05rem; line-height: 1.9; font-style: italic; margin-bottom: 2rem; }
.founder-info { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.founder-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.founder-name { font-size: 1.1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.15rem; }
.founder-designation { color: #d4a017; font-size: 0.85rem; font-weight: 500; }

/* Filter Tabs */
.service-filter-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.filter-tab {
  padding: 0.6rem 1.5rem; border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50px; background: transparent; font-size: 0.9rem;
  font-weight: 500; color: #475569; transition: all 0.3s; cursor: pointer;
}
.filter-tab:hover, .filter-tab.active { background: #d4a017; border-color: #d4a017; color: #fff; }

/* Process Timeline */
.process-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; left: 30px; top: 0; bottom: 0;
  width: 2px; background: rgba(212,160,23,0.2);
}
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.timeline-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #d4a017);
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-icon { display: none; }
.timeline-content { flex: 1; }
.timeline-title { font-size: 1.15rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
.timeline-desc { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* Testimonials Inner */
.testimonials-container { }
.featured-testimonial { }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }

/* Feature Cards */
.feature-card {
  background: #fff; border-radius: 16px; padding: 2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.feature-card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.25rem; color: #d4a017;
}
.feature-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: #0f172a; }
.feature-card-description { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.service-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-card-image { width: 100%; height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-content { padding: 1.5rem; }
.service-card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #d4a017; margin-bottom: 1rem;
}
.service-card-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; color: #0f172a; }
.service-card-description { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* Services Intro & Filter */
.services-intro { background: #f8fafc; text-align: center; }
.services-filter-section { padding: 0 0 1rem; }
.service-filter-tabs { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.filter-tab { padding: 0.6rem 1.5rem; border: 2px solid #e2e8f0; background: transparent; border-radius: 50px; cursor: pointer; font-weight: 500; transition: all 0.3s; color: #64748b; font-size: 0.9rem; }
.filter-tab:hover, .filter-tab.active { background: #d4a017; border-color: #d4a017; color: #fff; }
.services-grid-section { background: #fff; }

/* Process / How We Work */
.process-section { background: #fff; }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.timeline-item { text-align: center; padding: 2rem 1.5rem; border-radius: 16px; background: #f8fafc; transition: all 0.3s; position: relative; }
.timeline-item:hover { background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.timeline-number { font-size: 2.5rem; font-weight: 700; color: rgba(255, 255, 255, 0.90); font-family: 'Cormorant Garamond', serif; margin-bottom: 1rem; }
.timeline-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #d4a017, #b8860b); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #fff; font-size: 1.3rem; }
.timeline-content { }
.timeline-title { font-size: 1.1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.75rem; }
.timeline-desc { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-us-section { background: #f8fafc; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section { background: #0f172a; position: relative; overflow: hidden; }
.stats-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.stats-overlay {
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(212,160,23,0.15), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(212,160,23,0.1), transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 2rem; }
.stat-icon { font-size: 2rem; color: #d4a017; margin-bottom: 1rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 700; color: #fff; margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.team-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.team-card-image { position: relative; height: 280px; overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-social {
  position: absolute; bottom: 0; left: 0; width: 100%; padding: 1rem;
  display: flex; gap: 0.75rem; justify-content: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  transform: translateY(100%); transition: transform 0.4s;
}
.team-card:hover .team-card-social { transform: translateY(0); }
.team-card-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; transition: all 0.3s;
}
.team-card-social a:hover { background: #d4a017; }
.team-card-content { padding: 1.5rem; }
.team-card-name { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.25rem; color: #0f172a; }
.team-card-designation { color: #d4a017; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.team-card-experience { color: #64748b; font-size: 0.85rem; margin-bottom: 0.75rem; }
.team-card-experience i { color: #d4a017; margin-right: 0.25rem; }
.team-card-description { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider { overflow: hidden; padding-bottom: 3rem; }
.testimonials-slider .swiper-wrapper { transition-timing-function: ease-out; }
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-card-stars { color: #d4a017; font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-card-text {
  color: #475569; font-size: 0.95rem; line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-card-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-card-name { font-weight: 600; font-size: 0.95rem; color: #0f172a; margin-bottom: 0.15rem; }
.testimonial-card-location { color: #64748b; font-size: 0.8rem; }
.testimonial-card-service { color: #d4a017; font-size: 0.8rem; font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 1rem; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: #d4a017; }
.faq-item.active { border-color: #d4a017; box-shadow: 0 4px 20px rgba(212,160,23,0.1); }
.faq-item-question {
  width: 100%; padding: 1.25rem 1.5rem; background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 600; color: #0f172a; text-align: left;
  transition: all 0.3s;
}
.faq-item-question:hover { color: #d4a017; }
.faq-item-icon { transition: transform 0.3s; color: #d4a017; }
.faq-item.active .faq-item-icon { transform: rotate(180deg); }
.faq-item-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item-answer p { padding: 0 1.5rem 1.25rem; color: #64748b; line-height: 1.8; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.blog-card-image { position: relative; height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category {
  position: absolute; top: 1rem; left: 1rem;
  background: #d4a017; color: #fff; padding: 0.35rem 0.85rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.blog-card-content { padding: 1.5rem; }
.blog-card-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.8rem; color: #94a3b8; }
.blog-card-meta i { margin-right: 0.25rem; }
.blog-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: #0f172a; line-height: 1.4; }
.blog-card-excerpt {
  color: #64748b; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-link {
  color: #d4a017; font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.blog-card-link:hover { color: #d4a017; gap: 0.75rem; }

/* Featured Post */
.featured-post-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 3rem;
}
.featured-post-img { width: 100%; height: 100%; object-fit: cover; }
.featured-post-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.gallery-filter-btn {
  padding: 0.6rem 1.5rem; border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50px; background: transparent; font-size: 0.9rem;
  font-weight: 500; color: #475569; transition: all 0.3s;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: #d4a017; border-color: #d4a017; color: #fff;
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; }
.gallery-item-link { display: block; position: relative; }
.gallery-item-link img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover .gallery-item-link img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(transparent, rgba(15,23,42,0.8));
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1.5rem; opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.gallery-item-category { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.gallery-item-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff; font-size: 1.5rem; transition: transform 0.4s;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(212,160,23,0.9); display: flex; align-items: center; justify-content: center;
}
.gallery-item-icon i { margin: 0; }
.gallery-item:hover .gallery-item-icon { transform: translate(-50%, -50%) scale(1); }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.project-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.project-card-image { position: relative; height: 250px; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-card-image img { transform: scale(1.05); }
.project-card-overlay { position: absolute; top: 1rem; right: 1rem; }
.project-card-type {
  background: #d4a017; color: #fff; padding: 0.35rem 0.85rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.project-card-content { padding: 1.5rem; }
.project-card-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; color: #0f172a; }
.project-card-description { color: #64748b; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.project-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.project-card-detail { font-size: 0.8rem; color: #94a3b8; }
.project-card-detail i { color: #d4a017; margin-right: 0.25rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.contact-card {
  background: #fff; border-radius: 16px; padding: 2.5rem 2rem;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.contact-card-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #d4a017);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.5rem; color: #fff;
}
.contact-card-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; color: #0f172a; }
.contact-card-data { color: #64748b; font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.6; }
.contact-card-link { color: #d4a017; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.contact-card-link:hover { color: #d4a017; }

/* Contact Form */
.contact-form-map-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: #0f172a; }
.required { color: #ef4444; }
.form-control {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px; font-size: 0.95rem; transition: all 0.3s; background: #fff;
}
.form-control:focus { outline: none; border-color: #d4a017; box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.form-control.error { border-color: #ef4444; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-error { display: none; color: #ef4444; font-size: 0.8rem; margin-top: 0.25rem; }
.form-control.error + .form-error { display: block; }
.contact-submit-btn { width: 100%; padding: 1rem; font-size: 1rem; }
.btn-loading { display: none; }
.contact-submit-btn:disabled .btn-text { display: none; }
.contact-submit-btn:disabled .btn-loading { display: inline; }

/* Form Popup */
.form-popup {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
  z-index: 10002; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.form-popup.active { opacity: 1; visibility: visible; }
.form-popup-content {
  background: #fff; border-radius: 16px; padding: 3rem;
  text-align: center; max-width: 400px; width: 90%;
}
.form-popup-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-popup-icon .fa-check-circle { color: #22c55e; }
.form-popup-icon .fa-exclamation-circle { color: #ef4444; }
.form-popup-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-popup-message { color: #64748b; margin-bottom: 1.5rem; line-height: 1.6; }

/* Google Map */
.google-map-container { width: 100%; height: 400px; border-radius: 16px; overflow: hidden; }
.google-map-iframe { width: 100%; height: 100%; border: 0; }

/* Working Hours */
.working-hours-card {
  max-width: 600px; margin: 0 auto; background: #fff; border-radius: 16px;
  padding: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center;
}
.wh-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #d4a017);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; font-size: 1.25rem; color: #fff;
}
.working-hours-row {
  display: flex; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.working-hours-row:last-child { border-bottom: none; }
.working-hours-day { font-weight: 600; color: #0f172a; }
.working-hours-time { color: #d4a017; font-weight: 500; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative; padding: 5rem 0; background: #0f172a; overflow: hidden;
}
.cta-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cta-overlay {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.15));
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700;
  color: #fff; margin-bottom: 1rem;
}
.cta-description { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background:url(../images/inner-bg.jpg) no-repeat center; background-size: cover; padding: 8rem 0 4rem; position: relative;
}
.page-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgb(143 108 15 / 75%), rgb(9 9 8 / 75%));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: #fff; margin-bottom: 1rem;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs-nav { margin-top: 1rem; }
.breadcrumbs-list { display: flex; gap: 0.5rem; align-items: center; }
.breadcrumbs-item { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.breadcrumbs-item a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.breadcrumbs-item a:hover { color: #d4a017; }
.breadcrumbs-item-active { color: #d4a017; }
.breadcrumbs-item:not(:last-child)::after {
  content: '/'; margin-left: 0.5rem; color: rgba(255,255,255,0.4);
}

/* Footer */
.footer { background: #0f172a; }
.footer-main { padding: 5rem 0 3rem; background: #0f172a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-col { }
.footer-logo { display: block; margin-bottom: 1.25rem; }
.footer-company-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 700; color: #fff;
}
.footer-about-text { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all 0.3s;
}
.footer-social a:hover { background: #d4a017; color: #fff; transform: translateY(-3px); }
.footer-title {
  font-size: 1.2rem; font-weight: 600; color: #fff;
  margin-bottom: 1.5rem; position: relative; padding-bottom: 0.75rem;
}
.footer-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 2px; background: #d4a017;
}
.footer-links-list, .footer-services-list { list-style: none; }
.footer-links-list li, .footer-services-list li { margin-bottom: 0.65rem; }
.footer-links-list a, .footer-services-list a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  display: inline-block; transition: all 0.3s;
}
.footer-links-list a:hover, .footer-services-list a:hover { color: #d4a017; padding-left: 5px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem; color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.footer-contact-list li i { color: #d4a017; margin-top: 4px; }
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-contact-list a:hover { color: #d4a017; }
.footer-newsletter { margin-top: 2rem; }
.newsletter-title { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input {
  flex: 1; padding: 0.75rem 1rem; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 0.9rem; outline: none; transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: #d4a017; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
  padding: 0.75rem 1.25rem; background: #d4a017; border: none;
  border-radius: 8px; color: #fff; font-size: 0.9rem; transition: all 0.3s;
}
.newsletter-btn:hover { background: #c49515; }
.footer-bottom { padding: 1.5rem 0; background: rgba(0,0,0,0.2); }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 0.75rem; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #d4a017; }
.footer-bottom-links span { color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #d4a017; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 5rem; right: 2rem;
  width: 50px; height: 50px; border-radius: 50%;
  background: #d4a017; color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: all 0.3s;
  z-index: 999; box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #d4a017; transform: translateY(-3px); }

.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed; bottom: -100px; left: 0; width: 100%;
  background: rgba(15,23,42,0.95); backdrop-filter: blur(20px);
  padding: 1.25rem 0; z-index: 9999; transition: bottom 0.5s;
}
.cookie-consent.show { bottom: 0; }
.cookie-content {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cookie-icon { color: #d4a017; font-size: 1.5rem; }
.cookie-text { flex: 1; }
.cookie-message { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-accept, .cookie-decline {
  padding: 0.6rem 1.5rem; border: none; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem; transition: all 0.3s;
}
.cookie-accept { background: #d4a017; color: #fff; }
.cookie-accept:hover { background: #c49515; }
.cookie-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cookie-decline:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   ABOUT PAGE - OUR STORY
   ============================================================ */
.about-intro-section { background: #fff; }
.about-intro-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-intro-image { position: relative; border-radius: 16px; overflow: hidden; }
.about-intro-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; }
.about-intro-content { }
.about-intro-text { margin: 1.5rem 0 2rem; }
.about-story { color: #475569; font-size: 1rem; line-height: 1.8; }

/* Mission & Vision */
.mission-vision-section { background: #f8fafc; }
.mission-vision-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-card, .vision-card {
  background: #fff; padding: 2.5rem; border-radius: 16px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.mission-card:hover, .vision-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.mv-icon { width: 64px; height: 64px; background: rgba(212,160,23,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: #d4a017; font-size: 1.5rem; }
.mv-title { font-size: 1.25rem; font-weight: 600; color: #0f172a; margin-bottom: 1rem; }
.mv-text { color: #475569; font-size: 0.95rem; line-height: 1.8; }

/* Values */
.values-section { background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.value-card { background: #f8fafc; padding: 2rem; border-radius: 16px; text-align: center; transition: all 0.3s; }
.value-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.value-card-icon { width: 56px; height: 56px; background: rgba(212,160,23,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #d4a017; font-size: 1.25rem; }
.value-card-title { font-size: 1.1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.75rem; }
.value-card-description { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* Founder */
.founder-message-section { background: #f8fafc; }
.founder-message-wrapper { grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center; background: #fff; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.founder-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #d4a017; }
.founder-info { }
.founder-quote { color: #475569; font-size: 1.05rem; line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.founder-name { font-weight: 600; color: #0f172a; font-size: 1rem; }
.founder-designation { color: #d4a017; font-size: 0.85rem; }

/* ============================================================
   DARK MODE
   ============================================================ */
body.dark-mode { background: #0f172a; color: #e2e8f0; }
body.dark-mode .section-title { color: #fff; }
body.dark-mode .service-card,
body.dark-mode .team-card,
body.dark-mode .testimonial-card,
body.dark-mode .blog-card,
body.dark-mode .project-card,
body.dark-mode .value-card,
body.dark-mode .faq-item-question,
body.dark-mode .contact-card,
body.dark-mode .working-hours-card,
body.dark-mode .founder-quote-card,
body.dark-mode .mission-card,
body.dark-mode .vision-card { background: #1e293b; }
body.dark-mode .section-description,
body.dark-mode .service-card-description,
body.dark-mode .team-card-description,
body.dark-mode .testimonial-card-text,
body.dark-mode .blog-card-excerpt,
body.dark-mode .project-card-description,
body.dark-mode .value-card-description,
body.dark-mode .about-story,
body.dark-mode .mv-text,
body.dark-mode .founder-quote { color: #94a3b8; }
body.dark-mode .faq-item { border-color: rgba(255,255,255,0.1); }
body.dark-mode .faq-item-question { color: #fff; }
body.dark-mode .service-card-title,
body.dark-mode .team-card-name,
body.dark-mode .testimonial-card-name,
body.dark-mode .blog-card-title,
body.dark-mode .project-card-title,
body.dark-mode .value-card-title,
body.dark-mode .mv-title,
body.dark-mode .contact-card-title { color: #fff; }
body.dark-mode .form-control {
  background: #1e293b; border-color: rgba(255,255,255,0.1); color: #fff;
}
body.dark-mode .form-control:focus { border-color: #d4a017; }
body.dark-mode label { color: #e2e8f0; }

/* ============================================================
   LEGAL PAGES (Terms, Privacy)
   ============================================================ */
.legal-section { background: #fff; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-updated { display: inline-block; background: rgba(212,160,23,0.1); color: #d4a017; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.6rem; font-weight: 700; color: #0f172a; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(212,160,23,0.2); }
.legal-content h3 { font-size: 1.15rem; font-weight: 600; color: #0f172a; margin: 1.8rem 0 0.75rem; }
.legal-content p { color: #475569; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: none; padding: 0; margin: 0.5rem 0 1.5rem; }
.legal-content ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: #475569; font-size: 0.95rem; line-height: 1.7; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; background: #d4a017; border-radius: 50%; }
.legal-content strong { color: #0f172a; }
.legal-divider { border: none; border-top: 1px solid #e2e8f0; margin: 3rem 0; }
.legal-contact { background: #f8fafc; padding: 1.5rem; border-radius: 12px; margin-top: 1rem; }
.legal-contact p { margin-bottom: 0.5rem; color: #475569; }
.legal-contact i { color: #d4a017; width: 20px; margin-right: 0.5rem; }

body.dark-mode .legal-content h2,
body.dark-mode .legal-content h3 { color: #fff; }
body.dark-mode .legal-content p,
body.dark-mode .legal-content ul li { color: #94a3b8; }
body.dark-mode .legal-contact { background: #1e293b; }
body.dark-mode .legal-contact p { color: #94a3b8; }

/* ============================================================
   CUSTOM LIGHTBOX
   ============================================================ */
.custom-lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.custom-lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92); cursor: pointer;
}
.lightbox-content {
  position: relative; z-index: 1; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9); transition: transform 0.3s ease;
}
.custom-lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-caption {
  color: #fff; font-size: 1rem; margin-top: 1rem; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
}
.lightbox-close {
  position: absolute; top: -40px; right: 0; background: none;
  border: none; color: #fff; font-size: 1.5rem; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 1.2rem; cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(212,160,23,0.8); }

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: -35px; right: 5px; }
  .cookie-consent{display:none;}
  .about-layout{display: block;}
}

.pt-0{padding-top:0px !important}
.mt-3{margin-top:30px;}
.nav-company-name{display:none;}