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

:root {
  /* Color Palette */
  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-tertiary: #141414;
  --color-brand: #FEC836;
  --color-brand-rgb: 254, 200, 54;
  --color-accent: #FAC32A;
  --color-text-main: #f5f5f7;
  --color-text-muted: #8e8e93;
  --color-text-dark: #1c1c1e;
  --color-white: #ffffff;
  
  /* Glassmorphism & Borders */
  --glass-bg: rgba(13, 13, 13, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(254, 200, 54, 0.4);
  --glow-shadow: 0 0 25px rgba(254, 200, 54, 0.15);
  --glow-shadow-hover: 0 0 35px rgba(254, 200, 54, 0.35);
  
  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Section Spacing */
  --section-padding: 100px 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand);
}

/* Global Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-white) 30%, var(--color-brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--color-brand);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-brand);
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(254, 200, 54, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(254, 200, 54, 0.4);
  background-color: var(--color-accent);
}

.btn-secondary {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--color-brand);
  background: rgba(254, 200, 54, 0.05);
  transform: translateY(-3px);
}

/* Glassmorphic Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 14px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

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

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

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

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

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

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-main);
  transition: var(--transition-smooth);
}

/* Mobile Nav Menu Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--glass-border);
  z-index: 999;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

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

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--color-brand);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(254, 200, 54, 0.08) 0%, rgba(5, 5, 5, 0) 60%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 50%, var(--bg-primary) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.35;
  background-size: cover;
  background-position: center left;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(254, 200, 54, 0.1);
  border: 1px solid rgba(254, 200, 54, 0.25);
  color: var(--color-brand);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
}

.scroll-indicator::after {
  content: '';
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-brand) 50%, transparent 100%);
  animation: scrollDown 2s infinite ease-in-out;
}

/* About Us Section */
.about {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

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

.about-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 520px;
  position: relative;
}

.about-img-frame {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-frame:hover {
  transform: translateY(-8px);
  border-color: var(--color-brand);
  box-shadow: var(--glow-shadow);
}

.about-img-frame:hover img {
  transform: scale(1.05);
}

.img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  z-index: 2;
}

.img-2 {
  grid-column: 7 / 13;
  grid-row: 5 / 13;
  z-index: 3;
}

.about-details h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.about-details p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-brand);
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Products Redesign Section */
.products-section {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

.product-tabs {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px;
  overflow-x: auto;
  max-width: 900px;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-white);
}

.tab-btn.active {
  background-color: var(--color-brand);
  color: var(--color-text-dark);
}

.product-group {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.product-group.active {
  display: block;
}

.product-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.product-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.product-intro p {
  color: var(--color-text-muted);
}

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

/* Custom Product Card Styles */
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

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

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

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

.product-img-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.product-img-wrapper img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

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

.product-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-code {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}

/* Custom Carport Section Card style */
.custom-frame-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.custom-frame-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glow-shadow-hover);
}

.custom-frame-content {
  padding: 48px;
}

.custom-frame-content h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.custom-frame-content p {
  color: var(--color-text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.custom-frame-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-left: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.custom-frame-card:hover .custom-frame-img {
  transform: scale(1.03);
}

/* Project References / Gallery Section */
.gallery-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  overflow: hidden; /* Prevent slider button overflow outside page limits */
}

.slider-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.gallery-slider {
  display: grid;
  grid-template-rows: repeat(2, 220px);
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
  padding: 12px 0;
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-brand);
  box-shadow: var(--glow-shadow);
}

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

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

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--color-brand);
}

/* Slider Glassmorphic Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.prev-btn {
  left: -27px;
}

.next-btn {
  right: -27px;
}

.slider-btn:hover {
  background: var(--color-brand);
  color: var(--color-text-dark);
  border-color: var(--color-brand);
  box-shadow: var(--glow-shadow);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
}

.lightbox img {
  max-width: 100%;
  max-height: 100vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-brand);
}

/* Contact Us Section */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

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

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: var(--transition-smooth);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(254, 200, 54, 0.1);
  border: 1px solid rgba(254, 200, 54, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

.contact-details a:hover {
  color: var(--color-brand);
}

/* Premium Form Styles */
.contact-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.contact-form-card p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

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

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand);
  display: block;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--color-text-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 12px rgba(254, 200, 54, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.form-status.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* Footer Styling */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 80px 24px 40px;
}

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

.footer-info p {
  color: var(--color-text-muted);
  margin: 20px 0;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bbb-rating {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: rgba(254, 200, 54, 0.05);
  border: 1px solid rgba(254, 200, 54, 0.15);
  border-radius: 12px;
}

.bbb-rating span:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-brand);
  font-size: 1.2rem;
}

.bbb-rating span:last-child {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

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

/* Scroll-triggered Entrance Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Animation Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* CSS Keyframes */
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .hero h1 { font-size: 3.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; max-width: 500px; margin: 0 auto; }
  .custom-frame-card { grid-template-columns: 1fr; }
  .custom-frame-img { height: 320px; border-left: none; border-top: 1px solid var(--glass-border); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 16px;
  }
  
  .navbar { padding: 18px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  
  .hero { text-align: center; }
  .hero-bg { width: 100%; opacity: 0.15; }
  .hero-content { margin: 0 auto; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; flex-direction: column; gap: 12px; }
  
  .section-header h2 { font-size: 2rem; }
  
  /* Gallery Slider Responsive Settings */
  .slider-btn { display: none; }
  .gallery-slider {
    grid-template-rows: repeat(2, 180px);
    grid-auto-columns: 260px;
    gap: 16px;
  }
  
  .contact-form-card { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
