/* ==========================================================================
   Three Diamond uPVC - Stylesheet
   Created with Premium Design Aesthetics & High-Converting UI Framework
   ========================================================================== */

/* Import Google Fonts for modern typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables for design system */
:root {
  --primary: #0F172A;        /* Slate 900 */
  --primary-light: #1E293B;  /* Slate 800 */
  --primary-accent: #0284C7; /* Sky 600 */
  --primary-accent-light: #38BDF8; /* Sky 400 */
  --accent: #D97706;         /* Amber 600 */
  --accent-light: #F59E0B;   /* Amber 500 */
  --accent-dark: #B45309;    /* Amber 700 */
  
  --bg-light: #F8FAFC;       /* Slate 50 */
  --bg-white: #FFFFFF;
  --bg-dark: #090D16;        /* Deeper Navy Black */
  
  --text-main: #0F172A;      /* Slate 900 */
  --text-muted: #64748B;     /* Slate 500 */
  --text-light: #94A3B8;     /* Slate 400 */
  --text-white: #F8FAFC;
  
  --border-light: #E2E8F0;   /* Slate 200 */
  --border-glass: rgba(255, 255, 255, 0.25);
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.2);
  --shadow-gold: 0 0 20px rgba(217, 119, 6, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --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 Resets & Setup
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  margin-bottom: 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

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

.top-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.top-contact-item:hover {
  color: var(--primary-accent-light);
}

.top-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
}

.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

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

.logo img {
  height: 100%;
  width: auto;
}

.header-cta-btn {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.header-cta-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.header-cta-btn svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Hero Section (Split Screen Visual Focus)
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.05) 0%, rgba(255, 255, 255, 0) 90%), var(--bg-white);
  padding: 80px 0 100px 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}

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

.hero-subtitle-tagline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-features-line {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  border-left: 3px solid var(--primary-accent);
  padding-left: 16px;
}

.hero-cta-trigger-btn {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm), var(--shadow-glow);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-cta-trigger-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow-gold), 0 10px 20px rgba(217, 119, 6, 0.2);
  transform: translateY(-3px);
}

.hero-cta-trigger-btn svg {
  transition: transform var(--transition-fast);
}

.hero-cta-trigger-btn:hover svg {
  transform: translateX(4px);
}

/* Trust badges mini layout */
.hero-trust-badges-row {
  display: flex;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.hero-trust-badge-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-badge-mini svg {
  color: var(--primary-accent);
  flex-shrink: 0;
}

/* Right-side visual image frame */
.hero-image-showcase {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 4px solid var(--bg-white);
  aspect-ratio: 16/10;
  background-color: var(--bg-light);
  transition: var(--transition-slow);
}

.hero-image-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg), 0 15px 40px rgba(2, 132, 199, 0.15);
}

.hero-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image-frame:hover .hero-showcase-img {
  transform: scale(1.04);
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%);
  padding: 20px;
  text-align: left;
  transform: translateY(0);
  transition: var(--transition-normal);
}

.hero-image-caption span {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Glass Lead Form Card */
.lead-form-container {
  position: relative;
}

.lead-form-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.lead-form-card {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bg-white);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-normal);
}

.lead-form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(2, 132, 199, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

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

/* Beautiful custom input layouts */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

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

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-normal);
}

.form-input:focus {
  border-color: var(--primary-accent);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.form-input:focus + .input-icon {
  color: var(--primary-accent);
}

/* Select Dropdown styling */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 16px;
  height: 16px;
}

/* Textarea customization */
textarea.form-input {
  resize: vertical;
  min-height: 80px;
  padding-top: 14px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  margin-top: 28px;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.form-submit-btn:active {
  transform: scale(0.98);
}

/* Loader Animation inside button */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-security svg {
  color: #10B981; /* Green color for lock */
}

/* Validation Errors */
.form-input.is-invalid {
  border-color: #EF4444;
  background-color: #FEF2F2;
}

.error-text {
  color: #EF4444;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

/* ==========================================================================
   Trust Factors / Key Benefits Section (Clean Grid)
   ========================================================================== */
.benefits-section {
  background-color: var(--bg-light);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

.benefit-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.15);
}

.benefit-icon-wrapper {
  background-color: rgba(2, 132, 199, 0.05);
  color: var(--primary-accent);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: var(--primary-accent);
  color: var(--bg-white);
  transform: rotateY(180deg);
}

.benefit-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

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

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ==========================================================================
   Product Highlights Gallery (Grid Visual focus)
   ========================================================================== */
.products-section {
  background-color: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 36px;
}

.product-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.2);
}

.product-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text-white);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.product-info {
  padding: 28px;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.product-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
}

.product-feature-item svg {
  color: #10B981;
  width: 14px;
  height: 14px;
}

.product-cta-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--bg-white);
  border: 2px dashed var(--border-light);
  color: var(--primary-accent);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.product-card:hover .product-cta-btn {
  background-color: var(--primary-accent);
  color: var(--bg-white);
  border-style: solid;
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   Comparison Section (High Value Proof)
   ========================================================================== */
.comparison-section {
  background-color: var(--bg-light);
}

.comp-table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.comp-table th {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 24px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.comp-table th.brand-col {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-accent));
}

.comp-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover {
  background-color: var(--bg-light);
}

.comp-feature-name {
  font-weight: 700;
  color: var(--primary-light);
}

.comp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.comp-badge.yes {
  background-color: #ECFDF5;
  color: #047857;
}

