/* ============================================
   AMIRUL HANI & ASSOCIATES - MAIN STYLESHEET
   Premium Corporate Islamic Law Firm
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --primary-gold: #A98533;
  --gold-hover: #C89A3C;
  --light-gold: #D6B05A;
  --cream-bg: #F7F3EA;
  --section-bg: #FCF9F4;
  --card-bg: #FFFFFF;
  --dark-olive: #4F523B;
  --dark-text: #2C2C2C;
  --secondary-text: #666666;
  --border: #E7DFD1;
  --light-border: #EFE8DD;
  --success: #5C7A4D;
  --footer-bg: #2F3228;
  --footer-text: #D9D6CE;
  --white: #FFFFFF;

  --container-width: 1320px;
  --section-padding: 120px;
  --content-gap: 80px;
  --card-radius: 18px;
  --btn-radius: 12px;
  --input-radius: 12px;
  --box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  --transition: all 0.35s ease;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--cream-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--btn-radius);
  padding: 12px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(169, 133, 51, 0.35);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ---------- Section Headers ---------- */
.section-header {
  margin-bottom: 60px;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ornament-line {
  width: 40px;
  height: 1px;
  background: var(--primary-gold);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  transform: rotate(45deg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--secondary-text);
  font-weight: 400;
}

/* ============================================
   TOP INFORMATION BAR
============================================ */
.top-bar {
  background: linear-gradient(135deg, #8B7028 0%, var(--primary-gold) 50%, #8B7028 100%);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--white);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0.95;
}

.top-bar-item:hover {
  opacity: 1;
  color: var(--white);
}

.top-bar-item i {
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0.9;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ============================================
   STICKY NAVIGATION
============================================ */
.main-navbar {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  z-index: 1030;
}

.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-text);
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

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

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 1px;
}

.nav-cta {
  margin-left: 16px;
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  padding: 8px;
  min-width: 220px;
}

.dropdown-item {
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--dark-text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--cream-bg);
  color: var(--primary-gold);
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F5EDE0 0%, #EDE4D4 40%, #E8DFD0 100%);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 234, 0.95) 0%, rgba(247, 243, 234, 0.7) 50%, rgba(247, 243, 234, 0.3) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: 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='%23A98533' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

.hero-row {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}

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

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.hero-image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--primary-gold);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}

/* ============================================
   STATISTICS COUNTER
============================================ */
.stats-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.stats-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  padding: 40px 20px;
  border: 1px solid var(--light-border);
}

.stat-item {
  text-align: center;
  padding: 10px 15px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(169, 133, 51, 0.12), rgba(169, 133, 51, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.3rem;
}

.stat-number {
  display: inline;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}

.stat-suffix {
  display: inline;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================
   PRACTICE AREAS
============================================ */
.practice-section {
  background: var(--section-bg);
}

.practice-grid {
  display: flex;
  flex-wrap: wrap;
}

.practice-grid > [class*="col-"] {
  display: flex;
}

@media (min-width: 992px) {
  .practice-grid > .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.practice-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px 20px;
  height: 100%;
  width: 100%;
  border: 1px solid var(--light-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(169, 133, 51, 0.25);
}

.practice-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(169, 133, 51, 0.15), rgba(169, 133, 51, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.practice-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.practice-list {
  margin-bottom: 24px;
  flex-grow: 1;
}

.practice-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 8px;
}

.practice-list li i {
  color: var(--primary-gold);
  font-size: 0.85rem;
}

.practice-btn {
  margin-top: auto;
}

/* ============================================
   PROCESS + ABOUT SECTION
============================================ */
.process-about-section {
  background: var(--cream-bg);
}

.process-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 40px 36px;
  height: 100%;
  border: 1px solid var(--light-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.process-title {
  font-size: 1.75rem;
  margin-bottom: 36px;
  color: var(--dark-text);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  padding-bottom: 10px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(169, 133, 51, 0.3);
}

.step-content h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}

.process-connector {
  display: none;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--light-gold), var(--primary-gold));
  z-index: 1;
}

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

/* About Card */
.about-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--light-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.about-content {
  padding: 36px 36px 24px;
}

.about-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  margin-bottom: 24px;
  line-height: 1.75;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
}

