/*
Theme Name: Dharm Bhakti Export
Theme URI: https://dharmbhaktiexports.com
Author: Dharm Bhakti Export
Author URI: https://dharmbhaktiexports.com
Description: Custom business theme for Dharm Bhakti Export. Ships Home, About, Products and Contact page templates plus a working B2B inquiry form that emails info@dharmbhaktiexports.com.
Version: 1.0.0
Requires at least: 5.5
Tested up to: 6.6
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dharmbhakti-export
*/

/* 
  DHARM BHAKTI EXPORT
  Main Stylesheet (style.css)
  Author: Antigravity AI
*/

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

/* --- CSS Variables --- */
:root {
  --color-primary: #0a2d55;        /* Deep Navy */
  --color-primary-rgb: 10, 45, 85;
  --color-accent: #ce973d;         /* Gold */
  --color-accent-rgb: 206, 151, 61;
  --color-bronze: #865006;         /* Bronze */
  --color-dark: #031224;           /* Deep Ink */
  --color-dark-rgb: 3, 18, 36;
  --color-light: #f8fafc;          /* Ice White */
  --color-light-rgb: 248, 250, 252;
  --color-white: #ffffff;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-500: #64748b;
  --color-gray-700: #334155;
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --header-height: 80px;
  --header-height-scroll: 70px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  
  --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --box-shadow-md: 0 10px 15px -3px rgba(10, 45, 85, 0.04), 0 4px 6px -2px rgba(10, 45, 85, 0.02);
  --box-shadow-lg: 0 20px 25px -5px rgba(10, 45, 85, 0.06), 0 10px 10px -5px rgba(10, 45, 85, 0.04);
  --box-shadow-glass: 0 8px 32px 0 rgba(10, 45, 85, 0.05);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-gray-700);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border: 2px solid var(--color-light);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

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

/* --- Layout Components --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-light {
  background-color: var(--color-white);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: var(--color-gray-300);
}

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(206, 151, 61, 0.1);
  color: var(--color-accent);
  border-radius: 50px;
  margin-bottom: 15px;
  border: 1px solid rgba(206, 151, 61, 0.2);
}

.section-dark .section-badge {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-bronze));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(206, 151, 61, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(206, 151, 61, 0.35);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(206, 151, 61, 0.6);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(206, 151, 61, 0.05);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

/* --- Glassmorphism --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--box-shadow-glass);
}

.glass-panel-dark {
  background: rgba(10, 45, 85, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* --- Navigation Header --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 45, 85, 0.08);
  box-shadow: var(--box-shadow-sm);
}

.navbar.scrolled {
  height: var(--header-height-scroll);
}

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

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1010;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
  opacity: 0.85;
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--color-primary);
}

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

.nav-cta {
  margin-left: 10px;
}

/* Hamburger Menu Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1010;
  padding: 8px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 6px 0;
  background-color: var(--color-primary);
  transition: var(--transition-normal);
  border-radius: 2px;
}

/* Hamburger Animation Active State */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Prevent body scroll utility */
body.no-scroll {
  overflow: hidden;
}

/* Mobile Nav Overlay Drawer */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-slow);
  padding: 40px;
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav-link {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-accent);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 45, 85, 0.95) 0%,
    rgba(3, 18, 36, 0.85) 60%,
    rgba(134, 80, 6, 0.4) 100%
  );
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.hero-shape-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 151, 61, 0.08) 0%, rgba(206, 151, 61, 0) 70%);
  top: -150px;
  right: -100px;
}

.hero-shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 45, 85, 0.2) 0%, rgba(10, 45, 85, 0) 75%);
  bottom: -100px;
  left: -100px;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-gray-300);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* --- About Company Intro Section --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-visual {
  position: relative;
}

.about-intro-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
}

.about-intro-badge-box {
  position: absolute;
  bottom: -25px;
  right: -25px;
  padding: 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  max-width: 180px;
  z-index: 5;
}

.about-intro-badge-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-headings);
  line-height: 1;
  margin-bottom: 5px;
}

.about-intro-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  line-height: 1.3;
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 35px;
}

.vertical-card {
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-gray-200);
  background-color: var(--color-white);
  transition: var(--transition-normal);
}

.vertical-card:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 151, 61, 0.3);
  box-shadow: var(--box-shadow-md);
}

.vertical-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: rgba(10, 45, 85, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.vertical-card:hover .vertical-card-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.vertical-card h4 {
  margin-bottom: 10px;
}

.vertical-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--color-gray-500);
}

/* --- Product Preview Section --- */
.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(206, 151, 61, 0.3);
}

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

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

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

.product-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 45, 85, 0.85);
  backdrop-filter: blur(5px);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.product-card:hover .product-card-title {
  color: var(--color-accent);
}

.product-card-desc {
  font-size: 0.92rem;
  color: var(--color-gray-500);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-features {
  list-style: none;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 20px;
  margin-bottom: 0;
}

.product-card-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-gray-700);
  margin-bottom: 8px;
}

.product-card-feature-item:last-child {
  margin-bottom: 0;
}

.product-card-feature-item i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

.product-preview-cta {
  text-align: center;
}

