﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #D4A84B;
  --primary-light: #E8C97A;
  --primary-dark: #B8922E;
  --secondary: #3BA9A0;
  --secondary-light: #5DC4BB;
  --accent: #F5EDD6;
  --bg-warm: #FDFBF7;
  --bg-gray: #F7F4EE;
  --text-heading: #3D3D3D;
  --text-body: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --border: #EAE5D8;
  --shadow: rgba(212, 168, 75, 0.15);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-warm);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: var(--text-heading); }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; border-radius: 12px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.navbar .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--text-heading);
}
.navbar .logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-body); position: relative; padding: 4px 0; font-family: var(--font-body); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; background: var(--primary); color: var(--white) !important;
  border-radius: 8px; font-weight: 600; font-size: 0.85rem;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px var(--shadow); }
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.mobile-toggle span { width: 28px; height: 2.5px; background: var(--text-heading); border-radius: 2px; transition: all 0.3s ease; }

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #2D8B84 50%, var(--secondary) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,75,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.hero h1 span { color: var(--primary-light); }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 36px;
  max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease; border: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--primary-light); color: var(--primary-light); transform: translateY(-2px); }
.btn-gold { background: var(--primary); color: var(--white); }
.btn-gold:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.btn-teal { background: var(--secondary); color: var(--white); }
.btn-teal:hover { background: #2D8B84; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,169,160,0.35); }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat { text-align: center; }
.hero-stat h3 { font-size: 2rem; color: var(--white); font-weight: 800; }
.hero-stat h3 span { color: var(--primary-light); }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0; margin-top: 4px; }

.supporting-text { background: var(--accent); padding: 48px 0; text-align: center; }
.supporting-text p {
  max-width: 800px; margin: 0 auto; font-size: 1.05rem; color: var(--text-body);
  font-style: italic;
}

.section { padding: 100px 0; }
.section-gold { background: var(--accent); }
.section-gold h2, .section-gold h3 { color: var(--text-heading); }
.section-gold .section-subtitle { color: var(--text-body); }
.section-gray { background: var(--bg-gray); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 700px; margin: 0 auto; line-height: 1.8; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card { background: var(--white); border-radius: 16px; padding: 36px 28px; border: 1px solid var(--border); transition: all 0.3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); border-color: var(--primary-light); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  background: rgba(212,168,75,0.12); color: var(--primary);
}
.card-icon.teal { background: rgba(59,169,160,0.12); color: var(--secondary); }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

.img-placeholder { background: var(--bg-gray); border-radius: 16px; overflow: hidden; width: 100%; min-height: 400px; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.content-block h2 { font-size: 2rem; margin-bottom: 20px; }
.content-block p { font-size: 1rem; color: var(--text-body); margin-bottom: 16px; line-height: 1.8; }
.content-block ul { list-style: none; margin: 20px 0; }
.content-block ul li { padding: 8px 0 8px 28px; position: relative; color: var(--text-body); font-size: 0.95rem; }
.content-block ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 16px; height: 16px; background: var(--primary); border-radius: 50%; opacity: 0.3; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; counter-reset: step; }
.process-step { text-align: center; padding: 32px 20px; position: relative; }
.process-step::before {
  counter-increment: step; content: counter(step);
  width: 48px; height: 48px; background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; margin: 0 auto 16px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-light); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--text-heading); background: var(--white); border: none; width: 100%; text-align: left;
}
.faq-question:hover { background: var(--bg-gray); }
.faq-question .icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; font-size: 1.2rem; color: var(--primary); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; }

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary), #2D8B84);
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.testimonial-card { background: var(--white); border-radius: 16px; padding: 36px; border: 1px solid var(--border); }
.testimonial-card p { font-size: 1rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; color: var(--text-heading); font-size: 0.95rem; }

.footer { background: var(--text-heading); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 16px; font-family: var(--font-heading); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; max-width: 320px; }
.footer-links h4 { color: var(--primary-light); font-size: 1rem; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links ul li a:hover { color: var(--primary-light); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s ease; }
.footer-social a:hover { background: var(--primary); color: var(--white); }

.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-body .tag { display: inline-block; padding: 4px 12px; background: rgba(212,168,75,0.12); color: var(--primary); border-radius: 20px; font-size: 0.78rem; font-weight: 600; margin-bottom: 12px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.blog-card-body .read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

.contact-form { background: var(--white); border-radius: 16px; padding: 48px; border: 1px solid var(--border); box-shadow: 0 4px 20px var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text-heading); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-body); transition: border-color 0.3s ease; background: var(--bg-warm);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--shadow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-info-card { background: var(--white); border-radius: 16px; padding: 36px; text-align: center; border: 1px solid var(--border); transition: all 0.3s ease; }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.contact-info-card .icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(212,168,75,0.12); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { color: var(--text-light); font-size: 0.92rem; }

.industry-card { background: var(--white); border-radius: 16px; padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s ease; text-align: center; }
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); border-color: var(--primary-light); }
.industry-card .icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--secondary); }
.industry-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.88rem; color: var(--text-light); }

.case-card { background: var(--white); border-radius: 16px; padding: 40px; border: 1px solid var(--border); margin-bottom: 32px; transition: all 0.3s ease; }
.case-card:hover { box-shadow: 0 12px 40px var(--shadow); }
.case-card .industry-tag { display: inline-block; padding: 6px 16px; background: rgba(59,169,160,0.1); color: var(--secondary); border-radius: 20px; font-size: 0.82rem; font-weight: 600; margin-bottom: 16px; }
.case-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.case-card h4 { font-size: 1rem; color: var(--primary); margin: 16px 0 8px; }
.case-card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; }
.case-card ul { list-style: none; margin: 12px 0; }
.case-card ul li { padding: 4px 0 4px 24px; position: relative; color: var(--text-body); font-size: 0.92rem; }
.case-card ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 14px; height: 14px; background: var(--secondary); border-radius: 50%; opacity: 0.3; }

.page-header { padding: 140px 0 60px; background: linear-gradient(135deg, var(--secondary), #2D8B84); text-align: center; }
.page-header h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 650px; margin: 0 auto; line-height: 1.8; }
.page-header .hero-buttons { margin-top: 32px; }

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); color: var(--white); }

@media (max-width: 1024px) {
  .grid-2 { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-120%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { gap: 32px; }
  .grid-3, .grid-4 { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header h1 { font-size: 2rem; }
  .contact-form { padding: 28px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
