/* ===================================
   PROFESSIONAL REAL ESTATE STYLING
   =================================== */

:root {
  --primary: #0f2a44;
  --secondary: #c9a14a;
  --accent: #667eea;
  --light: #f5f7fa;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --border: #e0e6ed;
  --success: #27ae60;
  --danger: #e74c3c;
  --warning: #f39c12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
}


/* ===== HEADER & NAVIGATION ===== */
header {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 250, 0.96) 100%);
  box-shadow: 0 12px 30px rgba(15, 30, 45, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 30, 45, 0.06);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 120px;
  max-height: 120px;
  width: auto;
  display: block;
  position: relative;
  top: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 26px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(45, 122, 92, 0.35);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #1e5a42;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

body.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::before {
  opacity: 0;
}

body.nav-open .nav-toggle span::after {
  transform: rotate(90deg);
  top: 0;
}

nav a {
  color: #1d2b34;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 2px;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.2px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2d7a5c 0%, #d4af37 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav a:hover {
  color: #1e5a42;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav a.active {
  color: #1e5a42;
}

nav a.active::after {
  transform: scaleX(1);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 110px 0 80px;
  background:
    radial-gradient(900px 500px at 5% -10%, rgba(45, 122, 92, 0.25) 0%, rgba(45, 122, 92, 0) 60%),
    radial-gradient(800px 420px at 90% 0%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 60%),
    linear-gradient(135deg, #f5f8f6 0%, #eef4f2 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.45;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: rgba(45, 122, 92, 0.12);
  top: -180px;
  right: -140px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: rgba(212, 175, 55, 0.14);
  bottom: -200px;
  left: -140px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(45, 122, 92, 0.12);
  color: #1e5a42;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d7a5c;
  box-shadow: 0 0 0 5px rgba(45, 122, 92, 0.15);
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: 50px;
  line-height: 1.1;
  color: #0f2a22;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.hero-content p {
  font-size: 17px;
  color: #50645b;
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-cta,
.hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hero-cta {
  background: linear-gradient(135deg, #2d7a5c 0%, #1e5a42 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(45, 122, 92, 0.28);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(45, 122, 92, 0.36);
}

.hero-ghost {
  background: #fff;
  color: #1e5a42;
  border: 1px solid rgba(45, 122, 92, 0.25);
}

.hero-ghost:hover {
  border-color: rgba(45, 122, 92, 0.5);
  transform: translateY(-2px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.hero-stat {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 30, 45, 0.08);
  border: 1px solid rgba(45, 122, 92, 0.12);
}

.hero-stat strong {
  display: block;
  font-size: 20px;
  color: #0f2a22;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 12px;
  color: #5b6b62;
}

.hero-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 28px 60px rgba(15, 30, 45, 0.18);
  border: 1px solid rgba(45, 122, 92, 0.18);
}

.hero-card h4 {
  margin-bottom: 16px;
  color: #0f2a22;
  font-size: 18px;
  font-weight: 700;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #55665e;
  line-height: 1.6;
}

.hero-card li i {
  color: #2d7a5c;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 90px 0 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

.about-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, #b38238 100%);
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
}

.hero button:hover, .about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 161, 74, 0.4);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-wrapper {
  padding: 80px 20px;
  background: #fff;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
}

.service-card a {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary) 0%, #b38238 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-card a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.3);
}

/* ===== ABOUT SECTION ===== */
section {
  padding: 80px 20px;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
  padding: 90px 20px;
  background:
    radial-gradient(1200px 600px at 10% -20%, #1f8f5a 0%, rgba(31, 143, 90, 0) 60%),
    radial-gradient(900px 500px at 90% 0%, #0f6b4a 0%, rgba(15, 107, 74, 0) 55%),
    linear-gradient(135deg, #0b3d2e 0%, #0f2a22 100%);
  color: #eef6f1;
}

.cert-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cert-title {
  font-size: 2.6rem;
  text-align: center;
  color: #eaf7f0;
  margin-bottom: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.cert-subtitle {
  text-align: center;
  color: rgba(234, 247, 240, 0.85);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cert-heading {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(234, 247, 240, 0.92);
  margin: 0 0 26px;
  padding: 8px 18px;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(234, 247, 240, 0.25);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 22px rgba(5, 20, 12, 0.25);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 3rem;
}

.cert-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 24, 16, 0.25);
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(16, 91, 62, 0.25);
  position: relative;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(3, 24, 16, 0.35);
  border-color: rgba(36, 159, 108, 0.7);
}

.cert-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(12, 92, 60, 0.12);
}

.cert-card h3 {
  padding: 1.2rem 1.4rem 1rem;
  color: #0f2a22;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.cert-card span {
  display: block;
  color: #3e6b57;
  font-size: 0.85rem;
  padding: 0 1.4rem 1.4rem;
}

/* ===== TEAM SECTION ===== */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid #ededed;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
  border-color: #2d7a5c;
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(180deg, rgba(45, 122, 92, 0.10) 0%, rgba(212, 175, 55, 0.12) 100%);
  padding: 6px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: transform 0.35s ease;
  overflow: hidden;
}

.team-card:hover img {
  transform: scale(1.04);
}

.team-info {
  padding: 18px 20px 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.team-info p {
  font-size: 12px;
  color: #1e5a42;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.team-bio {
  font-size: 12px;
  color: #5b5f66;
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 56px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #666;
  padding-top: 12px;
  border-top: 1px dashed #e6e6e6;
}

.team-contact div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-contact i {
  color: #2d7a5c;
  margin-right: 8px;
  width: 16px;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(45, 122, 92, 0.06);
}

.property {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.property:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.property-content {
  padding: 2rem;
}

.property-content h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.property-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3f5a 100%);
  color: white;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
}

.contact-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-item p {
  opacity: 0.9;
}

.contact-form {
  max-width: 700px;
  margin: 3rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
}

.form-group button {
  background: linear-gradient(135deg, var(--secondary) 0%, #b38238 100%);
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(45, 122, 92, 0.35) 0%, rgba(45, 122, 92, 0) 60%),
    radial-gradient(800px 380px at 90% 0%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 55%),
    linear-gradient(135deg, #0b3d2e 0%, #0f2a22 100%);
  background-color: #0f2a22;
  color: #ffffff;
  padding: 3rem 2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(234, 247, 240, 0.15);
}

footer p {
  color: #ffffff;
  opacity: 1;
  font-size: 0.9rem;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ===== UTILITY CLASSES (Replaces Inline CSS) ===== */
.section-light {
  background: #f5f7fa;
  padding: 80px 20px;
}

.about-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text-col {
  flex: 1 1 500px;
  min-width: 300px;
}

.about-img-col {
  flex: 1 1 500px;
  min-width: 300px;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  height: 400px;
}

.about-highlight {
  color: #0f2a44;
  font-weight: 700;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.highlight-card {
  flex: 1 1 200px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.highlight-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
}

.highlight-card p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.cta-right {
  margin-top: 60px;
  text-align: right;
}

.map-section {
  background: #f5f7fa;
  padding: 0 20px 80px;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border: 1px solid #e8ecef;
}

.alert-msg {
  margin-bottom: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.alert-msg.success {
  background: #eaf7f0;
  border-color: #cce9da;
  color: #1e5a42;
}

.alert-msg.error {
  background: #fff1f1;
  border-color: #f3c1c1;
  color: #8a1f1f;
}

/* PDF Section */
.pdf-section {
  padding: 70px 20px;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(45, 122, 92, 0.18) 0%, rgba(45, 122, 92, 0) 60%),
    radial-gradient(800px 360px at 90% 0%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 55%),
    linear-gradient(135deg, #f7faf8 0%, #eef4f2 100%);
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.pdf-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(15, 30, 45, 0.08);
  box-shadow: 0 14px 32px rgba(15, 30, 45, 0.1);
  text-decoration: none;
  color: #0f2a44;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pdf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 30, 45, 0.16);
  border-color: rgba(45, 122, 92, 0.35);
}

.pdf-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2d7a5c 0%, #d4af37 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(45, 122, 92, 0.25);
}

.pdf-card h4 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
  color: #0f2a22;
}

.pdf-card p {
  margin: 0;
  font-size: 13px;
  color: #5b6b62;
}

/* ===== MODAL ===== */
.cert-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.cert-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
    height: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .logo img {
    height: 72px;
    max-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    order: 3;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 10px;
    box-shadow: 0 12px 30px rgba(15, 30, 45, 0.12);
    border: 1px solid rgba(15, 30, 45, 0.08);
  }

  body.nav-open .nav {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services, .team-members {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-area,
  .contact-info-area {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .contact-form-card, .contact-info-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 12px;
  }

  .logo {
    font-size: 20px;
  }

  nav ul {
    gap: 10px 14px;
    font-size: 0.85rem;
  }

  nav a {
    font-size: 13px;
  }

  .logo img {
    height: 64px;
    max-height: 64px;
  }

  .hero {
    padding: 50px 20px;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }
}



























      .about-btn {
  background: linear-gradient(135deg, #c9a14a, #f8c75c);
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(207, 172, 15, 0.4);
}











.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.property {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.property img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-content {
  padding: 15px;
}

.property-content h3 {
  color: #0f2a44;
  margin-bottom: 5px;
}

.property-content p {
  color: #555;
}

.property:hover {
  transform: translateY(-5px);
}








































* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  position: relative;
  padding: 110px 0 80px;
  background:
    radial-gradient(900px 500px at 5% -10%, rgba(45, 122, 92, 0.25) 0%, rgba(45, 122, 92, 0) 60%),
    radial-gradient(800px 420px at 90% 0%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 60%),
    linear-gradient(135deg, #f5f8f6 0%, #eef4f2 100%);
  overflow: hidden;
}

.hero > .hero-content {
  display: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.5;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: rgba(45, 122, 92, 0.12);
  top: -180px;
  right: -140px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: rgba(212, 175, 55, 0.14);
  bottom: -200px;
  left: -140px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(45, 122, 92, 0.12);
  color: #1e5a42;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d7a5c;
  box-shadow: 0 0 0 5px rgba(45, 122, 92, 0.15);
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: 52px;
  line-height: 1.1;
  color: #0f2a22;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.hero-content p {
  font-size: 17px;
  color: #50645b;
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-cta,
.hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hero-cta {
  background: linear-gradient(135deg, #2d7a5c 0%, #1e5a42 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(45, 122, 92, 0.28);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(45, 122, 92, 0.36);
}

.hero-ghost {
  background: #fff;
  color: #1e5a42;
  border: 1px solid rgba(45, 122, 92, 0.25);
}

.hero-ghost:hover {
  border-color: rgba(45, 122, 92, 0.5);
  transform: translateY(-2px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.hero-stat {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 30, 45, 0.08);
  border: 1px solid rgba(45, 122, 92, 0.12);
}

.hero-stat strong {
  display: block;
  font-size: 20px;
  color: #0f2a22;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 12px;
  color: #5b6b62;
}

.hero-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 28px 60px rgba(15, 30, 45, 0.18);
  border: 1px solid rgba(45, 122, 92, 0.18);
}

.hero-card h4 {
  margin-bottom: 16px;
  color: #0f2a22;
  font-size: 18px;
  font-weight: 700;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #55665e;
  line-height: 1.6;
}

.hero-card li i {
  color: #2d7a5c;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 90px 0 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 80px 0;
  background: #ffffff;
}

.services-wrapper {
  padding: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #2d7a5c;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2d7a5c 0%, #1e5a42 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(45, 122, 92, 0.4);
}

.service-card h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 60px;
}

.service-features {
  list-style: none;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.service-features li {
  font-size: 13px;
  color: #555;
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin: 5px 0;
  font-weight: 500;
  list-style: none;
}

.service-features li:hover {
  color: #2d7a5c;
  transform: translateX(5px);
}

.service-card a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2d7a5c 0%, #d4af37 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.service-card a:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(45, 122, 92, 0.4);
}

/* CERTIFICATIONS SECTION */
.certifications {
  background:
    radial-gradient(1200px 600px at 10% -20%, #1f8f5a 0%, rgba(31, 143, 90, 0) 60%),
    radial-gradient(900px 500px at 90% 0%, #0f6b4a 0%, rgba(15, 107, 74, 0) 55%),
    linear-gradient(135deg, #0b3d2e 0%, #0f2a22 100%);
  color: #eef6f1;
  padding: 90px 20px;
}

.cert-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cert-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
  color: #eaf7f0;
}

.cert-subtitle {
  font-size: 16px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  color: rgba(234, 247, 240, 0.85);
  line-height: 1.7;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.cert-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid rgba(16, 91, 62, 0.25);
  box-shadow: 0 10px 30px rgba(3, 24, 16, 0.25);
}

.cert-card:hover {
  transform: translateY(-10px);
  border-color: rgba(36, 159, 108, 0.7);
  box-shadow: 0 18px 40px rgba(3, 24, 16, 0.35);
}

.cert-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-bottom: 1px solid rgba(12, 92, 60, 0.12);
}

.cert-card:hover img {
  transform: scale(1.05);
}

.cert-card h3 {
  padding: 18px 20px 16px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #0f2a22;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.cert-card span {
  display: block;
  padding: 0 20px 20px;
  font-size: 13px;
  text-align: center;
  opacity: 0.8;
}

.cert-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.cert-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* PROJECTS SECTION */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.property {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.property:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.property img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property:hover img {
  transform: scale(1.08);
}

.property-content {
  padding: 30px;
}

.property-content h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.property-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.section-project {
  margin-bottom: 60px;
}

.section-project h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-project p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  line-height: 1.6;
}

/* TEAM SECTION */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid #ededed;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
  border-color: #2d7a5c;
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(180deg, rgba(45, 122, 92, 0.10) 0%, rgba(212, 175, 55, 0.12) 100%);
  padding: 6px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: transform 0.35s ease;
  overflow: hidden;
}

.team-card:hover img {
  transform: scale(1.04);
}

.team-info {
  padding: 18px 20px 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.team-info p {
  font-size: 12px;
  color: #1e5a42;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.team-bio {
  font-size: 12px;
  color: #5b5f66;
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 56px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #666;
  padding-top: 12px;
  border-top: 1px dashed #e6e6e6;
}

.team-contact div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-contact i {
  color: #2d7a5c;
  margin-right: 8px;
  width: 16px;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(45, 122, 92, 0.06);
}

/* CONTACT FORM STYLING */
.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  outline: none;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #2d7a5c;
  box-shadow: 0 0 0 4px rgba(45, 122, 92, 0.1);
}

.contact-form-card button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2d7a5c 0%, #d4af37 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.contact-form-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(45, 122, 92, 0.4);
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.contact-info-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item span {
  font-size: 24px;
  margin-right: 15px;
}

.contact-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #2d7a5c 0%, #d4af37 100%);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(45, 122, 92, 0.4);
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 40px 0;
}

/* Contact Layout Responsive Fixes */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-area {
  flex: 1 1 500px;
  min-width: 300px;
}

.contact-info-area {
  flex: 1 1 400px;
  min-width: 300px;
}

.project-gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 24px;
}

.project-gallery-card {
  max-width: 1000px;
  margin: 40px auto;
  background: #0f1418;
  border-radius: 16px;
  padding: 18px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.project-gallery-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

#projectGalleryMain {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  background: #0b0f12;
}

.project-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 4px 2px;
}

.project-gallery-thumbs img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.85;
}

.project-gallery-thumbs img.active {
  border-color: #2d7a5c;
  opacity: 1;
}























.premium-projects {
  padding: 110px 20px;
  background:
    radial-gradient(1000px 520px at 10% 0%, rgba(45, 122, 92, 0.18) 0%, rgba(45, 122, 92, 0) 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 55%),
    linear-gradient(135deg, #f8f9fb 0%, #edf2f6 100%);
}

.premium-projects .projects-hero {
  text-align: center;
  margin-bottom: 70px;
}

.premium-projects .projects-hero h2 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #0f2a44;
  font-weight: 900;
  letter-spacing: 0.4px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.premium-projects .projects-hero h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: 4px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2d7a5c 0%, #d4af37 100%);
  border-radius: 999px;
}

.premium-projects .projects-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #52616b;
  font-size: 17px;
  line-height: 1.85;
}

.premium-projects .projects-block {
  margin-bottom: 70px;
}

.premium-projects .projects-block-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.premium-projects .block-pill {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15, 30, 45, 0.08);
}

.premium-projects .block-pill.civil {
  background: linear-gradient(135deg, rgba(45, 122, 92, 0.22) 0%, rgba(45, 122, 92, 0.08) 100%);
  color: #1e5a42;
  border: 1px solid rgba(45, 122, 92, 0.35);
}

.premium-projects .block-pill.decor {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.10) 100%);
  color: #7a5a18;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.premium-projects .block-desc {
  color: #5b6b74;
  font-size: 14px;
}