/* --- Products Page Grid & Horizontal Card Layout --- */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Space between horizontal cards */
}

/* Horizontal card design for products page */
.products-grid .product-card {
  display: flex;
  flex-direction: row; /* Image on left, content on right */
  align-items: stretch;
  height: 280px; /* Fixed height on desktop/tablet for uniform layout */
  overflow: hidden;
}

.products-grid .product-card:hover {
  transform: translateY(-5px); /* Gentle hover rise */
}

/* Hide the category label on products-page cards (desktop + mobile) */
.products-grid .product-card-category {
  display: none;
}

.products-grid .product-card-img-wrapper {
  width: 35%; /* Left side image */
  height: 280px; /* Match uniform card height */
  flex-shrink: 0;
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  overflow: hidden;
}

.products-grid .product-card-content {
  width: 65%; /* Right side content */
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-grid .product-card-desc {
  flex-grow: 0;
  margin-bottom: 12px;
}

/* --- Product Card Pills --- */
.product-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-card-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(10, 45, 85, 0.04);
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(10, 45, 85, 0.08);
  transition: var(--transition-fast);
  text-transform: capitalize;
}

.product-card-pill:hover {
  background-color: rgba(206, 151, 61, 0.1);
  color: var(--color-accent);
  border-color: rgba(206, 151, 61, 0.25);
}

.products-grid .product-card-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for features on desktop */
  gap: 8px 20px;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 15px;
}

.products-grid .product-card-feature-item {
  margin-bottom: 0;
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 151, 61, 0.4);
  background: rgba(10, 45, 85, 0.6);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: rgba(206, 151, 61, 0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

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

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

.why-card p {
  font-size: 0.95rem;
  color: var(--color-gray-300);
  margin-bottom: 0;
  line-height: 1.6;
}



/* --- Export Process Section --- */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 45, 85, 0.1),
    var(--color-primary) 10%,
    var(--color-accent) 90%,
    rgba(206, 151, 61, 0.1)
  );
  z-index: 1;
}

.process-step {
  position: relative;
  width: 50%;
  padding: 0 40px 40px 40px;
  z-index: 2;
}

.process-step:nth-child(odd) {
  left: 0;
  text-align: right;
}

.process-step:nth-child(even) {
  left: 50%;
  text-align: left;
}

.process-node {
  position: absolute;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 4px solid var(--color-primary);
  z-index: 3;
  transition: var(--transition-normal);
}

.process-step:nth-child(odd) .process-node {
  right: -11px;
}

.process-step:nth-child(even) .process-node {
  left: -11px;
}

.process-step:hover .process-node {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(206, 151, 61, 0.8);
  transform: scale(1.2);
}

.process-step-number {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
}

/* --- Contact CTA Banner Section --- */
.contact-cta-panel {
  padding: 60px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
}

.contact-cta-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(206, 151, 61, 0.15), transparent 60%);
  pointer-events: none;
}

.contact-cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-cta-panel h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact-cta-panel p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--color-gray-700);
}

.contact-cta-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 35px;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 30px;
}

.contact-cta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-primary);
}

.contact-cta-item i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-white);
  padding: 30px 0;
  border-top: 1px solid var(--color-gray-200);
}

.footer-text {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .about-intro-grid {
    gap: 40px;
  }

  .product-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-intro-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .about-intro-img {
    height: 350px;
  }
  
  .about-intro-badge-box {
    bottom: -15px;
    right: -15px;
    padding: 16px;
  }
  
  .product-preview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Timeline Mobile Layout */
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step {
    width: 100%;
    padding: 0 0 30px 45px;
  }
  
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    left: 0;
    text-align: left;
  }
  
  .process-step:nth-child(odd) .process-node,
  .process-step:nth-child(even) .process-node {
    left: 9px;
  }
  
  .contact-cta-panel {
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
  }
  
  .contact-cta-panel h2 {
    font-size: 1.8rem;
  }
  
  .contact-cta-panel p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .contact-cta-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .logo-title {
    font-size: 1.15rem;
  }
  
  .logo-subtitle {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
  }
  
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Sub-Hero Section --- */
.sub-hero {
  height: 45vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding-top: var(--header-height);
}

.sub-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 45, 85, 0.98) 0%,
    rgba(3, 18, 36, 0.88) 70%,
    rgba(134, 80, 6, 0.4) 100%
  );
  z-index: 1;
}

.sub-hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.sub-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 12px;
}

.sub-hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--color-gray-300);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Philosophy Section --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.philosophy-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 760px;
  margin: 30px auto 0 auto;
  width: 100%;
}

.philosophy-card {
  padding: 35px;
  border-radius: var(--border-radius-lg);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--box-shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-bronze));
  opacity: 0.8;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(206, 151, 61, 0.25);
}

.philosophy-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(206, 151, 61, 0.15);
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1;
}

.philosophy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
}

