/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --color-gold: #c5a059;
  --color-gold-hover: #aa7c11;
  --color-gold-light: #f3e5ab;
  --color-dark: #111625;
  --color-dark-accent: #1c2237;
  --color-light-bg: #F9F6F0;
  --color-white: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #eaeaea;
  --color-border: #e2e8f0;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.25);
  --border-radius: 8px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* Scroll Animation Classes */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* TOP BAR */
.top-bar {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
}

/* HEADER & NAVIGATION */
.main-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  max-width: 240px;
}

.logo img {
  width: auto;
  height: 50px;
  max-width: 100%;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  padding: 10px 20px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* HERO SECTION */
.hero {
  position: relative;
  background-color: var(--color-dark);
  min-height: 550px;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7) contrast(1.1);
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-gold);
  display: block;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--color-text-light);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* STATS BAR */
.stats-bar {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.stats-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.stats-icon-wrapper {
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold);
}

.stats-info h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-info p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* SERVICES SECTION */
.services-section {
  background-color: var(--color-light-bg);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '♦';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  font-size: 1.2rem;
}

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

.service-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: rgba(197, 160, 89, 0.2);
}

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-icon-floating {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-white);
  z-index: 5;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-floating {
  background-color: var(--color-dark);
}

.service-icon-floating svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.service-body {
  padding: 40px 20px 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--color-dark);
}

/* WHY US SECTION */
.why-us-section {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-us-content {
  padding: 80px 60px 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-content .section-title {
  color: var(--color-white);
  text-align: left;
  margin-bottom: 30px;
}

.why-us-content .section-title::after {
  left: 30px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-us-item {
  display: flex;
  gap: 15px;
}

.why-us-icon {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-item:hover .why-us-icon {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.why-us-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  transition: var(--transition-smooth);
}

.why-us-item:hover .why-us-icon svg {
  fill: var(--color-white);
}

.why-us-info h4 {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-us-info p {
  color: var(--color-text-light);
  opacity: 0.7;
  font-size: 0.85rem;
}

.why-us-image-wrapper {
  position: relative;
  min-height: 450px;
}

.why-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PROCESS SECTION */
.process-section {
  background-color: var(--color-white);
}

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

/* Connecting Line on Desktop */
.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dotted var(--color-gold);
  opacity: 0.5;
  z-index: 1;
}

.process-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon-wrapper {
  background-color: var(--color-white);
  border: 2px solid var(--color-gold);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-item:hover .process-icon-wrapper {
  background-color: var(--color-gold);
  transform: scale(1.05);
}

.process-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: var(--color-gold);
  transition: var(--transition-smooth);
}

.process-item:hover .process-icon-wrapper svg {
  fill: var(--color-white);
}

.process-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

.process-item h3 {
  font-size: 1.15rem;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.process-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* GALLERY SECTION */
.gallery-section {
  background-color: var(--color-light-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.gallery-item.hide {
  display: none;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 22, 37, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  padding: 15px;
  text-align: center;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.gallery-caption h4 {
  font-size: 1rem;
  font-family: var(--font-primary);
  font-weight: 700;
}

.gallery-caption p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* CTA BANNER */
.cta-banner {
  background-color: var(--color-gold);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 80%);
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.cta-text h2 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.cta-banner .btn {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.cta-banner .btn:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

/* CONTACT PAGE SPECIFIC */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info-card {
  background-color: var(--color-light-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-icon {
  background-color: rgba(197, 160, 89, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.contact-info-text h4 {
  font-size: 0.95rem;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.contact-info-text a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-link {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-dark);
}

.social-link:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.social-link:hover svg {
  fill: var(--color-white);
}

.contact-form-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  background-color: var(--color-light-bg);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

textarea.form-control {
  resize: vertical;
}

.map-container {
  margin-top: 50px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ABOUT PAGE SPECIFIC */
.about-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--color-gold);
  z-index: -1;
  border-radius: var(--border-radius);
}

/* SERVICE DETAILS SPECIFIC */
.service-details-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}

.service-main-content h2 {
  font-size: 2rem;
  margin: 30px 0 15px 0;
}

.service-main-content p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.service-main-content img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.service-faq {
  margin-top: 40px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--color-light-bg);
  padding: 15px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
  border-top: 1px solid var(--color-border);
}

.service-sidebar-widget {
  background-color: var(--color-light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  border: 1px solid var(--color-border);
}

.service-sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gold);
}

.widget-links-list li {
  margin-bottom: 12px;
}

.widget-links-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--color-white);
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
}

.widget-links-list a:hover,
.widget-links-list li.active a {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.widget-contact-box {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.widget-contact-box h4 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.widget-contact-box p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.8;
  margin-bottom: 20px;
}

.widget-contact-box .btn {
  width: 100%;
}

/* FOOTER */
.main-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 70px 0 20px 0;
  border-top: 2px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-about p {
  color: var(--color-text-light);
  opacity: 0.7;
  font-size: 0.85rem;
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-about .social-link {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.footer-about .social-link svg {
  fill: var(--color-white);
}

.footer-about .social-link:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

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

.footer-links a {
  color: var(--color-text-light);
  opacity: 0.7;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--color-gold);
  font-size: 1.2rem;
  line-height: 1;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.7;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-light);
  opacity: 0.6;
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 22, 37, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 60px;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.mobile-bottom-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.mobile-bottom-item.whatsapp-btn {
  background-color: #25D366;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-bottom-item.whatsapp-btn svg {
  fill: var(--color-white);
}

.mobile-bottom-item:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-bottom-item.whatsapp-btn:active {
  background-color: #128C7E;
}


/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  body {
    padding-bottom: 60px; /* Space for mobile bottom bar */
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  /* Top bar hidden on mobile to conserve space */
  .top-bar {
    display: none;
  }
  
  /* Mobile menu logic */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 998;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .header-cta {
    display: none; /* Let cta go to mobile bottom menu or header drawer */
  }
  
  /* Hero details */
  .hero {
    height: 70vh;
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  /* Stats grid */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  /* Why Choose Us */
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .why-us-content {
    padding: 60px 20px;
  }
  
  .why-us-image-wrapper {
    height: 300px;
    min-height: auto;
  }
  
  /* Process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .process-grid::before {
    display: none;
  }
  
  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  /* About us */
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Service details */
  .service-details-grid {
    grid-template-columns: 1fr;
  }
  
  /* CTA Banner */
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  /* Show Mobile Bottom Bar */
  .mobile-bottom-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
