/*
Theme Name: Manvik Consultant Theme
Theme URI: http://www.ashishkumawat.com
Author: Online Thela
Author URI: http://www.ashishkumawat.com
Description: A premium luxury, single-page, Elementor-compatible WordPress theme for Manvikconsultant, Jaipur.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, custom-menu, translation-ready, accessibility-ready, grid-layout
Text Domain: manvik-theme
*/
/* 
========================================================================
   MANVIKCONSULTANT - PREMIUM LUXURY STYLESHEET
   Designing Spaces, Building Trust
   Theme: Champagne Gold & Charcoal Black (With Light Mode Switch)
======================================================================== 
*/

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

/* --- Root Variables (Default Dark Mode) --- */
:root {
  --bg-primary: #0b0c0e;
  --bg-secondary: #121417;
  --bg-tertiary: #1b1d22;
  
  --accent-gold: #c5a880;
  --accent-gold-rgb: 197, 168, 128;
  --accent-gold-hover: #e5ccb0;
  --accent-gold-dark: #8d704b;
  
  --text-primary: #f5f6f8;
  --text-secondary: #9ea3ac;
  --text-muted: #646a73;
  
  --border-light: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(197, 168, 128, 0.15);
  --border-gold-focus: rgba(197, 168, 128, 0.4);
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  --container-width: 1200px;
}

