/* 
 * Serani Export - Clone Styles 
 * Target: https://serani.lovable.app
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-color: #0b1120;
  /* Fallback */
  --hero-gradient: linear-gradient(135deg, #172A45 0%, #274268 50%, #2D6886 100%);
  --footer-gradient: linear-gradient(#0F1C2E 0%, #091320 100%);
  --accent-color: #d4af37;
  --accent-hover: #b5952f;

  /* Text Colors */
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-white: #ffffff;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-features: #FBFBF8;
  --bg-products: #EDEFF3;

  /* UI Elements */
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* Social Brand Colors */
  --whatsapp-color: #25D366;
  --linkedin-color: #0077B5;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, rgb(232, 165, 48) 0%, rgb(245, 190, 61) 100%);
  color: rgb(255, 250, 235);
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgb(232, 165, 48) 0%, rgb(245, 190, 61) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px -3px rgba(232, 165, 48, 0.4);
  color: rgb(255, 250, 235);
}

/* Specific Nav Button Style */
.nav-cta {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 14px;
  font-weight: 500;
  box-shadow: rgba(23, 42, 69, 0.08) 0px 4px 20px -4px;
}

.nav-cta:hover {
  box-shadow: rgba(232, 165, 48, 0.4) 0px 6px 25px -4px;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-color);
}