.philosophy-card p {
  font-size: 0.92rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* --- Owner Message & Quote --- */
.owner-quote-container {
  background: rgba(10, 45, 85, 0.03);
  border-left: 4px solid var(--color-accent);
  padding: 35px;
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  position: relative;
}

.owner-quote-icon {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3.5rem;
  color: rgba(206, 151, 61, 0.08);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}

.owner-quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.owner-signature {
  display: flex;
  flex-direction: column;
}

.owner-name {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.05rem;
}

.owner-title {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-grid-2col {
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin-top: 30px;
  }
  .customisation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sub-hero {
    height: 35vh;
    min-height: 280px;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .philosophy-grid-2col {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .owner-quote-container {
    padding: 25px;
  }
  .owner-quote-text {
    font-size: 1rem;
  }
  .customisation-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .filter-tabs {
    gap: 10px;
    margin-bottom: 35px;
  }
}

/* --- Product Filter Tabs --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--color-gray-200);
  padding-bottom: 25px;
}

.filter-tab-btn {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-white);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-tab-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: rgba(206, 151, 61, 0.03);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, var(--color-accent), var(--color-bronze));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(206, 151, 61, 0.2);
}

/* --- Customisation Grid --- */
.customisation-section {
  border-top: 1px solid var(--color-gray-100);
  background-color: #f8fafc;
}

.customisation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Responsive columns — declared AFTER the base rule so they win the cascade
   (media queries add no specificity, so later source order is required). */
@media (max-width: 1024px) {
  .customisation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .customisation-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.customisation-card {
  padding: 24px;
  border-radius: var(--border-radius-md);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-normal);
}

.customisation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-md);
  border-color: rgba(206, 151, 61, 0.2);
}

.customisation-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(206, 151, 61, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 1.15rem;
}

.customisation-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.customisation-card p {
  font-size: 0.82rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
  line-height: 1.4;
}

.customisation-info-panel {
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px dashed var(--color-accent);
  background-color: rgba(206, 151, 61, 0.02);
}

.customisation-info-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.customisation-info-panel p {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .products-grid .product-card {
    flex-direction: column; /* Stack image on top, content below */
    height: auto; /* Let the card grow so no details are clipped on mobile */
  }
  .products-grid .product-card-img-wrapper {
    width: 100%;
    height: 220px;
    min-height: 200px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  }
  .products-grid .product-card-content {
    width: 100%;
    padding: 25px;
  }
  .products-grid .product-card-features {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 8px;
  }
}

/* ================= CONTACT PAGE STYLES ================= */
/* --- Contact Section & Grid --- */
.contact-section {
  background-color: var(--color-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 50px;
  align-items: start;
}

/* Left Column Styling */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-intro h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.contact-intro p {
  color: var(--color-gray-500);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-details-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-md);
  border: 1px solid var(--color-gray-200);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: var(--transition-normal);
}

.contact-details-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(206, 151, 61, 0.25);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(206, 151, 61, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(206, 151, 61, 0.15);
}

.contact-detail-content h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.contact-detail-content p {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-detail-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-detail-content a:hover {
  color: var(--color-accent);
}

/* WhatsApp Link Special Highlight */
.contact-detail-content .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-weight: 600;
}

.contact-detail-content .whatsapp-btn:hover {
  color: #20b855;
  text-decoration: underline;
}

/* --- Social Follow Card --- */
.social-follow-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-normal);
}

.social-follow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(206, 151, 61, 0.25);
}

.social-follow-card h4 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.social-icons-flex {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(10, 45, 85, 0.04);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-normal);
  border: 1px solid rgba(10, 45, 85, 0.08);
  text-decoration: none;
}

/* Hover Brand Colors */
.social-icon-btn.facebook:hover {
  background-color: #1877f2;
  color: var(--color-white);
  border-color: #1877f2;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-icon-btn.linkedin:hover {
  background-color: #0077b5;
  color: var(--color-white);
  border-color: #0077b5;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.social-icon-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: var(--color-white);
  border-color: #d6249f;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3);
}

.social-icon-btn.whatsapp:hover {
  background-color: #25d366;
  color: var(--color-white);
  border-color: #25d366;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-icon-btn.twitter:hover {
  background-color: #000000;
  color: var(--color-white);
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon-btn.youtube:hover {
  background-color: #ff0000;
  color: var(--color-white);
  border-color: #ff0000;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* --- Map Card Placeholder --- */
.map-card {
  background-color: var(--color-white);
  padding: 10px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-md);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: var(--transition-normal);
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(206, 151, 61, 0.25);
}

.map-placeholder {
  height: 220px;
  border-radius: calc(var(--border-radius-lg) - 10px);
  background: linear-gradient(135deg, rgba(10, 45, 85, 0.03) 0%, rgba(206, 151, 61, 0.03) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px dashed rgba(10, 45, 85, 0.15);
  position: relative;
}

.map-placeholder-icon {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.map-placeholder h4 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.map-placeholder p {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin-bottom: 15px;
  max-width: 300px;
  line-height: 1.4;
}

/* --- Right Column Form Card --- */
.contact-form-card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-normal);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: 30px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

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

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-label span.required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background-color: var(--color-light);
  color: var(--color-dark);
}

.form-control::placeholder {
  color: var(--color-gray-500);
  font-size: 0.9rem;
  opacity: 0.7;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(206, 151, 61, 0.1);
}

/* Custom dropdown arrow */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2d55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 30px 20px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}
