/* ==========================================================================
   SHREE GANESH COMPUTER SALES & SERVICE - Master Stylesheet
   Theme: Modern Corporate IT Solutions
   Author: Antigravity AI
   ========================================================================== */

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

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors */
  --primary-color: #0F4C81;     /* Classic Corporate Blue */
  --secondary-color: #2563EB;   /* Vibrant Blue */
  --accent-color: #00B8D9;      /* Electric Teal */
  
  /* Light Theme Palette (Default) */
  --bg-color: #F8FAFC;          /* Light Slate background */
  --bg-card: #FFFFFF;           /* White card base */
  --bg-header: rgba(248, 250, 252, 0.8);
  --text-color: #0F172A;        /* Dark Slate primary text */
  --text-muted: #64748B;        /* Cool grey secondary text */
  --border-color: #E2E8F0;      /* Light border */
  
  /* Shared Tokens */
  --white: #FFFFFF;
  --black: #0B1120;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  
  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(15, 76, 129, 0.08);
  --glass-shadow: 0 10px 30px rgba(15, 76, 129, 0.04);
  
  /* Geometry */
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1280px;
}

/* Dark Theme Palette (Active when .dark-theme is on body) */
body.dark-theme {
  --bg-color: #0B1120;          /* Deep Slate Navy background */
  --bg-card: #1E293B;           /* Darker card base */
  --bg-header: rgba(11, 17, 32, 0.85);
  --text-color: #F1F5F9;        /* Light Slate primary text */
  --text-muted: #94A3B8;        /* Soft grey secondary text */
  --border-color: #334155;      /* Dark border */
  
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

ul {
  list-style: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* ==========================================================================
   Reusable UI Layout Components
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-bg-alt {
  background-color: rgba(15, 76, 129, 0.03);
}

body.dark-theme .section-bg-alt {
  background-color: rgba(30, 41, 59, 0.3);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-theme .section-title {
  background: linear-gradient(135deg, var(--white), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Grid helper */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--border-color);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-color);
  color: var(--black);
}

.btn-accent:hover {
  background: #00e5ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 184, 217, 0.4);
}

/* Glassmorphism cards */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  padding: 35px;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 15px 35px rgba(15, 76, 129, 0.1);
}

body.dark-theme .glass-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.top-bar {
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  font-weight: 500;
}

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

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info a, .top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 5px 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 60px;
}

.logo-img {
  height: 52px;
  width: auto;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

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

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

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

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

/* Theme Toggle Button */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary-color);
}

body.dark-theme .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-color);
}

.theme-toggle:hover {
  transform: rotate(15deg) scale(1.05);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .moon-icon, body.dark-theme .theme-toggle .sun-icon {
  display: none;
}

body.dark-theme .theme-toggle .moon-icon, .theme-toggle .sun-icon {
  display: block;
}

/* Hamburger menu */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.menu-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hamburger menu open states */
.menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section (Parallax and Trust)
   ========================================================================== */

.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.05) 0%, rgba(0, 184, 217, 0.05) 100%);
  overflow: hidden;
}

body.dark-theme .hero {
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.95) 0%, rgba(15, 76, 129, 0.2) 100%);
}

/* Tech Graphic background grids */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(15, 76, 129, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: 0;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

body.dark-theme .hero-tag {
  background: var(--bg-card);
  color: var(--accent-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--black);
}

body.dark-theme .hero-title {
  color: var(--white);
}

.hero-title span {
  color: var(--secondary-color);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Trust Badges Grid */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-badge-item svg {
  color: var(--success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Right Graphic / Parallax visual */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 76, 129, 0.25);
  border: 4px solid var(--white);
  z-index: 2;
}

body.dark-theme .hero-image-wrapper {
  border-color: var(--bg-card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
  width: 100%;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}

.hero-graphic:hover .hero-image-wrapper img {
  transform: scale(1.1);
}

/* Interactive Floating Tech Card */
.floating-tech-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.floating-tech-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.floating-tech-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* ==========================================================================
   Statistics Counter Section
   ========================================================================== */

.stats {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.4) 0%, transparent 100%);
  z-index: 1;
}

.stats .container {
  position: relative;
  z-index: 2;
}

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

.stats-card h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.stats-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Services Section & Interactive Grid
   ========================================================================== */

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.1), rgba(37, 99, 235, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 24px;
  transition: var(--transition);
}

body.dark-theme .service-icon-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0, 184, 217, 0.1));
  color: var(--accent-color);
}

