/* 
   BrandOxy Digital Marketing Website Styles
   Design Style: Premium, Modern Creative Agency
   Primary Brand Palette: Primary Red (#A30000), Dark Red (#7A0000), White (#FFFFFF), Light BG (#FAFAFA), Dark Text (#1A1A1A)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@700;800;900&display=swap');

:root {
  /* Brand Colors */
  --primary-red: #A30000;
  --dark-red: #7A0000;
  --white: #FFFFFF;
  --light-bg: #FAFAFA;
  --dark-text: #1A1A1A;
  
  /* Muted & Overlay Colors */
  --light-gray: #F0F0F0;
  --medium-gray: #888888;
  --dark-gray: #2d2d2d;
  --red-glow: rgba(163, 0, 0, 0.15);
  --red-glow-strong: rgba(163, 0, 0, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(26, 26, 26, 0.85);
  --glass-border: rgba(163, 0, 0, 0.12);
  --glass-border-white: rgba(255, 255, 255, 0.2);
  
  /* Fonts */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-circle: 50%;
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 10px 30px rgba(163, 0, 0, 0.25);
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.03);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: var(--radius-sm);
  border: 2px solid var(--light-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-red);
}

/* CSS scrollbar properties for Firefox */
html {
  scrollbar-color: var(--primary-red) var(--light-bg);
  scrollbar-width: thin;
}

/* --- Layout Components --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-red);
  border-radius: 2px;
}

.section-header p {
  color: var(--medium-gray);
  font-size: 1.15rem;
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 10px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(163, 0, 0, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark-text);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}

.btn-secondary:hover {
  background-color: var(--light-gray);
  transform: translateY(-3px);
}

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

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* --- Sticky Navigation Bar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  box-shadow: var(--shadow-premium);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height var(--transition-normal);
}

.header.scrolled .nav-container {
  height: 60px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img-wrapper {
  position: relative;
  width: 40px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width var(--transition-normal), height var(--transition-normal);
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity var(--transition-normal);
}

.logo-white {
  opacity: 1;
  pointer-events: auto;
}

.logo-color {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color var(--transition-normal);
}

/* Scrolled header logo styling */
.header.scrolled .logo-img-wrapper {
  width: 32px;
  height: 38px;
}

.header.scrolled .logo-white {
  opacity: 0;
  pointer-events: none;
}

.header.scrolled .logo-color {
  opacity: 1;
  pointer-events: auto;
}

.header.scrolled .logo-text {
  color: var(--primary-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
  transition: all var(--transition-fast);
}

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

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

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

/* Scrolled header overrides for links */
.header.scrolled .nav-link {
  color: var(--dark-text);
}

.header.scrolled .nav-link::after {
  background-color: var(--primary-red);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary-red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger Menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.header.scrolled .menu-toggle span {
  background-color: var(--dark-text);
}

/* --- Hero Section & Custom Gradients --- */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #7A0000 0%, #300000 50%, #1A1A1A 100%);
  color: var(--white);
  padding: 180px 0 120px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(163, 0, 0, 0.15) 2px, transparent 2px),
    radial-gradient(rgba(163, 0, 0, 0.1) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.4;
  z-index: 1;
}

.hero-glow-element {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(163, 0, 0, 0.45) 0%, rgba(163, 0, 0, 0) 70%);
  top: -10%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
  animation: glow-float 8s ease-in-out infinite alternate;
}

@keyframes glow-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 680px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: rgba(163, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(163, 0, 0, 0.2);
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
}

.hero h1 .highlight-red {
  color: var(--primary-red);
  background: linear-gradient(to right, #FF4D4D, #A30000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.2rem;
  color: #CCCCCC;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 580px;
}

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

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  opacity: 0.15;
  filter: blur(40px);
}

.hero-brand-card {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
  animation: float-card 6s ease-in-out infinite;
}

.hero-brand-card:hover {
  transform: rotate(0deg) scale(1.05);
}

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

.hero-brand-logo-img-wrapper {
  position: relative;
  width: 50px;
  height: 60px;
  overflow: hidden;
}

.hero-brand-logo-img {
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  filter: drop-shadow(0 0 10px rgba(163,0,0,0.5));
}

.hero-brand-logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hero-brand-card .card-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #CCCCCC;
  text-align: center;
}

@keyframes float-card {
  0% { transform: translateY(0px) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(-3deg); }
  100% { transform: translateY(0px) rotate(-5deg); }
}

.hero-float-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-red);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 6;
}

