/* =========================================================
   GORGOR OUTDOOR — LUXURY WEB 2.0 DESIGN
   Premium Outdoor Kitchen for High-Net-Worth Clients
   WordPress Theme Styles
   ========================================================= */

:root {
  /* Luxury Color Palette */
  --bg: #fafbfc;
  --bg-cream: #f8f6f3;
  --bg-dark: #0a0c10;
  --bg-darker: #060709;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: rgba(255, 255, 255, 0.7);
  --white: #ffffff;
  
  /* Signature Fire Red */
  --red: #c41e3a;
  --red-light: #dc143c;
  --red-dark: #9b1b30;
  --red-glow: rgba(196, 30, 58, 0.2);
  
  /* Gold Accent */
  --gold: #b8860b;
  --gold-light: #d4a537;
  
  /* Borders & Surfaces */
  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(10, 12, 16, 0.8);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 10px 40px rgba(196, 30, 58, 0.3);
  --shadow-glow: 0 0 60px rgba(196, 30, 58, 0.15);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Container */
  --container: 1280px;
  --container-narrow: 900px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font: inherit;
}

::selection {
  background: var(--red-glow);
  color: var(--text);
}

/* ==========================================================================
   Container
   ========================================================================== */

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

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 50%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement {
  background: linear-gradient(90deg, var(--bg-dark) 0%, #1a1a2e 100%);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.announcement-item svg {
  width: 16px;
  height: 16px;
  color: var(--red-light);
}

.announcement-highlight {
  color: var(--gold-light);
  font-weight: 700;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

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

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

.logo img {
  height: 40px;
  width: auto;
}

.custom-logo-link img {
  height: 40px;
  width: auto;
}

.nav,
.main-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link,
.main-navigation a {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  position: relative;
}

.nav-link:hover,
.main-navigation a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.nav-link.active,
.main-navigation .current-menu-item > a {
  color: var(--red);
}

/* Dropdown */
.nav-dropdown,
.main-navigation .menu-item-has-children {
  position: relative;
}

.nav-dropdown-toggle,
.main-navigation .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle svg,
.main-navigation .menu-item-has-children > a::after {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}

.main-navigation .menu-item-has-children > a::after {
  content: '';
  border: solid var(--text-muted);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 6px;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.main-navigation .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu,
.main-navigation .sub-menu {
  display: flex !important;
  flex-direction: column !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  list-style: none;
  z-index: 9999;
}

.main-navigation .sub-menu li {
  display: block !important;
  width: 100% !important;
  float: none !important;
}

.main-navigation ul ul {
  display: flex !important;
  flex-direction: column !important;
}

.main-navigation ul ul li {
  display: block !important;
  width: 100% !important;
}

.nav-dropdown:hover .nav-dropdown-menu,
.main-navigation .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item,
.main-navigation .sub-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s var(--ease);
}

.nav-dropdown-item:hover,
.main-navigation .sub-menu a:hover {
  background: var(--bg);
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s var(--ease);
}

.header-phone:hover {
  background: var(--red);
  color: var(--white);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
}

.burger-icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bg);
  font-size: 24px;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
}

.mobile-menu-nav {
  padding: 16px;
}

.mobile-menu-nav a {
  display: block;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-md);
  transition: all 0.2s var(--ease);
}

.mobile-menu-nav a:hover {
  background: var(--bg);
  color: var(--red);
}

.mobile-menu-cta {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu-cta .btn {
  width: 100%;
  margin-bottom: 12px;
}

.mobile-menu-contact {
  text-align: center;
  padding-top: 16px;
}

.mobile-menu-contact a {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: var(--red);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, var(--bg-darker) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 12, 16, 0.85) 0%, rgba(10, 12, 16, 0.6) 40%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  margin-right: auto;
  padding-right: 60px;
  padding-left: 0;
}

.hero .container {
  padding-left: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px var(--red-light);
}

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

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .accent {
  display: block;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat-value span {
  color: var(--red-light);
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Hero Floating Card */
.hero-card {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 380px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.hero-card-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.hero-card-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--red);
}

.hero-card-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.trust-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, rgba(196, 30, 58, 0.04) 100%);
  border-radius: var(--radius-md);
  color: var(--red);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.trust-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--white);
}

.section-cream {
  background: var(--bg-cream);
}

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

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-description {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-dark .section-description {
  color: var(--text-light);
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */

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

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 12, 16, 0.9) 100%);
  z-index: 1;
  transition: all 0.4s var(--ease);
}

.category-card:hover::before {
  background: linear-gradient(180deg, transparent 20%, rgba(196, 30, 58, 0.85) 100%);
}

.category-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.category-card:hover .category-card-image {
  transform: scale(1.08);
}

.category-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.category-card-count {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.category-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-card-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 20px;
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease);
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.category-card.featured {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.category-card.featured .category-card-title {
  font-size: 28px;
}

/* ==========================================================================
   Products Showcase
   ========================================================================== */

.products-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: 24px;
}