.about-feature i {
  color: var(--success);
  font-size: 1.15rem;
}

.about-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.about-logo-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.about-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: 0.3px;
}

.about-logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--primary-gold);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============================================
   TEAM SECTION
============================================ */
.team-section {
  background: var(--section-bg);
}

.team-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--light-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-info {
  padding: 24px 20px;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-bottom: 16px;
}

/* Why Choose Us */
.why-card {
  background: linear-gradient(160deg, #F9F5EC 0%, #F3ECDD 100%);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.why-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.why-header i {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.why-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

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

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 500;
}

.why-list li i {
  color: var(--success);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   BOTTOM SECTIONS (Testimonials, FAQ, Articles)
============================================ */
.bottom-sections {
  background: var(--cream-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

.block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.block-header i {
  font-size: 1.4rem;
  color: var(--primary-gold);
}

.block-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

/* Testimonials */
.testimonial-block {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px;
  border: 1px solid var(--light-border);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
  padding: 8px 0;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
  position: relative;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--dark-text);
  font-weight: 600;
  font-style: normal;
}

.testimonial-pagination {
  margin-top: 16px !important;
  position: relative !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border);
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gold);
  width: 24px;
  border-radius: 4px;
}

/* FAQ */
.faq-block {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px;
  border: 1px solid var(--light-border);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-block .accordion-item {
  border: 1px solid var(--light-border);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--section-bg);
}

.faq-block .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-block .accordion-button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  background: var(--section-bg);
  padding: 14px 18px;
  box-shadow: none !important;
}

.faq-block .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--primary-gold);
}

.faq-block .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.faq-block .accordion-body {
  font-size: 0.875rem;
  color: var(--secondary-text);
  padding: 0 18px 16px;
  line-height: 1.65;
}

/* Articles */
.articles-block {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px;
  border: 1px solid var(--light-border);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.article-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--light-border);
  transition: var(--transition);
  background: var(--section-bg);
}

.article-card:hover {
  border-color: rgba(169, 133, 51, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.article-img-wrap {
  width: 80px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.article-link {
  font-size: 0.8rem;
  color: var(--primary-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-card:hover .article-link {
  gap: 8px;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
  background: linear-gradient(135deg, #3A3D32 0%, var(--footer-bg) 50%, #3A3D32 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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='%23A98533' fill-opacity='0.06'%3E%3Cpath d='M20 20.5V18H18v2.5h-2.5V23H18v2.5h2V23h2.5v-2.5H20zM0 20.5V18H-2v2.5h-2.5V23H-2v2.5h2V23h2.5v-2.5H0zM20 0.5V-2H18v2.5h-2.5V3H18v2.5h2V3h2.5V0.5H20z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

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

.cta-text p {
  font-size: 1rem;
  color: var(--footer-text);
  margin: 0;
}

.cta-btn {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
============================================ */
.main-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 70px;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(217, 214, 206, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.footer-brand-sub {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.footer-brand-tag {
  display: block;
  font-size: 0.6rem;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--footer-text);
  opacity: 0.8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--footer-text);
  opacity: 0.85;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--primary-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--footer-text);
  opacity: 0.85;
}

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

.footer-hours li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-hours li i {
  color: var(--primary-gold);
  margin-top: 3px;
}

.footer-hours li span {
  display: block;
  line-height: 1.5;
}

.hours-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--footer-text);
  opacity: 0.7;
  margin: 0;
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(169, 133, 51, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
}

/* ============================================
   AOS OVERRIDES
============================================ */
[data-aos] {
  pointer-events: auto !important;
}