.fi-1 { top: 10%; left: 5%; animation: float-slow 4s ease-in-out infinite; }
.fi-2 { bottom: 15%; right: 5%; animation: float-slow 5s ease-in-out infinite 1s; }
.fi-3 { top: 40%; right: -5%; animation: float-slow 6s ease-in-out infinite 0.5s; }

@keyframes float-slow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* --- Section: Why BrandOxy --- */
.why-section {
  background-color: var(--light-bg);
  position: relative;
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(163, 0, 0, 0.15);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--red-glow);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: var(--transition-fast);
}

.why-card:hover .card-icon {
  background-color: var(--primary-red);
  color: var(--white);
  transform: rotateY(360deg);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.why-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* --- Section: About BrandOxy --- */
.about-section {
  background-color: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-main {
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  z-index: 2;
}

.about-img-overlay {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 50%;
  border-radius: var(--radius-md);
  border: 8px solid var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 3;
}

.about-tag {
  color: var(--primary-red);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 25px;
  max-width: 500px;
}

.about-text {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  background-color: var(--red-glow);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.highlight-text {
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.95rem;
}

/* --- Section: Featured Services Preview --- */
.services-preview-section {
  background-color: var(--light-bg);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-preview-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--glass-border);
}

.service-preview-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-preview-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-preview-card:hover .service-preview-img-container img {
  transform: scale(1.08);
}

.service-preview-card-body {
  padding: 30px;
}

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

.service-preview-card-body p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  min-height: 54px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link i {
  transition: transform 0.2s ease;
}

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

.services-more-cta {
  display: flex;
  justify-content: center;
}

/* --- Section: Testimonials (User Request) --- */
.testimonials-section {
  background-color: var(--white);
}

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

.testimonial-card {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.7;
}

.testimonial-stars {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-red);
}

.client-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.client-info span {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* --- Section: Client Trust Section (Counters) --- */
.trust-section {
  background: radial-gradient(circle at center, #7A0000 0%, #300000 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.counter-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--white) 30%, #FFB3B3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-label {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #CCCCCC;
}

/* --- Final CTA & Footer --- */
.final-cta {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
  top: -150px;
  left: -150px;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
  bottom: -150px;
  right: -150px;
}

.cta-box h2 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* Footer styling */
.footer {
  background-color: #111111;
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 1px solid #222222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-logo-img-wrapper {
  position: relative;
  width: 44px;
  height: 52px;
  overflow: hidden;
}

.footer-logo-img {
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(1.2);
}

.footer-logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 320px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222222;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-column h3 {
  color: var(--white) !important;
  font-size: 1.2rem;
  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(--primary-red);
}

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

.footer-links a {
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary-red);
  margin-top: 4px;
}

.footer-contact a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* --- Floating Actions --- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
  background-color: #25D366;
  animation: float-pulse 2s infinite;
}

.float-call {
  background-color: var(--primary-red);
  font-size: 1.5rem;
}

@keyframes float-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- SERVICES PAGE SPECIFIC --- */
.services-header {
  background: radial-gradient(circle at 10% 20%, #7A0000 0%, #300000 70%, #1A1A1A 100%);
  color: var(--white);
  padding: 180px 0 100px 0;
  text-align: center;
  position: relative;
}

.services-header h1 {
  color: var(--white) !important;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.services-header p {
  color: #CCCCCC;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.detailed-service-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--light-gray);
}

.detailed-service-section:nth-child(even) {
  background-color: var(--white);
}

.detailed-service-section:nth-child(odd) {
  background-color: var(--light-bg);
}

.detailed-service-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.detailed-service-section:nth-child(even) .detailed-service-grid {
  grid-template-columns: 1.1fr 1fr;
}

.detailed-service-section:nth-child(even) .detailed-service-content {
  grid-column: 2;
  grid-row: 1;
}

.detailed-service-section:nth-child(even) .detailed-service-visual {
  grid-column: 1;
  grid-row: 1;
}

.detailed-service-visual {
  position: relative;
}

.detailed-service-img-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4 / 3;
}

.detailed-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-sub-tag {
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
}

.detailed-service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.detailed-service-content > p {
  color: var(--medium-gray);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.detailed-service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin-bottom: 40px;
}

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

.service-feature-item i {
  color: var(--primary-red);
  font-size: 0.9rem;
}

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

/* --- CONTACT PAGE SPECIFIC --- */
.contact-header {
  background: radial-gradient(circle at 90% 20%, #7A0000 0%, #300000 70%, #1A1A1A 100%);
  color: var(--white);
  padding: 180px 0 100px 0;
  text-align: center;
}

.contact-header h1 {
  color: var(--white) !important;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#services-main-title,
#contact-main-title {
  color: var(--white) !important;
}

.contact-header p {
  color: #CCCCCC;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact-info-intro p {
  color: var(--medium-gray);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  border-color: var(--glass-border);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--red-glow);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-method-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--medium-gray);
  margin-bottom: 4px;
}

.contact-method-details p,
.contact-method-details a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
}