/* --- Light Theme Override --- */
body.light-mode {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f3f5;
  
  --text-primary: #15181b;
  --text-secondary: #495057;
  --text-muted: #868e96;
  
  --border-light: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(197, 168, 128, 0.35);
  --border-gold-focus: rgba(197, 168, 128, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- Common Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.95rem;
  transition: color 0.4s ease;
}

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

/* --- Reusable Components & Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background-color: var(--bg-secondary);
  transition: background-color 0.4s ease;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title span {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-gold);
}

.section-desc {
  font-size: 1rem;
}

/* Gold Accent Underline */
.title-underline {
  width: 60px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 1.5rem auto 0;
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000;
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-link {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.btn-link i {
  transition: var(--transition-fast);
}

.btn-link:hover {
  color: var(--accent-gold-hover);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 12, 14, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

body.light-mode header {
  background-color: rgba(248, 249, 250, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(11, 12, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.light-mode header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 0.6rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-top: 0.2rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-item a {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

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

.nav-item a:hover,
.nav-item.active a {
  color: var(--text-primary);
}

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

/* Header Action Buttons (Theme Toggle & CTA) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.theme-toggle:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: rotate(15deg);
}

.whatsapp-btn {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.whatsapp-btn:hover {
  background-color: #1ebe57 !important;
  border-color: #1ebe57 !important;
  transform: translateY(-2px);
}

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

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

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(11, 12, 14, 0.7), rgba(11, 12, 14, 0.9)), url('assets/hero-luxury-villa.png') no-repeat center center/cover;
  z-index: 1;
  transition: background 0.4s ease;
}

body.light-mode .hero-bg {
  background: linear-gradient(rgba(248, 249, 250, 0.75), rgba(248, 249, 250, 0.95)), url('assets/hero-luxury-villa.png') no-repeat center center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 2rem;
}

.hero-tagline {
  font-family: var(--font-body);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: var(--accent-gold);
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-title span {
  font-weight: 700;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--accent-gold);
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  80% { transform: translateY(400%); }
  100% { transform: translateY(400%); }
}

/* --- Brand Pillars / Stats --- */
.pillars {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 4rem 0;
  background-color: rgba(18, 20, 23, 0.4);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

body.light-mode .pillars {
  background-color: rgba(255, 255, 255, 0.8);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--border-light);
  transition: border-color 0.4s ease;
}

.pillar-item:last-child {
  border-right: none;
}

.pillar-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.pillar-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

body.light-mode .service-card {
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body.light-mode .service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold-dark);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-card-title {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.service-card-desc {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Highlight Service Card (Split Layout) */
.services-highlight {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-top: 1.5rem;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.services-highlight-img {
  position: relative;
  min-height: 400px;
}

.services-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.services-highlight-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 50%, var(--bg-secondary));
  transition: background 0.4s ease;
}

.services-highlight-content {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 2.2rem 1.6rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

body.light-mode .testimonial-card {
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body.light-mode .testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.testimonial-rating {
  color: #fbc02d;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.client-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: auto;
  margin-bottom: 0.15rem;
}

.client-project {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- SEO & GEO Area Coverage Section --- */
.geo-section {
  position: relative;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.geo-info-content h2 {
  margin-bottom: 2rem;
}

.geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.geo-badge i {
  font-size: 0.9rem;
}

.geo-priorities {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.priority-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.priority-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.priority-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold);
  line-height: 1;
  font-weight: 400;
}

.priority-details h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.priority-details h4 small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.priority-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Map/Visual Box */
.geo-visual-box {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  position: relative;
  text-align: center;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.geo-visual-box::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-top: 1px solid var(--accent-gold);
  border-right: 1px solid var(--accent-gold);
}

.geo-visual-box::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid var(--accent-gold);
  border-left: 1px solid var(--accent-gold);
}

.geo-visual-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.geo-visual-tagline {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.geo-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.geo-region-tag {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  background-color: var(--bg-secondary);
  transition: var(--transition-fast);
}

.geo-region-tag:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --- Founder Section --- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.founder-img-container {
  position: relative;
}

.founder-img-wrapper {
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  position: relative;
}

.founder-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.founder-img-wrapper:hover img {
  filter: grayscale(0%);
}

.founder-img-decorator {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-gold);
  color: #000;
  padding: 1.5rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
}

.founder-img-decorator span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
  font-weight: 600;
}

.founder-name {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.founder-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  border-left: 2px solid var(--accent-gold);
  padding-left: 1.5rem;
}

.founder-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.founder-signature {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-top: 2.5rem;
  font-style: italic;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
}

.contact-icon-box {
  width: 55px;
  height: 55px;
  border: 1px solid var(--border-gold);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon-box {
  background-color: var(--accent-gold);
  color: #000;
  transform: rotate(45deg);
}

.contact-card:hover .contact-icon-box i {
  transform: rotate(-45deg);
}

.contact-icon-box i {
  transition: var(--transition-smooth);
}

.contact-details-box h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-details-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-details-box a:hover {
  color: var(--accent-gold);
}

/* Contact Logo Banner & Google Rating Wrapper */
.contact-banner-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.contact-banner-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-light);
  display: block;
}

.google-rating-box {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
}

body.light-mode .google-rating-box {
  background-color: rgba(0, 0, 0, 0.02);
}

.google-rating-box .stars {
  color: #fbc02d;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.google-rating-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #1ebe57;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- Footer --- */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

body.light-mode footer {
  background-color: #f1f3f5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-desc {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

/* Ultra Premium Social Icons */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background-color: rgba(255, 255, 255, 0.02);
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

body.light-mode .social-icon {
  background-color: rgba(0, 0, 0, 0.02);
}

.social-icon:hover {
  border-color: var(--accent-gold);
  color: #000;
  background-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.45);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.75rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.75rem;
}

.footer-contact-info i {
  color: var(--accent-gold);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-seo-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

/* --- Scroll Entrance Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* ========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ======================================================================== */

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-highlight {
    grid-column: span 2;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .geo-grid, .founder-grid, .contact-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  /* Navigation mobile menu */
  .hamburger {
    display: block;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    gap: 2rem;
    z-index: 1050;
    border-left: 1px solid var(--border-light);
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-cta {
    display: none; /* inside hamburger or hidden on mobile */
  }
  
  /* Hero section adjustments */
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Grid conversions to 1 column */
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .pillar-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem;
  }
  
  .pillar-item:nth-child(even) {
    border-left: 1px solid var(--border-light);
  }
  
  .pillar-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2.2rem 1.6rem;
  }
  

  
  .services-highlight {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .services-highlight-content {
    padding: 2.5rem;
  }
  
  .geo-grid, .founder-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .founder-img-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .contact-banner-wrapper {
    padding: 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-seo-meta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  

  

  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .founder-img-decorator {
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    right: -10px;
    bottom: -10px;
  }
}

