/* ===================== RESET & BASE ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #e6f1ff;
  background: #0a192f;
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== SECTION TITLES ===================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d060);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  color: #8892b0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===================== NAVIGATION ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0a192f;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.logo-text .tag {
  font-size: 0.65rem;
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccd6f6;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #c9a84c;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  color: #0a192f !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: #e6f1ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a192f 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: #c9a84c;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .sub-heading {
  font-size: 1.1rem;
  color: #8892b0;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  color: #0a192f !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(201, 168, 76, 0.4);
  color: #e6f1ff;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-card .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero-card .stat-item {
  text-align: center;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card .stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-card .stat-item .label {
  font-size: 0.75rem;
  color: #8892b0;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card .services-mini {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-card .services-mini span {
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
  font-size: 0.7rem;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ===================== HERO SLIDESHOW ===================== */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(17, 34, 64, 0.7) 50%, rgba(10, 25, 47, 0.85) 100%);
}

.hero-slide-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-slide-indicators .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slide-indicators .dot.active {
  background: #c9a84c;
  border-color: #c9a84c;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.hero-slide-indicators .dot:hover {
  background: rgba(201, 168, 76, 0.5);
  border-color: rgba(201, 168, 76, 0.5);
}

/* Slide content overlays for multi-slide hero */
.slide-content {
  display: none;
}

.slide-content.active {
  display: block;
  animation: slideContentIn 0.8s ease forwards;
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== ABOUT PREVIEW (Home) ===================== */
.about-preview {
  padding: 100px 0;
  background: #112240;
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.02));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.about-image .placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent);
  top: -50px;
  right: -50px;
  border-radius: 50%;
}

.about-image .exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  color: #0a192f;
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}

.about-image .exp-badge .big {
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

.about-image .exp-badge .small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.8;
}

.about-text .tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-text p {
  color: #8892b0;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccd6f6;
  font-size: 0.9rem;
}

.about-features li i {
  color: #c9a84c;
  font-size: 0.9rem;
}

/* ===================== SERVICES ===================== */
.services-section {
  padding: 100px 0;
  background: #0a192f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d060);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #c9a84c;
  transition: all 0.4s ease;
}

.service-card:hover .icon {
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  color: #0a192f;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  color: #8892b0;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================== WHY US / STATS ===================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #112240, #0a192f);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
}

.stat-box .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-box .label {
  color: #8892b0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  padding: 100px 0;
  background: #112240;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: #c9a84c;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  color: #ccd6f6;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #f0d060);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0a192f;
}

.testimonial-card .author .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

.testimonial-card .author .role {
  font-size: 0.75rem;
  color: #8892b0;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0a192f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo-text .brand {
  font-size: 1.1rem;
}

.footer-brand p {
  color: #8892b0;
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8892b0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c9a84c;
  color: #0a192f;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #8892b0;
  font-size: 0.88rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #c9a84c;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #8892b0;
  font-size: 0.88rem;
}

.footer-contact li i {
  color: #c9a84c;
  margin-top: 4px;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #5a6a8a;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #8892b0;
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: #c9a84c;
}

/* ===================== INNER PAGE HERO ===================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0a192f, #112240);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-hero p {
  color: #8892b0;
  font-size: 1.05rem;
}

/* ===================== ABOUT PAGE ===================== */
.about-page {
  padding: 80px 0;
}

.about-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-page .content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-page .content p {
  color: #8892b0;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.mv-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
}

.mv-box .icon {
  font-size: 1.8rem;
  color: #c9a84c;
  margin-bottom: 12px;
}

.mv-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.mv-box p {
  font-size: 0.88rem !important;
}

/* ===================== SERVICES PAGE ===================== */
.services-page {
  padding: 80px 0;
}

.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===================== PROJECTS PAGE ===================== */
.projects-page {
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 168, 76, 0.2);
}

.project-card .thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #c9a84c;
  position: relative;
}

.project-card .thumb .category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(201, 168, 76, 0.15);
  color: #c9a84c;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.project-card .info {
  padding: 24px;
}

.project-card .info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.project-card .info p {
  color: #8892b0;
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ===================== CONTACT PAGE ===================== */
.contact-page {
  padding: 80px 0;
}

.contact-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info > p {
  color: #8892b0;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-details .item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 1.1rem;
}

.contact-details .item h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-details .item p {
  color: #8892b0;
  font-size: 0.88rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: #ccd6f6;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #e6f1ff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #c9a84c;
}

.form-group select option {
  background: #112240;
  color: #e6f1ff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================== PAGE TRANSITIONS ===================== */
.page-content {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 66px;
  background: #ffffff;
  color: #075e54;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* ===================== PAGE TRANSITIONS ===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .services-grid,
  .testimonial-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-visual {
    display: none;
  }

  .about-preview .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image .exp-badge {
    right: 10px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .page-hero h1 {
    font-size: 2rem;
  }

  .services-grid,
  .testimonial-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-page .container,
  .contact-page .container {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-box .number {
    font-size: 2rem;
  }
}