.contact-method-details a:hover {
  color: var(--primary-red);
}

/* Map Embed */
.map-embed-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  height: 300px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--light-gray);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-text);
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background-color: var(--light-bg);
  border: 1px solid #EAEAEA;
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary-red);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--red-glow);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 48px;
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Toast Success Popup */
.toast-success {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #1A1A1A;
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateY(150px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1001;
  border-left: 4px solid #25D366;
}

.toast-success.show {
  transform: translateY(0);
}

.toast-success i {
  color: #25D366;
  font-size: 1.2rem;
}

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

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

/* Scroll-driven animations where supported */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: fade-in-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 5% entry 30%;
    }
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  h1 { font-size: 3.5rem; }
  .section-header h2 { font-size: 2.4rem; }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .detailed-service-grid,
  .detailed-service-section:nth-child(even) .detailed-service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .detailed-service-section:nth-child(even) .detailed-service-content,
  .detailed-service-section:nth-child(even) .detailed-service-visual {
    grid-column: 1;
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 40px 40px 40px;
    gap: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    color: var(--dark-text);
  }
  
  .nav-link::after {
    background-color: var(--primary-red);
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-red);
  }
  
  .nav-cta {
    display: none; /* Hide top CTA on mobile, available in menu or floating */
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-card-container {
    margin: 0 auto;
    height: 350px;
    max-width: 350px;
  }
  
  .hero-brand-card {
    width: 230px;
    height: 230px;
    padding: 30px;
  }
  
  .hero-brand-logo-img-wrapper {
    width: 42px;
    height: 50px;
  }
  .hero-brand-logo-text {
    font-size: 1.6rem;
  }
  
  .fi-1 { width: 50px; height: 50px; font-size: 1.2rem; }
  .fi-2 { width: 50px; height: 50px; font-size: 1.2rem; }
  .fi-3 { display: none; }
  
  .why-grid,
  .services-preview-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    gap: 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-box h2 {
    font-size: 2.2rem;
  }
  
  .cta-box p {
    font-size: 1.05rem;
  }
  
  .services-header h1,
  .contact-header h1 {
    font-size: 2.6rem;
    color: var(--white) !important;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.45rem;
  }
}

/* Hamburger Menu animation */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary-red);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary-red);
}

/* --- Section: Our Clients --- */
.clients-section {
  background-color: var(--white);
  padding: 80px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.client-card {
  background: var(--light-bg);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(163, 0, 0, 0.08);
}

.client-card-icon {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-sm);
  background-color: var(--red-glow);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.client-card:hover .client-card-icon {
  background-color: var(--primary-red);
  color: var(--white);
}

.client-card-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2px;
}

.client-card-info span {
  font-size: 0.8rem;
  color: var(--medium-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Section: GMB Reviews --- */
.gmb-section {
  background-color: var(--light-bg);
  padding: 100px 0;
}

.gmb-header-block {
  text-align: center;
  margin-bottom: 50px;
}

.gmb-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.gmb-google-logo {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.gmb-google-logo span:nth-child(1) { color: #4285F4; } /* G */
.gmb-google-logo span:nth-child(2) { color: #EA4335; } /* o */
.gmb-google-logo span:nth-child(3) { color: #FBBC05; } /* o */
.gmb-google-logo span:nth-child(4) { color: #4285F4; } /* g */
.gmb-google-logo span:nth-child(5) { color: #34A853; } /* l */
.gmb-google-logo span:nth-child(6) { color: #EA4335; } /* e */

.gmb-stars-inline {
  color: #FBBC05;
  font-size: 0.95rem;
}

.gmb-score {
  font-weight: 700;
  color: var(--dark-text);
  font-size: 0.95rem;
}

.gmb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.gmb-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.gmb-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(66, 133, 244, 0.25);
}

.gmb-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.gmb-author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gmb-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--red-glow);
  color: var(--primary-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gmb-author-name h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.gmb-verified-buyer {
  font-size: 0.75rem;
  color: #34A853;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.gmb-google-icon-wrapper {
  color: #4285F4;
  font-size: 1.25rem;
}

.gmb-stars-rating {
  color: #FBBC05;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.gmb-review-text {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.gmb-tag {
  display: inline-block;
  font-size: 0.75rem;
  background-color: rgba(66, 133, 244, 0.08);
  color: #4285F4;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .gmb-grid {
    grid-template-columns: 1fr;
  }
}

