/* ==========================================================================
   Abstrakt Homes - Premium Architectural Windows & Doors
   Custom CSS Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&display=swap');

:root {
  --color-navy-900: #0a0f1a;
  --color-navy-800: #121929;
  --color-navy-700: #1a2338;
  --color-gold-600: #b8944a;
  --color-gold-500: #c9a962;
  --color-gold-400: #d4bc7a;
  --color-gold-300: #e8d5a3;
  --color-luxury-50: #f8f7f4;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-white: #ffffff;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(201, 169, 98, 0.18);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Global Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-luxury-50);
  color: var(--color-gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy-900);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-navy-900);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
  border-radius: 4px;
}

/* Text Gradient Helpers */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-gold-300) 0%, var(--color-gold-500) 50%, var(--color-gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphism Classes */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-dark {
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.glass-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(243, 244, 246, 0.8);
}

.hover-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}



/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.25rem 0;
}

/* Header Buttons */
.btn-whatsapp-header {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.btn-whatsapp-header:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.btn-phone-header {
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
  color: var(--color-navy-900) !important;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.btn-phone-header:hover {
  background: linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500));
  transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  background: #128c7e;
}

.header.scrolled {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1010;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.938rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Nav Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background: var(--color-navy-900);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1020;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.9);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(201, 169, 98, 0.12);
  color: var(--color-gold-400);
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-top: 0.15rem;
}

/* CTA Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
  color: var(--color-navy-900);
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
  transition: all var(--transition-fast);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.45);
}

.btn-outline-gold {
  border: 1px solid var(--color-gold-500);
  color: var(--color-gold-400);
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-outline-gold:hover {
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-white);
  border-color: var(--color-gold-400);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  color: var(--color-white);
  font-size: 1.5rem;
  padding: 0.5rem;
  z-index: 1010;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-navy-900);
  border-left: 1px solid rgba(201, 169, 98, 0.2);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transition: right var(--transition-normal);
  z-index: 1005;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1004;
}

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

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-navy-900);
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.8);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.7) 0%, rgba(10, 15, 26, 0.95) 100%),
              radial-gradient(ellipse at top right, rgba(201, 169, 98, 0.15), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--color-gold-400);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-gray-300);
  margin-bottom: 2.25rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Partners & Authorizations Banner
   ========================================================================== */

.partners-section {
  background: var(--color-navy-900);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  padding: 2.5rem 0;
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.partner-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}

.partner-card:hover {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.3);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-gold-400);
  margin-bottom: 0.25rem;
}

.partner-sub {
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

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

.section-padding {
  padding: 5rem 0;
}

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

.section-subtitle {
  color: var(--color-gold-600);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-navy-900);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-gray-600);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  background: rgba(201, 169, 98, 0.12);
  color: var(--color-gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Stats Counter Section
   ========================================================================== */

.stats-section {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 4rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold-400);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--color-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Category Highlight Cards
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-gold-500);
}

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

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.category-content {
  padding: 1.75rem;
}

.category-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.category-card:hover .category-title {
  color: var(--color-gold-600);
}

.category-desc {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.category-link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.category-link:hover {
  color: var(--color-gold-500);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

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

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-floating {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  color: var(--color-white);
  max-width: 240px;
}

.about-badge-floating h4 {
  color: var(--color-gold-400);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-badge-floating p {
  font-size: 0.8rem;
  color: var(--color-gray-300);
}

.about-content p {
  color: var(--color-gray-600);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ==========================================================================
   Product Cards Grid
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold-500);
  box-shadow: var(--shadow-luxury);
}

.product-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--color-gray-100);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 15, 26, 0.85);
  color: var(--color-gold-400);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.feature-pill {
  background: var(--color-luxury-50);
  color: var(--color-navy-900);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
}

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

.product-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-600);
}

/* ==========================================================================
   Certificates & Downloads Section
   ========================================================================== */

.cert-section {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

.cert-img-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-luxury);
}

.cert-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

}

.cert-downloads {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-btn {
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.download-btn:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--color-gold-400);
  transform: translateX(5px);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-gold-500);
  color: var(--color-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy-900);
}

.author-role {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */

.contact-section {
  background: var(--color-luxury-50);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-box {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-luxury);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-xl);
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-title {
  color: var(--color-gold-400);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item-text {
  font-size: 1.05rem;
  color: var(--color-gray-200);
}

.contact-form-box {
  background: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  background: var(--color-gray-50);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-gold-500);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

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

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

.footer {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--color-gray-400);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  color: var(--color-gold-400);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-gray-400);
  font-size: 0.85rem;
}

/* ==========================================================================
   Product Modal / Quick View
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-white);
  width: 100%;
  max-width: 850px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-luxury);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(10, 15, 26, 0.1);
  color: var(--color-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-gold-500);
  color: var(--color-navy-900);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

.modal-img-wrapper {
  height: 380px;
  background: var(--color-navy-900);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Category Filter Tabs
   ========================================================================== */

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gray-700);
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--color-navy-900);
  color: var(--color-gold-400);
  border-color: var(--color-navy-900);
  box-shadow: var(--shadow-md);
}

/* Page Header Banner */
.page-header-banner {
  background: var(--color-navy-900);
  padding: 8rem 0 4rem;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-banner .section-title {
  color: var(--color-white);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}