.product-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
}

.product-card-price span {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
}

.product-card-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: all 0.3s var(--ease);
}

.product-card:hover .product-card-btn {
  background: var(--red);
  color: var(--white);
}

/* ==========================================================================
   Video Showcase
   ========================================================================== */

.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.showcase-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.showcase-main video,
.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.showcase-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.showcase-main-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 400px;
}

.showcase-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1;
  min-height: 180px;
}

.showcase-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.showcase-thumb:hover img {
  transform: scale(1.08);
}

.showcase-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 12, 16, 0.7) 100%);
}

.showcase-thumb-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

/* Proof Strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.proof-item {
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.proof-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.15);
  border-radius: var(--radius-md);
  color: var(--red-light);
  margin-bottom: 16px;
}

.proof-item-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.proof-item-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

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

.feature-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 600;
  color: rgba(196, 30, 58, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

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

.testimonial-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(196, 30, 58, 0.1);
  line-height: 1;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--red) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-info strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

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

/* ==========================================================================
   Partners Section
   ========================================================================== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s var(--ease);
}

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

.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.partner-logo img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s var(--ease);
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.partner-type {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: var(--red);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.08);
  border-radius: var(--radius-sm);
  color: var(--red);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--red);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item p,
.faq-item .faq-content {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Gallery Grid
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 30, 58, 0);
  transition: background 0.3s var(--ease);
}

.gallery-item:hover::after {
  background: rgba(196, 30, 58, 0.3);
}

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

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  transition: gap 0.3s var(--ease);
}

.blog-card:hover .blog-card-link {
  gap: 12px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.2) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding-top: 80px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
}

.footer-top-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 40px;
}

.footer-tags {
  display: flex;
  gap: 10px;
}

.footer-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-light);
}

.footer-top-right {
  display: flex;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.footer-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-light);
  transition: all 0.2s var(--ease);
}

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

/* Footer Menu Widget */
.footer-col .widget_nav_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col .widget_nav_menu ul li a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-light);
  transition: all 0.2s var(--ease);
}

.footer-col .widget_nav_menu ul li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.footer-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.footer-contact-row:last-child {
  border-bottom: none;
}

.footer-contact-row span:first-child {
  color: var(--text-light);
}

.footer-contact-row span:last-child {
  color: var(--white);
  font-weight: 600;
}

.footer-newsletter-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  outline: none;
  font-size: 14px;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: var(--text-light);
}

.footer-newsletter-form input[type="email"]:focus {
  border-color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  font-size: 14px;
  color: var(--text-light);
}

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

.footer-bottom-links a {
  color: var(--text-light);
  transition: color 0.2s var(--ease);
}

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

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-tooltip {
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

/* Captions */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Galleries */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 16px;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }

/* Screen Reader Text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Admin Bar Fix */
.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

/* ==========================================================================
   Page Templates
   ========================================================================== */

/* Single Post */
.single-post-header {
  padding: 80px 0;
  background: var(--bg-cream);
  text-align: center;
}

.single-post-header .entry-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  margin-bottom: 20px;
}

.single-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.single-post-content {
  padding: 60px 0;
}

.single-post-content .entry-content {
  max-width: 800px;
  margin: 0 auto;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.entry-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.entry-content img {
  border-radius: var(--radius-lg);
  margin: 2em 0;
}

/* Archive Page */
.archive-header {
  padding: 60px 0;
  background: var(--bg-cream);
  text-align: center;
}

.archive-header .page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 600;
}

.archive-description {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

/* 404 Page */
.error-404 {
  padding: 120px 0;
  text-align: center;
}

.error-404 h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(196, 30, 58, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.error-404 h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.error-404 p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s var(--ease);
}

.pagination a:hover {
  border-color: var(--red);
  color: var(--red);
}

.pagination .current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Comments */
.comments-area {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.comments-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  margin-bottom: 32px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-author img {
  border-radius: var(--radius-full);
}

.comment-author .fn {
  font-weight: 700;
}

.comment-metadata {
  font-size: 13px;
  color: var(--text-muted);
}

/* Comment Form */
.comment-form {
  margin-top: 40px;
}

.comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  margin-bottom: 20px;
  transition: border-color 0.2s var(--ease);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

.comment-form .submit {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 50%, var(--red-dark) 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-card {
    display: none;
  }
  
  .products-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero::before {
    width: 100%;
    opacity: 0.25;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-card.featured {
    grid-column: span 2;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-sidebar {
    flex-direction: row;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav,
  .main-navigation {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .header-phone {
    display: none;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 80px 0;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .hero-stat {
    flex: 1 1 45%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-bar-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card.featured {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  
  .products-showcase {
    grid-template-columns: 1fr;
  }
  
  .showcase-sidebar {
    flex-direction: column;
  }
  
  .proof-strip {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-top-left {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-newsletter-form {
    flex-direction: column;
  }
  
  .announcement-content {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-stat-value {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