.comp-badge.no {
  background-color: #FEF2F2;
  color: #B91C1C;
}

.comp-badge.partial {
  background-color: #FFFBEB;
  color: #B45309;
}

/* ==========================================================================
   Bottom Action Lead Section
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary), var(--bg-dark));
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.cta-banner-content h2 {
  color: var(--text-white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-banner-bullets {
  list-style: none;
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

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

.cta-banner-bullet-item svg {
  color: var(--accent-light);
}

.cta-banner-section .lead-form-card {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Footer & Contact Info
   ========================================================================== */
.main-footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--primary-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-about h3, .footer-col-contact h3, .footer-col-locations h3 {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-about h3::after, .footer-col-contact h3::after, .footer-col-locations h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.footer-col-about p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.footer-logo img {
  height: 100%;
}

.footer-contact-list {
  list-style: none;
}

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

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

.footer-contact-item a:hover {
  color: var(--text-white);
}

.location-card {
  margin-bottom: 16px;
}

.location-title {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.location-address {
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--primary-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: var(--text-light);
}

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

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

/* Floating Elements (WhatsApp & Call) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-btn.whatsapp {
  background-color: #25D366;
}

.floating-btn.whatsapp:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.floating-btn.phone {
  background-color: var(--primary-accent);
}

.floating-btn.phone:hover {
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   Thank You Page Styling (thankyou.html)
   ========================================================================== */
.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at center, rgba(2, 132, 199, 0.05) 0%, rgba(248, 250, 252, 1) 100%);
}

.thankyou-card {
  max-width: 650px;
  width: calc(100% - 48px);
  margin: 60px auto;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  animation: slideUpFade 0.6s ease-out forwards;
}

/* Animated Success Checkmark */
.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  color: #10B981;
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.05);
  animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
  opacity: 0;
  transform: scale(0.5);
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
}

.thankyou-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.thankyou-subtitle {
  color: #10B981;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.thankyou-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.thankyou-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto 36px auto;
}

.thankyou-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.thankyou-btn.primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--bg-white);
  border: none;
  box-shadow: var(--shadow-sm);
}

.thankyou-btn.primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.thankyou-btn.whatsapp {
  background-color: #25D366;
  color: var(--bg-white);
  border: none;
}

.thankyou-btn.whatsapp:hover {
  background-color: #20BA5A;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.thankyou-btn.secondary {
  background-color: var(--bg-light);
  color: var(--primary-light);
  border: 1px solid var(--border-light);
}

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

.leads-details-summary {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  border: 1px dashed var(--border-light);
}

.leads-summary-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.leads-summary-row:last-child {
  margin-bottom: 0;
}

.leads-summary-label {
  color: var(--text-muted);
}

.leads-summary-val {
  font-weight: 600;
  color: var(--primary);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popSuccess {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .cta-banner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .top-contacts {
    flex-direction: column;
    gap: 6px;
  }
  .nav-container {
    height: 70px;
  }
  .logo {
    height: 48px;
  }
  .header-cta-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-bullets {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-trust-badges {
    flex-wrap: wrap;
    gap: 16px;
  }
  .lead-form-card {
    padding: 24px;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .cta-banner-content h2 {
    font-size: 2.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
  .thankyou-card {
    padding: 28px 20px;
  }
  .thankyou-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Production & Warehouse Gallery Section Styles
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-normal);
  transform: translateY(10px);
}

.gallery-overlay svg {
  color: var(--accent-light);
  margin-bottom: 8px;
  transform: scale(0.8);
  transition: var(--transition-normal);
}

.gallery-overlay span {
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Hover effects */
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 13, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 210;
}

.lightbox-close:hover {
  color: var(--accent-light);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  z-index: 210;
  user-select: none;
}

.lightbox-nav:hover {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: var(--text-white);
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-nav.next {
    right: 10px;
  }
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2.8rem;
  }
  .lightbox-content {
    max-width: 90%;
  }
  .lightbox-caption {
    font-size: 1rem;
    margin-top: 12px;
  }
}

/* ==========================================================================
   Lead Capture Form Popup Modal Styles
   ========================================================================== */
.form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 250;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.form-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.form-modal-card {
  position: relative;
  z-index: 260;
  max-width: 480px;
  width: calc(100% - 32px);
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 0.7;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 270;
}

.form-modal-close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .hero-subtitle-tagline {
    text-align: center;
    font-size: 1.25rem;
  }
  .hero-features-line {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-bottom: 28px;
    font-size: 0.98rem;
  }
  .hero-content div {
    display: flex;
    justify-content: center;
  }
  .hero-cta-trigger-btn {
    margin-bottom: 30px;
  }
  .hero-trust-badges-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle-tagline {
    font-size: 1.1rem;
  }
  .hero-features-line {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
  .hero-cta-trigger-btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  .hero-trust-badges-row {
    gap: 16px;
    flex-wrap: wrap;
  }
  .form-modal-card {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   Interactive FAQ Section Styles
   ========================================================================== */
.faq-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-light);
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--primary-accent);
}

.faq-arrow {
  color: var(--text-muted);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-trigger {
  color: var(--primary-accent);
  background-color: rgba(2, 132, 199, 0.02);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-accent);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out;
}

.faq-panel-content {
  padding: 0 28px 24px 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-panel-content p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-panel-content {
    padding: 0 20px 18px 20px;
    font-size: 0.92rem;
  }
}

