/* ===== ELEGANCE INTERIORS - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C8973A;
  --gold-light: #E8C47A;
  --dark: #1A1208;
  --dark2: #2D1F0A;
  --cream: #FAF6EF;
  --cream2: #F2EBD8;
  --white: #FFFFFF;
  --text: #3D2B0E;
  --text-light: #7A6040;
  --accent: #8B1A1A;
  --green: #2D6A4F;
  --shadow: 0 8px 40px rgba(26,18,8,0.12);
  --shadow-lg: 0 20px 60px rgba(26,18,8,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* TOPBAR */
.topbar {
  background: var(--dark2);
  color: #ccc;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem 2rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.free-badge {
  background: var(--gold);
  color: var(--dark);
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.75} }

/* NAVBAR */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4%;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-icon { font-size: 1.8rem; color: var(--gold); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--dark); }
.logo-sub { font-size: 0.7rem; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--cream2);
  color: var(--gold);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: var(--shadow);
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: block; padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.88rem; }

.btn-consult {
  background: var(--gold);
  color: var(--dark);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-consult:hover { background: var(--dark); color: var(--gold); }

/* HERO */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #3D1F05 100%);
  display: flex;
  align-items: center;
  padding: 5rem 4%;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  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='%23C8973A' fill-opacity='0.05'%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");
}
.hero-content { flex: 1; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(200,151,58,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 .gold { color: var(--gold); }
.hero p { color: #ccc; font-size: 1.1rem; max-width: 500px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,151,58,0.4); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

.btn-outline-white {
  border: 2px solid white;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { background: white; color: var(--dark); }

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat span { color: #aaa; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.hero-img-box { flex: 1; z-index: 2; display: flex; justify-content: center; }
.hero-img-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,151,58,0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
/* CSS Art Room */
.room-art { width:100%; height:100%; position:relative; background:linear-gradient(180deg,#2a1505 0%,#5c3010 60%,#3d1f05 100%); }
.ra-wall { position:absolute; inset:0 0 30% 0; background:linear-gradient(135deg,#6b3a0f,#8b4a1a); }
.ra-sofa { position:absolute; bottom:28%; left:10%; width:55%; height:22%; background:linear-gradient(180deg,#C8973A,#a07030); border-radius:8px 8px 0 0; }
.ra-sofa::before { content:''; position:absolute; top:-15%; left:5%; right:5%; height:30%; background:#d4a550; border-radius:6px; }
.ra-table { position:absolute; bottom:28%; left:65%; width:25%; height:10%; background:#5c3010; border-radius:3px; }
.ra-lamp { position:absolute; bottom:50%; right:8%; width:4%; height:30%; background:#a07030; border-radius:3px; }
.ra-lamp::before { content:''; position:absolute; top:-20px; left:-15px; width:34px; height:20px; background:rgba(255,200,50,0.7); clip-path:polygon(50% 0%,100% 100%,0% 100%); }
.ra-plant { position:absolute; bottom:28%; left:5%; width:6%; height:20%; }
.ra-plant::before { content:'🌿'; font-size:2rem; }

/* OFFER BANNER */
.offer-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #6B0000 100%);
  padding: 2.5rem 4%;
  text-align: center;
}
.offer-inner { max-width: 800px; margin: auto; }
.offer-tag { display:inline-block; background:rgba(255,255,255,0.15); color:white; padding:4px 16px; border-radius:20px; font-size:0.8rem; font-weight:700; letter-spacing:2px; margin-bottom:0.8rem; }
.offer-banner h2 { font-family:'Playfair Display',serif; color:white; font-size:clamp(1.4rem,3vw,2.2rem); margin-bottom:0.5rem; }
.offer-banner h2 span { color:var(--gold-light); font-size:1.2em; }
.offer-banner p { color:rgba(255,255,255,0.85); margin-bottom:1.2rem; }
.btn-offer {
  background:white;
  color:var(--accent);
  padding:0.75rem 2rem;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  transition:all 0.2s;
  display:inline-block;
}
.btn-offer:hover { background:var(--gold); color:var(--dark); }

/* SECTIONS */
.section { padding: 5rem 4%; }
.section-header { text-align:center; margin-bottom:3rem; }
.section-tag { display:inline-block; background:var(--cream2); color:var(--gold); padding:4px 16px; border-radius:20px; font-size:0.8rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:0.8rem; }
.section-header h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.8rem); color:var(--dark); margin-bottom:0.8rem; }
.section-header p { color:var(--text-light); max-width:500px; margin:auto; }
.gold { color:var(--gold); }

/* SERVICES GRID */
.services-home { background: var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; }
.service-card {
  background:var(--cream);
  border:2px solid transparent;
  border-radius:16px;
  padding:2rem 1.5rem;
  text-decoration:none;
  color:var(--text);
  transition:all 0.3s;
  position:relative;
  overflow:hidden;
}
.service-card:hover { border-color:var(--gold); transform:translateY(-5px); box-shadow:var(--shadow); }
.service-card.featured { background:linear-gradient(135deg,var(--dark),var(--dark2)); color:white; }
.service-card.featured h3, .service-card.featured p { color:white; }
.service-card.featured .s-price { color:var(--gold-light); }
.s-badge { position:absolute; top:1rem; right:1rem; background:var(--gold); color:var(--dark); padding:3px 10px; border-radius:20px; font-size:0.72rem; font-weight:700; }
.s-icon { font-size:2.2rem; margin-bottom:1rem; }
.service-card h3 { font-family:'Playfair Display',serif; font-size:1.2rem; margin-bottom:0.5rem; }
.service-card p { font-size:0.88rem; color:var(--text-light); margin-bottom:1rem; }
.service-card.featured p { color:#ccc; }
.s-price { font-weight:700; color:var(--gold); font-size:0.9rem; }
.s-arrow { position:absolute; bottom:1.5rem; right:1.5rem; font-size:1.2rem; color:var(--gold); opacity:0; transition:all 0.3s; }
.service-card:hover .s-arrow { opacity:1; right:1rem; }

/* WHY US */
.why-us { display:flex; align-items:center; gap:4rem; background:var(--cream); flex-wrap:wrap; }
.why-img-col { flex:1; min-width:280px; }
.why-art {
  aspect-ratio:1;
  max-width:420px;
  background:linear-gradient(135deg,#1a1208,#3d1f05);
  border-radius:20px;
  overflow:hidden;
  position:relative;
}
.wa-room { width:100%; height:100%; position:relative; padding:2rem; }
.wa-bg { position:absolute; inset:0; background:linear-gradient(135deg,#8b4a1a22,#c8973a11); }
.wa-item { position:absolute; background:var(--gold); opacity:0.7; border-radius:6px; }
.wa1 { width:60%; height:40%; bottom:10%; left:10%; background:linear-gradient(135deg,#6b3a0f,#c8973a); }
.wa2 { width:25%; height:55%; bottom:10%; right:10%; background:linear-gradient(135deg,#3d1f05,#6b3a0f); }
.wa3 { width:80%; height:15%; top:10%; left:10%; background:rgba(200,151,58,0.3); border:1px solid var(--gold); }
.why-content { flex:1; min-width:280px; }
.why-content h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,2.5vw,2.5rem); margin-bottom:1rem; }
.why-content > p { color:var(--text-light); margin-bottom:2rem; }
.why-points { display:flex; flex-direction:column; gap:1.2rem; margin-bottom:2rem; }
.wp { display:flex; align-items:flex-start; gap:1rem; }
.wp-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.wp strong { font-size:1rem; color:var(--dark); }
.wp p { font-size:0.87rem; color:var(--text-light); }

/* TESTIMONIALS */
.testimonials { background:var(--white); }
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; }
.testi-card {
  background:var(--cream);
  border-radius:16px;
  padding:2rem;
  border-left:4px solid var(--gold);
}
.stars { color:var(--gold); font-size:1.1rem; margin-bottom:1rem; }
.testi-card p { font-size:0.92rem; color:var(--text-light); font-style:italic; margin-bottom:1.5rem; }
.testi-author { display:flex; align-items:center; gap:1rem; }
.testi-avatar { width:42px; height:42px; border-radius:50%; background:var(--gold); color:var(--dark); font-weight:700; display:flex; align-items:center; justify-content:center; font-size:0.85rem; }
.testi-author strong { display:block; font-size:0.92rem; }
.testi-author span { font-size:0.8rem; color:var(--text-light); }

/* CTA */
.cta-section {
  background:linear-gradient(135deg,var(--dark) 0%,#3d1f05 100%);
  padding:5rem 4%;
  text-align:center;
}
.cta-inner { max-width:700px; margin:auto; }
.cta-section h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.8rem); color:white; margin-bottom:1rem; }
.cta-section p { color:#ccc; margin-bottom:2rem; font-size:1.05rem; }
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.5rem; }
.free-highlight {
  display:inline-block;
  background:rgba(200,151,58,0.2);
  border:1px solid var(--gold);
  color:var(--gold-light);
  padding:0.5rem 1.5rem;
  border-radius:30px;
  font-weight:700;
  font-size:0.9rem;
}

/* FOOTER */
.footer { background:var(--dark); padding:4rem 4% 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:3rem; margin-bottom:3rem; flex-wrap:wrap; }
@media(max-width:900px){ .footer-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .footer-grid { grid-template-columns:1fr; } }
.footer-brand p { color:#888; font-size:0.9rem; margin:1rem 0; max-width:250px; }
.social-links { display:flex; gap:0.8rem; }
.social-links a { background:rgba(200,151,58,0.15); border:1px solid var(--gold); color:var(--gold); width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:700; text-decoration:none; transition:all 0.2s; }
.social-links a:hover { background:var(--gold); color:var(--dark); }
.footer-col h4 { color:var(--gold-light); font-size:0.95rem; margin-bottom:1rem; font-family:'Playfair Display',serif; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.footer-col a { color:#888; text-decoration:none; font-size:0.88rem; transition:color 0.2s; }
.footer-col a:hover { color:var(--gold); }
.footer-col p { color:#888; font-size:0.87rem; margin-bottom:0.4rem; }
.footer-bottom { border-top:1px solid #333; padding-top:1.5rem; text-align:center; }
.footer-bottom p { color:#666; font-size:0.85rem; }

/* PAGE HERO */
.page-hero {
  background:linear-gradient(135deg,var(--dark),var(--dark2));
  padding:5rem 4% 4rem;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8973A' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-badge { display:inline-block; background:rgba(200,151,58,0.15); border:1px solid var(--gold); color:var(--gold-light); padding:4px 16px; border-radius:20px; font-size:0.8rem; margin-bottom:1rem; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3.5rem); color:white; margin-bottom:1rem; position:relative; }
.page-hero p { color:#ccc; font-size:1.05rem; max-width:600px; margin:auto; position:relative; }
.breadcrumb { display:flex; justify-content:center; gap:0.5rem; margin-top:1.5rem; font-size:0.85rem; }
.breadcrumb a { color:var(--gold); text-decoration:none; }
.breadcrumb span { color:#888; }

/* PRICING SECTION */
.pricing-section { padding:4rem 4%; background:var(--cream2); }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; margin-top:2rem; }
.price-card {
  background:var(--white);
  border-radius:16px;
  padding:2rem;
  text-align:center;
  border:2px solid transparent;
  transition:all 0.3s;
  position:relative;
}
.price-card.best { border-color:var(--gold); transform:scale(1.03); }
.price-card.best::before { content:'⭐ Best Value'; position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--dark); padding:3px 16px; border-radius:20px; font-size:0.75rem; font-weight:700; white-space:nowrap; }
.price-card:hover { border-color:var(--gold); box-shadow:var(--shadow); }
.price-name { font-weight:700; color:var(--text-light); font-size:0.85rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:0.8rem; }
.price-amount { font-family:'Playfair Display',serif; font-size:2.2rem; color:var(--dark); font-weight:900; }
.price-amount span { font-size:1rem; font-weight:400; color:var(--text-light); }
.price-features { list-style:none; margin:1.5rem 0; display:flex; flex-direction:column; gap:0.6rem; }
.price-features li { font-size:0.88rem; color:var(--text-light); }
.price-features li::before { content:'✓ '; color:var(--green); font-weight:700; }
.price-card .btn-primary { width:100%; text-align:center; border:none; cursor:pointer; font-family:inherit; }

/* CARDS GRID */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; margin-top:2rem; }
.card {
  background:var(--white);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:all 0.3s;
}
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.card-img {
  height:200px;
  background:linear-gradient(135deg,var(--dark2),#5c3010);
  display:flex; align-items:center; justify-content:center;
  font-size:4rem;
  position:relative;
}
.card-img-label { position:absolute; bottom:1rem; left:1rem; background:var(--gold); color:var(--dark); padding:3px 10px; border-radius:20px; font-size:0.75rem; font-weight:700; }
.card-body { padding:1.5rem; }
.card-body h3 { font-family:'Playfair Display',serif; margin-bottom:0.5rem; }
.card-body p { color:var(--text-light); font-size:0.88rem; margin-bottom:1rem; }
.card-body .price-tag { font-weight:700; color:var(--gold); margin-bottom:1rem; display:block; }

/* CONTACT FORM */
.contact-section { display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; padding:4rem 4%; flex-wrap:wrap; }
@media(max-width:768px){ .contact-section { grid-template-columns:1fr; } }
.contact-info h2 { font-family:'Playfair Display',serif; font-size:2rem; margin-bottom:1rem; }
.contact-info p { color:var(--text-light); margin-bottom:2rem; }
.contact-item { display:flex; gap:1rem; margin-bottom:1.5rem; align-items:flex-start; }
.ci-icon { width:45px; height:45px; background:var(--cream2); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.ci-text strong { display:block; margin-bottom:2px; }
.ci-text span { color:var(--text-light); font-size:0.88rem; }
.form-box { background:var(--white); border-radius:20px; padding:2.5rem; box-shadow:var(--shadow); }
.form-box h3 { font-family:'Playfair Display',serif; font-size:1.5rem; margin-bottom:1.5rem; }
.form-group { margin-bottom:1.2rem; }
.form-group label { display:block; font-weight:600; font-size:0.88rem; margin-bottom:0.4rem; color:var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width:100%;
  padding:0.75rem 1rem;
  border:1.5px solid #e0d5c5;
  border-radius:8px;
  font-family:'Nunito',sans-serif;
  font-size:0.92rem;
  color:var(--text);
  background:var(--cream);
  outline:none;
  transition:border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group textarea { resize:vertical; min-height:100px; }
.form-submit { width:100%; background:var(--gold); color:var(--dark); padding:1rem; border:none; border-radius:30px; font-size:1rem; font-weight:700; cursor:pointer; font-family:'Nunito',sans-serif; transition:all 0.2s; }
.form-submit:hover { background:var(--dark); color:var(--gold); }
.free-consult-note { text-align:center; margin-top:1rem; color:var(--green); font-weight:600; font-size:0.88rem; }

/* BLOG */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
.blog-card { background:var(--white); border-radius:16px; overflow:hidden; box-shadow:var(--shadow); transition:all 0.3s; text-decoration:none; color:inherit; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.blog-img { height:180px; background:linear-gradient(135deg,var(--dark2),#8b4a1a); display:flex; align-items:center; justify-content:center; font-size:3.5rem; }
.blog-body { padding:1.5rem; }
.blog-tag { background:var(--cream2); color:var(--gold); padding:3px 10px; border-radius:20px; font-size:0.75rem; font-weight:700; }
.blog-body h3 { font-family:'Playfair Display',serif; margin:0.8rem 0 0.5rem; font-size:1.15rem; }
.blog-body p { color:var(--text-light); font-size:0.87rem; }
.blog-meta { display:flex; justify-content:space-between; align-items:center; margin-top:1rem; font-size:0.82rem; color:var(--text-light); }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; padding:4rem 4%; }
@media(max-width:768px){ .about-grid{ grid-template-columns:1fr; } }
.about-img { aspect-ratio:1; background:linear-gradient(135deg,var(--dark),#5c3010); border-radius:20px; display:flex; align-items:center; justify-content:center; font-size:8rem; }
.about-text h2 { font-family:'Playfair Display',serif; font-size:2.2rem; margin-bottom:1rem; }
.about-text p { color:var(--text-light); margin-bottom:1rem; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; padding:2rem 4%; }
.team-card { text-align:center; background:var(--white); border-radius:16px; padding:2rem; box-shadow:var(--shadow); }
.team-avatar { width:80px; height:80px; border-radius:50%; background:var(--gold); color:var(--dark); font-size:2rem; display:flex; align-items:center; justify-content:center; margin:auto auto 1rem; font-family:'Playfair Display',serif; font-weight:700; }
.team-card h4 { font-family:'Playfair Display',serif; margin-bottom:0.3rem; }
.team-card span { color:var(--text-light); font-size:0.85rem; }

/* SUBPAGE SERVICE */
.service-detail { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; padding:4rem 4%; }
@media(max-width:768px){ .service-detail{ grid-template-columns:1fr; } }
.service-detail-img { aspect-ratio:4/3; background:linear-gradient(135deg,var(--dark2),#8b4a1a); border-radius:20px; display:flex; align-items:center; justify-content:center; font-size:6rem; }
.service-detail-text h2 { font-family:'Playfair Display',serif; font-size:2rem; margin-bottom:1rem; }
.service-detail-text p { color:var(--text-light); margin-bottom:1rem; }
.feature-list { list-style:none; display:flex; flex-direction:column; gap:0.6rem; margin-bottom:1.5rem; }
.feature-list li { display:flex; gap:0.7rem; align-items:flex-start; font-size:0.92rem; }
.feature-list li::before { content:'✦'; color:var(--gold); flex-shrink:0; }

/* RESPONSIVE */
@media(max-width:1024px){ .hero{ flex-direction:column; text-align:center; } .hero-btns{ justify-content:center; } .hero-stats{ justify-content:center; } .why-us{ flex-direction:column; } }
@media(max-width:768px){ .navbar{ padding:0.8rem; } .nav-links{ display:none; } .page-hero{ padding:4rem 4% 3rem; } }