.premium-projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.project-card.premium {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e6ebf0;
  box-shadow: 0 14px 34px rgba(15, 30, 45, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card.premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(15, 30, 45, 0.2);
  border-color: rgba(45, 122, 92, 0.35);
}

.project-card.premium .project-media {
  position: relative;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

.project-card.premium .project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card.premium:hover .project-media img {
  transform: scale(1.08);
}

.project-card.premium .project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.project-card.premium .project-badge.civil {
  background: rgba(45, 122, 92, 0.9);
  color: #fff;
}

.project-card.premium .project-badge.decor {
  background: rgba(212, 175, 55, 0.9);
  color: #1a1a1a;
}

.project-card.premium .project-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: rgba(15, 20, 24, 0.75);
  color: #fff;
}

.project-card.premium .project-body {
  padding: 22px 24px 26px;
}

.project-card.premium .project-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f2a44;
  font-weight: 700;
}

.project-card.premium .project-body p {
  font-size: 14px;
  color: #5d6b73;
  line-height: 1.6;
  min-height: 64px;
}

.project-card.premium .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #1e5a42;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

.project-card.premium .project-link.decor {
  color: #7a5a18;
}

.premium-projects .projects-cta {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .premium-projects {
    padding: 80px 16px;
  }

  .premium-projects .projects-hero h2 {
    font-size: 34px;
  }
  
  .contact-layout {
    flex-direction: column;
  }
  
  .contact-form-area, .contact-info-area {
    min-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 500px) {
  .contact-form-area, .contact-info-area {
    flex-basis: 100%;
  }
  .contact-form-card, .contact-info-card {
    padding: 25px 15px;
  }
}