/* ========================================
   BARRISTER M. A. SODIPO CHAMBERS
   Premium Law Firm Website Stylesheet
   ======================================== */

/* CSS VARIABLES */
:root {
  --primary-blue: #0A2540;
  --navy-blue: #13315C;
  --gold: #C9A961;
  --gold-light: #D4B876;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --dark-charcoal: #1A1A1A;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --border-light: #E8ECEF;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 37, 64, 0.16);
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

body.subpage {
  padding-top: 0;
}

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

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

a:hover {
  color: var(--gold);
}

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

/* UTILITY CLASSES */
.gold {
  color: var(--gold) !important;
}

.light-text {
  color: rgba(255, 255, 255, 0.85);
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.8;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background-color: var(--white);
}

.section-dark {
  background-color: var(--light-gray);
}

.section-metrics {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
  color: var(--white);
}

.section-cta {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-blue) 100%);
  color: var(--white);
}

.section-head {
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}

.eyebrow.light {
  color: var(--gold);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.section-title.light {
  color: var(--white);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.section-lead.light {
  color: rgba(255, 255, 255, 0.85);
}

/* BUTTONS */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

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

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

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

.btn-primary-brand:hover {
  background-color: var(--navy-blue);
  border-color: var(--navy-blue);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-scales {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.preloader-text span {
  color: var(--gold);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--gold);
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; margin-left: 100%; }
}

/* NAVBAR */
.site-navbar {
  background-color: transparent;
  padding: 20px 0;
  transition: var(--transition);
}

.site-navbar.scrolled {
  background-color: var(--primary-blue);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.brand-mark {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.brand-text .gold {
  color: var(--gold);
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  transition: var(--transition);
}

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

.navbar-toggler {
  border: none;
  color: var(--white);
}

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

/* HERO CAROUSEL */
.hero-carousel {
  height: 100vh;
  min-height: 600px;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(19, 49, 92, 0.75) 100%);
}

.carousel-inner,
.carousel-item .container {
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 600px;
}

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

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 40px;
  height: 3px;
  background-color: var(--gold);
  border: none;
  opacity: 0.5;
}

.carousel-indicators button.active {
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--gold);
  border-radius: 50%;
  padding: 20px;
  background-size: 50%;
}

/* PAGE HEADER (SUBPAGES) */
.page-header {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* FEATURE CARDS (WHY CHOOSE US) */
.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-light);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--gold);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* PRACTICE CARDS */
.practice-card {
  display: block;
  background-color: var(--primary-blue);
  padding: 40px 30px;
  border-radius: 8px;
  transition: var(--transition);
  height: 100%;
  color: var(--white);
  border: 2px solid transparent;
}

.practice-card:hover {
  background-color: var(--navy-blue);
  border-color: var(--gold);
  transform: translateY(-8px);
  color: var(--white);
}

.practice-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.practice-card h5 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.practice-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.practice-card .learn-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.practice-card .learn-more i {
  font-size: 0.9rem;
  margin-left: 8px;
  transition: var(--transition);
}

.practice-card:hover .learn-more i {
  transform: translateX(5px);
}

/* ATTORNEY PORTRAIT */
.attorney-portrait {
  position: relative;
  text-align: center;
}

.portrait-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.portrait-placeholder {
  text-align: center;
  color: var(--gold);
}

.portrait-placeholder i {
  font-size: 5rem;
  margin-bottom: 15px;
  opacity: 0.5;
}

.portrait-placeholder span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  opacity: 0.7;
}

.portrait-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.attorney-credentials {
  margin-top: 30px;
}

.attorney-credentials div {
  padding: 8px 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.attorney-credentials i {
  margin-right: 10px;
}

/* METRICS */
.metric {
  padding: 30px 20px;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 1px solid var(--border-light);
}

.quote-mark {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-initial {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-author h6 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--primary-blue);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.carousel-indicators.position-static {
  position: static;
  margin-top: 30px;
}

.carousel-indicators.position-static button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gold);
  border: none;
  opacity: 0.3;
}

.carousel-indicators.position-static button.active {
  opacity: 1;
}

/* MISSION/VISION CARDS */
.mv-card {
  background-color: var(--primary-blue);
  padding: 50px 40px;
  border-radius: 8px;
  color: var(--white);
  height: 100%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.mv-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.mv-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.mv-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
}

/* VALUE CARDS */
.value-card {
  background-color: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 15px;
}

.value-card h5 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* PHILOSOPHY QUOTE */
.philosophy-quote {
  background-color: var(--primary-blue);
  padding: 50px 40px;
  border-radius: 8px;
  color: var(--white);
  position: relative;
  border: 2px solid var(--gold);
}

.philosophy-quote .quote-mark {
  font-size: 4rem;
  opacity: 0.2;
  margin-bottom: 20px;
}

.philosophy-quote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--white);
}

.quote-author {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

/* COMMITMENT CARDS */
.commitment-card {
  background-color: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.commitment-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.commitment-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.commitment-card h5 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.commitment-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* TRUST ITEMS */
.trust-item {
  text-align: center;
  padding: 30px 20px;
}

.trust-item i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.trust-item h5 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* SERVICE SECTIONS */
.service-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.service-icon-large i {
  font-size: 2.5rem;
  color: var(--white);
}

.service-details h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.section-dark .service-details h5 {
  color: var(--white);
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-list li {
  padding: 10px 0;
  color: #fff;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}

.serv-list li {

  color: var(--text-dark);
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);

}

.section-dark .service-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-list li:last-child {
  border-bottom: none;
}

/* CASE CARDS */
.case-card {
  background-color: var(--primary-blue);
  padding: 40px 30px;
  border-radius: 8px;
  color: var(--white);
  height: 100%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.case-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.case-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.case-card h5 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.case-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CASE CATEGORY */
.case-category {
  background-color: var(--white);
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.case-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.case-cat-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.case-cat-header i {
  font-size: 2rem;
  color: var(--gold);
}

.case-cat-header h4 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--primary-blue);
}

.case-category p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ENGAGEMENT CARDS */
.engagement-card {
  background-color: var(--primary-blue);
  padding: 40px 35px;
  border-radius: 8px;
  color: var(--white);
  height: 100%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.engagement-card:hover {
  border-color: var(--gold);
}

.engagement-tag {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.engagement-card h5 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 15px;
}

.engagement-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.engagement-outcome {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.engagement-outcome i {
  margin-right: 8px;
}

/* STRENGTH CARDS */
.strength-card {
  background-color: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.strength-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.strength-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.strength-card h5 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.strength-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CONTACT INFO CARDS */
.contact-info-card {
  background-color: var(--primary-blue);
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.contact-info-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-info-card h5 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.contact-info-card a {
  color: var(--primary-blue);
  font-weight: 500;
}

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

.address-card {
  max-width: 600px;
  margin: 0 auto;
}

/* MAP CONTAINER */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* FORM CONTAINER */
.form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.section-dark .form-container {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FOOTER */
.site-footer {
  background-color: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
}

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

.footer-brand .brand-mark {
  color: var(--gold);
}

.footer-brand .brand-text {
  color: var(--white);
}

.site-footer h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

/* WHATSAPP WIDGET */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-widget:hover {
  background-color: #20BA5A;
  color: var(--white);
  transform: scale(1.1);
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* YEAR SPAN */
#year {
  font-weight: 600;
}