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

/* ==========================================
   CSS CUSTOM PROPERTIES & UTILITIES
   ========================================== */
:root {
  /* Color Palette */
  --bg-dark: #0f1216;         /* Charcoal base */
  --bg-card: rgba(26, 32, 40, 0.65); /* Glassmorphism surface */
  --color-primary: #f2c94c;    /* Safety Yellow */
  --color-primary-glow: rgba(242, 201, 76, 0.2);
  --color-secondary: #2f80ed;  /* Steel Blue */
  --color-secondary-glow: rgba(47, 128, 237, 0.15);
  --text-main: #f3f4f6;        /* White / Off-white */
  --text-muted: #9ca3af;       /* Concrete Grey */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --glass-bg: rgba(21, 26, 33, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
  --backdrop-filter: blur(12px) saturate(180%);
}

/* ==========================================
   BASE & RESET RULES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

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

/* Section Spacing */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-alt {
  background-color: #090b0d;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-filter);
  -webkit-backdrop-filter: var(--backdrop-filter);
  border: var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(242, 201, 76, 0.05), var(--glass-shadow);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--color-primary);
}

.section-header p {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #0f1216;
}

.btn-primary:hover {
  background-color: #ffda66;
  box-shadow: 0 0 20px var(--color-primary-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-steel {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.btn-steel:hover {
  background-color: #4b9aff;
  box-shadow: 0 0 20px var(--color-secondary-glow);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(15, 18, 22, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: var(--glass-border);
  height: 70px;
}

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

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

.logo-icon {
  background: var(--color-primary);
  color: #0f1216;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 1.4rem;
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Dark gradient overlay for modern look */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 18, 22, 0.95) 0%, rgba(15, 18, 22, 0.8) 50%, rgba(15, 18, 22, 0.95) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(242, 201, 76, 0.1);
  border: 1px solid rgba(242, 201, 76, 0.2);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--color-primary);
}

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

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

.hero-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-form-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.hero-form-card p {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(15, 18, 22, 0.7));
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--color-primary);
  color: #0f1216;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.experience-badge .num {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.about-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.product-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.product-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-headings);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-tab-btn:hover, .product-tab-btn.active {
  background: var(--color-primary);
  color: #0f1216;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

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

.product-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-visual-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  aspect-ratio: 16/10;
}

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

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

.product-label {
  display: inline-block;
  background-color: rgba(47, 128, 237, 0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(47, 128, 237, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-bottom: 24px;
}

.product-specs-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.product-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-spec-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.brand-pills-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.brand-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.brand-pill {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-action {
  margin-top: auto;
}

/* Sub-categories grid (for "Other Building Materials") */
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.subcategory-card {
  padding: 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subcategory-card svg {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.subcategory-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  padding: 36px 32px;
  height: 100%;
}

.why-icon {
  background-color: rgba(242, 201, 76, 0.08);
  border: 1px solid rgba(242, 201, 76, 0.15);
  color: var(--color-primary);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

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

.why-card p {
  font-size: 0.95rem;
}

/* ==========================================
   DELIVERY SECTION
   ========================================== */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.delivery-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.delivery-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(242, 201, 76, 0.08);
  border: 1px solid rgba(242, 201, 76, 0.15);
  padding: 20px;
  border-radius: 12px;
  margin-top: 32px;
}

.delivery-badge-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.delivery-badge-text h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.delivery-badge-text p {
  font-size: 0.9rem;
}

.delivery-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-group {
  padding: 28px;
}

.location-group h4 {
  font-size: 1.15rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.location-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* ==========================================
   BRANDS SECTION
   ========================================== */
.brands-wrapper {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

/* Fade gradients on edges */
.brands-wrapper::before, .brands-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #090b0d, transparent);
}

.brands-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #090b0d, transparent);
}

.brands-marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
  gap: 40px;
}

.brand-logo-card {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
  font-weight: 700;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo-card.brand-cement {
  border-left: 3px solid var(--color-primary);
}

.brand-logo-card.brand-steel {
  border-left: 3px solid var(--color-secondary);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  position: relative;
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  font-family: serif;
  color: rgba(242, 201, 76, 0.15);
  position: absolute;
  top: -30px;
  left: -15px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.author-info h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-icon-wrapper {
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-item.active {
  border-color: rgba(242, 201, 76, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* Large enough threshold */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.contact-form-wrapper {
  padding: 40px;
}

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

.contact-form-wrapper p {
  margin-bottom: 32px;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* ==========================================
   CUSTOM DROPDOWN & SELECT STYLING
   ========================================== */
.custom-dropdown {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-dropdown-trigger {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dropdown-trigger:hover {
  border-color: rgba(242, 201, 76, 0.5);
  box-shadow: 0 0 8px rgba(242, 201, 76, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
}

.custom-dropdown.open .custom-dropdown-trigger {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(242, 201, 76, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}

.custom-dropdown-arrow {
  color: var(--color-primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dropdown.open .custom-dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #11151a; /* Solid charcoal theme color */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.custom-dropdown.open .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-item {
  padding: 12px 16px;
  color: #f3f4f6;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.custom-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-primary);
  padding-left: 22px; /* Smooth slide micro-animation */
}

.custom-dropdown-item.selected {
  background: rgba(242, 201, 76, 0.1);
  color: var(--color-primary);
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(242, 201, 76, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-card {
  padding: 30px;
}

.contact-detail-card h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-info-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-text h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Make map dark-themed */
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
  background-color: #06080a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
}

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

.footer-about .logo-wrapper {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.social-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--color-primary);
  color: #0f1216;
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

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

.footer-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-tag:hover {
  border-color: var(--color-primary);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

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

.footer-bottom-link {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-link:hover {
  color: #ffffff;
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-whatsapp {
  background-color: #25D366;
  animation: pulseWhatsApp 2s infinite;
}

.float-call {
  background-color: var(--color-secondary);
}

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

/* ==========================================
   ANIMATION & REVEAL EFFECTS (Intersection Observer)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-badge-grid {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  /* Mobile Navigation Hamburger */
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #0f1216;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    transition: left 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 998;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .header.scrolled .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  /* Mobile Hamburguer Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .delivery-locations {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
}