.service-card:hover .service-icon-box {
  transform: rotateY(180deg);
  background: var(--secondary-color);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.service-list {
  width: 100%;
  margin-bottom: 25px;
  display: grid;
  gap: 8px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-list-item svg {
  color: var(--accent-color);
  width: 14px;
  height: 14px;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
}

body.dark-theme .service-learn-more {
  color: var(--accent-color);
}

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

.service-learn-more svg {
  transition: var(--transition);
  width: 16px;
  height: 16px;
}

/* Service Search & Filter Controls (catalog) */
.catalog-controls {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.choose-item {
  display: flex;
  gap: 20px;
}

.choose-icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-theme .choose-icon-box {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
}

.choose-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   Industries We Serve
   ========================================================================== */

.industry-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-shadow: var(--glass-shadow);
  cursor: pointer;
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.95) 0%, rgba(15, 76, 129, 0.4) 60%, rgba(11, 17, 32, 0.1) 100%);
  z-index: 1;
}

.industry-card-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition);
}

.industry-icon {
  margin-bottom: 12px;
  color: var(--accent-color);
}

.industry-card:hover .industry-card-content {
  transform: translateY(0);
}

.industry-desc {
  font-size: 0.85rem;
  opacity: 0;
  transition: var(--transition);
  margin-top: 5px;
}

.industry-card:hover .industry-desc {
  opacity: 0.85;
}

/* ==========================================================================
   Working Process
   ========================================================================== */

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

/* Connector line */
.process-timeline::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
  z-index: 1;
}

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

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 4px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.15);
  transition: var(--transition);
}

.process-step:hover .process-number {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   AMC Pricing Toggle & Cards
   ========================================================================== */

.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.pricing-toggle-container span {
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .4s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-switch input:checked + .switch-slider {
  background-color: var(--secondary-color);
}

.pricing-switch input:checked + .switch-slider:before {
  transform: translateX(26px);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.premium {
  border: 2px solid var(--secondary-color);
  transform: translateY(-8px);
}

.pricing-card.premium:hover {
  transform: translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  margin-bottom: 25px;
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

body.dark-theme .pricing-price {
  color: var(--accent-color);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  display: grid;
  gap: 12px;
  margin-bottom: 35px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.pricing-feature-item svg {
  color: var(--success);
  width: 16px;
  height: 16px;
}

.pricing-feature-item.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-feature-item.disabled svg {
  color: var(--text-muted);
}

/* Urgent Support Banner */
.urgent-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.urgent-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10.5%);
  background-size: 20px 20px;
  opacity: 0.2;
}

.urgent-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.urgent-content {
  max-width: 700px;
}

.urgent-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.urgent-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

/* ==========================================================================
   Testimonials & FAQ Accordions
   ========================================================================== */

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0 40px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  flex-shrink: 0;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--warning);
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--secondary-color);
  width: 30px;
  border-radius: 10px;
}

/* FAQ Accordion */
.faq-list {
  display: grid;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--border-radius);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-question svg {
  transition: var(--transition);
  color: var(--secondary-color);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--secondary-color);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 24px;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.blog-img-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

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

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-title:hover {
  color: var(--secondary-color);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
}

body.dark-theme .blog-read-more {
  color: var(--accent-color);
}

.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

.blog-read-more svg {
  transition: var(--transition);
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Contact Page & Form Elements
   ========================================================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.contact-info-list {
  display: grid;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.dark-theme .contact-info-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
}

.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.hours-widget {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.hours-widget h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.hours-row span:nth-child(2) {
  font-weight: 600;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Form Validation States */
.form-control.invalid {
  border-color: var(--danger);
}

.form-control.valid {
  border-color: var(--success);
}

.error-feedback {
  color: var(--danger);
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

.form-control.invalid + .error-feedback {
  display: block;
}

.submit-alert {
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  display: none;
}

.submit-alert.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
  display: block;
}

.submit-alert.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid var(--danger);
  display: block;
}

/* Google Map Container */
.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 15px;
  padding: 30px;
  text-align: center;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--glass-shadow);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

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

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-overlay p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ==========================================================================
   Footer Component & Float Utilities
   ========================================================================== */

.footer {
  background: var(--black);
  color: #94a3b8;
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

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

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

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

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

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

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  color: var(--secondary-color);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 15px;
}

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

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

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
  animation: pulseBtn 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba59;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glass-shadow);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

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

/* Custom loading screen spinner */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(15, 76, 129, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-radius: var(--border-radius);
  padding: 20px 30px;
  width: 90%;
  max-width: 550px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-color);
}

.cookie-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-graphic {
    order: -1;
  }
  .hero-image-wrapper {
    max-width: 380px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .process-timeline::after {
    display: none;
  }
  .testimonial-card {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    z-index: 1005;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .pricing-card.premium {
    transform: none;
  }
  
  .pricing-card.premium:hover {
    transform: translateY(-6px);
  }
  
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .trust-badges {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .back-to-top {
    bottom: 20px;
    left: 20px;
  }
}