.section-subtitle {
  display: block;
  text-align: center;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.section-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* Header Adjustments */
/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo span {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(rgba(11, 17, 32, 0.85), rgba(11, 17, 32, 0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  overflow: hidden;
}

/* Accreditation Section */
.accreditations {
  padding: 3rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.accreditation-badge {
  display: inline-block;
  background-color: #e2e8f0;
  color: #475569;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.accreditation-logos img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  margin: 0 auto;
  transition: var(--transition);
}

.accreditation-logos img:hover {
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: left;
}

.badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Hero Specific Button Styles */
.hero-buttons .btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.hero-buttons .btn-primary {
  background: #F59E0B;
  /* Flat yellow color from image */
  color: #1e293b;
  /* Dark text */
  display: inline-flex;
  align-items: center;
}

.hero-buttons .btn-primary:hover {
  background: #d97706;
  color: #1e293b;
  transform: translateY(-2px);
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(5px);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--bg-features);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.2);
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Glass Intro Box */
.glass-intro-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  padding: 3rem;
  border-radius: 16px;
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 10;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background-color: var(--bg-products);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);

  /* Animation properties - initial state */
  opacity: 0;
}

.product-card.animate-in {
  animation: slideInLeft 0.8s ease-out forwards;
}

/* Staggered animation delays for the first 12 items */
.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-card:nth-child(5) {
  animation-delay: 0.5s;
}

.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

.product-card:nth-child(7) {
  animation-delay: 0.7s;
}

.product-card:nth-child(8) {
  animation-delay: 0.8s;
}

.product-card:nth-child(9) {
  animation-delay: 0.9s;
}

.product-card:nth-child(10) {
  animation-delay: 1.0s;
}

.product-card:nth-child(11) {
  animation-delay: 1.1s;
}

.product-card:nth-child(12) {
  animation-delay: 1.2s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-image {
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-content .section-title,
.about-content .section-subtitle,
.about-content p {
  text-align: left;
}

.about-list {
  margin: 2rem 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.about-list li i {
  color: var(--accent-color);
  background: rgba(212, 175, 55, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--hero-gradient);
  color: var(--text-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--footer-gradient);
  color: var(--text-white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 1.5rem;
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-logo {
  color: var(--text-white);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--accent-color);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.9rem;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color) !important;
  font-weight: 500;
  transition: var(--transition);
}

.resource-link:hover {
  color: var(--text-white) !important;
  padding-left: 5px;
}



/* Inner Page Hero */
.page-hero {
  padding: 140px 0 80px;
  background: var(--hero-gradient);
  color: var(--text-white);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.page-hero p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About Page Specifics */
.about-hero h1 span {
  color: var(--accent-color);
}

/* Introduction Section with Overlay Stats */
.about-intro {
  padding: 6rem 0;
  overflow: visible;
}

.intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.intro-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.stats-overlay {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  max-width: 250px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-text h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 2px;
}

.stat-text p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

.intro-features {
  margin-top: 2rem;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.intro-feature-item i {
  color: var(--accent-color);
  margin-top: 4px;
}

/* Markets We Serve */
.markets-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.market-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.market-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.region-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-list li::before {
  content: "•";
  color: var(--accent-color);
}

/* Vision & Compliance */
.vision-compliance {
  padding: 6rem 0;
}

.vc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.vision-card {
  background: var(--primary-color);
  padding: 3rem;
  border-radius: 12px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
  line-height: 1;
}

.vision-card h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.vision-card p {
  font-size: 1.25rem;
  line-height: 1.8;
  position: relative;
  font-style: italic;
}

.compliance-content h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.compliance-item {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.compliance-icon {
  width: 40px;
  height: 40px;
  background: rgba(39, 66, 104, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .intro-container,
  .vc-grid {
    grid-template-columns: 1fr;
  }

  .stats-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -30px;
    margin-left: 20px;
    max-width: fit-content;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 6rem 0;
  background-color: #fbfbf8;
  /* Specific off-white */
}

.contact-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  /* Adjusted ratio */
  gap: 4rem;
}

.contact-form-wrapper {
  order: 1;
  /* Form on left */
}

.contact-info {
  order: 2;
  /* Info on right */
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Company Profile Card */
.profile-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.profile-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.profile-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.profile-card p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.download-form {
  display: flex;
  gap: 0.5rem;
}

.download-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
}

.btn-download {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Form Styling */
.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.form-grid-2,
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 0.8px solid rgb(218, 223, 231);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  background-color: #fbfbf8;
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, rgb(232, 165, 48) 0%, rgb(245, 190, 61) 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Responsive adjustments for inner pages */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    order: 2;
  }

  /* RFQ Page Specifics */
  .form-section-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    border-left: 4px solid var(--accent-color);
    padding-left: 12px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .header .btn {
      display: none;
    }

    .nav-menu .btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      margin-top: 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--bg-white);
      flex-direction: column;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      transform: translateY(-150%);
      transition: var(--transition);
      z-index: 999;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
      transform: translateY(0);
    }

    .hamburger {
      display: block;
    }

    .footer-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .hero {
      padding: 120px 0 80px;
      text-align: center;
    }

    .hero-content {
      margin: 0 auto;
      text-align: center;
    }

    .hero-title {
      font-size: 2.5rem;
    }

    .hero-buttons {
      justify-content: center;
    }

    .about-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .about-content .section-title,
    .about-content .section-subtitle,
    .about-content p {
      text-align: center;
    }

    .about-list {
      display: inline-block;
      text-align: left;
    }

    .section-title {
      font-size: 2rem;
    }

    .cta-content h2 {
      font-size: 2rem;
    }
  }
}

/* =========================================
   Footer Styles
   ========================================= */
.footer {
  background: var(--footer-gradient);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: #94a3b8;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--accent-color);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================
   Chatbot Widget
   ========================================= */
.chatbot-toggler {
  position: fixed;
  bottom: 30px;
  right: 35px;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

body.show-chatbot .chatbot-toggler {
  transform: rotate(90deg);
}

.chatbot-toggler span {
  color: #fff;
  position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
  opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
  opacity: 1;
}

.chatbot {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
  z-index: 999;
}

body.show-chatbot .chatbot {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chatbot header {
  padding: 16px 0;
  position: relative;
  text-align: center;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chatbot header span {
  position: absolute;
  right: 15px;
  top: 50%;
  display: none;
  cursor: pointer;
  transform: translateY(-50%);
}

header h2 {
  font-size: 1.4rem;
  color: #fff;
}

.chatbot .chatbox {
  overflow-y: auto;
  height: 400px;
  padding: 30px 20px 100px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
  width: 6px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 25px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.chatbox .chat {
  display: flex;
  list-style: none;
}

.chatbox .outgoing {
  margin: 20px 0;
  justify-content: flex-end;
}

.chatbox .incoming span {
  width: 32px;
  height: 32px;
  color: #fff;
  cursor: default;
  text-align: center;
  line-height: 32px;
  align-self: flex-end;
  background: var(--primary-color);
  border-radius: 4px;
  margin: 0 10px 7px 0;
}

.chatbox .chat p {
  white-space: pre-wrap;
  padding: 12px 16px;
  border-radius: 10px 10px 0 10px;
  max-width: 75%;
  color: #fff;
  font-size: 0.95rem;
  background: var(--primary-color);
}

.chatbox .incoming p {
  border-radius: 10px 10px 10px 0;
  color: #000;
  background: #f2f2f2;
}

.chatbot .chat-input {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 3px 20px;
  border-top: 1px solid #ddd;
}

.chat-input textarea {
  height: 55px;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  max-height: 180px;
  padding: 15px 15px 15px 0;
  font-size: 0.95rem;
}

.chat-input span {
  align-self: flex-end;
  color: var(--primary-color);
  cursor: pointer;
  height: 55px;
  display: flex;
  align-items: center;
  visibility: hidden;
  font-size: 1.35rem;
}

.chat-input textarea:valid~span {
  visibility: visible;
}

@media (max-width: 490px) {
  .chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }

  .chatbot {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }

  .chatbot .chatbox {
    height: 90%;
    padding: 25px 15px 100px;
  }

  .chatbot .chat-input {
    padding: 5px 15px;
  }

  .chatbot header span {
    display: block;
  }
}



/* =========================================
   Chatbot Toggler & Socials
   ========================================= */
.chatbot-toggler {
  position: fixed;
  bottom: 95px;
  right: 25px;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.chatbot-toggler span {
  color: #fff;
  position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
  opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
  opacity: 1;
}

/* Floating Social Buttons (Repositioned above chatbot) */
.floating-socials {
  position: fixed;
  bottom: 140px;
  /* Above chatbot (80px + 50px + 10px gap) */
  right: 25px;
  /* Aligned with chatbot */
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .chatbot-toggler {
    bottom: 80px;
    /* Moved up to avoid overlap */
  }

  .floating-socials {
    bottom: 150px;
    /* Moved up to maintain stacking */
  }

  #loader-wrapper {
    bottom: 80px;
    /* Align with chatbot icon */
  }
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  background: #fff;
}

.social-btn:hover {
  transform: translateY(-5px);
}

.social-btn img {
  width: 28px;
  height: 28px;
}

.whatsapp {
  background-color: #25D366;
}

.linkedin {
  background-color: #0077b5;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   Mission & Vision Section
   ========================================= */
.mission-vision {
  background-color: #f8fafc;
  /* bg-off-white equivalent */
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.mv-card h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.mv-card p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Why Choose Us & How We Work Sections
   ========================================= */
.bg-off-white {
  background-color: #f8fafc;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.number-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.number-box:hover {
  transform: translateY(-5px);
}

.number-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.number-box p {
  color: #64748b;
  font-weight: 500;
  font-size: 1.1rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.how-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.how-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.how-card .icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  padding: 20px;
  border-radius: 50%;
}

.how-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.how-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Catalog / Flipbook Styles
   ========================================= */
.catalog-section {
  padding: 120px 0 80px;
  background-color: #f8fafc;
  min-height: 100vh;
}

.catalog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.catalog-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.catalog-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.catalog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* perspective: 2000px; Remove perspective */
  margin-bottom: 2rem;
}

.brochure-static {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.brochure-img {
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Container for StPageFlip */
#flipbook {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 400px;
  height: 600px;
  background-color: #fff;
  /* Fallback */
}

.book-page {
  background-color: white;
  padding: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.page-full {
  padding: 0;
  border: none;
}

.page-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cover {
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-cover h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.page-cover h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.page-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.page-header {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.page-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background-color: #eee;
}

.page-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
  flex-grow: 1;
}

.page-footer {
  text-align: center;
  margin-top: auto;
  color: #94a3b8;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.catalog-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.catalog-controls button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.catalog-controls button:hover {
  background-color: var(--primary-dark-color, #1e3a5f);
}

.page-count {
  font-weight: 500;
  color: #64748b;
}

/* =========================================
   Floating Bottom Navigation
   ========================================= */
.floating-navbar {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  display: flex;
  gap: 20px;
  z-index: 10000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-navbar.scroll-hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.floating-nav-item {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-nav-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.floating-nav-item.active-floating {
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .floating-navbar {
    width: 90%;
    justify-content: space-between;
    padding: 10px 15px;
    gap: 5px;
  }

  .floating-nav-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}