:root {
  /* Colors */
  --primary: #08274D;
  --primary-light: #2C3640;
  --accent: #E0580C;
  --accent-hover: #C84C0A;
  --gold: #FFCB00;
  --bg: #F8FAFC;
  --text: #1E293B;
  --text-light: #64748B;
  --white: #FFFFFF;
  
  /* Glassmorphism */
  --glass-bg: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Transitions */
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

/* Typography Helpers */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 600;
}

.whatsapp-btn:hover {
  color: #128C7E;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--accent);
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--accent);
}

.stat-item p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Inquiry Form */
.inquiry-form {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 2.5rem;
  border-radius: 12px;
}

.inquiry-form h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.inquiry-form p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control option {
  color: var(--text);
  background: var(--white);
}

.inquiry-form .btn {
  width: 100%;
}

/* Product Collections */
.collections {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  group: hover;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collection-img {
  height: 250px;
  width: 100%;
}

.collection-content {
  padding: 2rem;
  text-align: center;
  position: relative;
  background: var(--white);
  z-index: 2;
  border-top: 3px solid var(--accent);
}

.collection-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.collection-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Category Slider */
.category-slider {
  padding-bottom: 3rem !important;
}

.category-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.category-img {
  width: 100%;
  height: 200px;
  border-bottom: 2px solid var(--bg);
}

.category-content {
  padding: 1.5rem;
}

.category-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Why Choose Us */
.features {
  padding: var(--spacing-xl) 0;
  background-color: var(--primary);
  color: var(--white);
  position: relative;
}

.features .section-title {
  color: var(--white);
}

.features .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--primary);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Process */
.process {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg);
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  z-index: 0;
  opacity: 0.3;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 180px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.timeline-step:hover .step-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.timeline-step h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Footer */
footer {
  background-color: #0A1121;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

footer .logo img {
  /* Removed filter to use original colors */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-top: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .timeline::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

.flip-container {
  perspective: 1000px;
  width: 100%;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.collection-card:hover .flip-inner,
.category-card:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
}
.flip-back {
  transform: rotateY(180deg);
}

/* Custom Banner */
.custom-banner {
  background: url('../img/podium_banner.jpg') center/cover fixed;
  padding: 4rem 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-banner-content {
  width: 100%;
  max-width: 850px;
  text-align: center;
  color: white;
  z-index: 2;
}
.custom-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
}
.custom-banner-content h2 span {
  color: var(--accent);
  font-style: italic;
}
.custom-banner-content p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
  font-weight: 500;
}
.custom-banner-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.custom-banner-buttons .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(255,107,0,0.3);
}
.custom-banner-buttons .whatsapp-link {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
}
.custom-banner-buttons .whatsapp-link:hover {
  color: var(--accent);
}
.custom-banner-buttons .whatsapp-link i {
  font-size: 1.4rem;
  color: #25D366;
}

/* Banner Responsive */
@media (max-width: 992px) {
  .custom-banner-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .custom-banner {
    padding: 3rem 1.5rem;
    background-attachment: scroll; /* Fix for iOS zooming issues */
  }
  .custom-banner-content h2 {
    font-size: 2.2rem;
  }
  .custom-banner-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .custom-banner-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .custom-banner-buttons .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}


/* Navigation Dropdowns */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 10px;
}
.nav-dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.nav-dropdown-content a {
  color: var(--text) !important;
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-dropdown-content a:hover {
  background-color: rgba(212, 175, 55, 0.05);
  color: var(--accent) !important;
  padding-left: 25px;
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
