/* ==========================================================================
   LE OXFORDS - LUXURY ARCHITECTURAL HARDWARE (LIGHT THEME STYLESHEET)
   Ultra Premium Light Aesthetic for index2.php
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --bg-light: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --border-color: rgba(184, 149, 101, 0.2);
  --border-color-hover: rgba(184, 149, 101, 0.6);
  --gold-primary: #b89565;
  --gold-light: #d4af37;
  --gold-dark: #8c6a38;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b89565 50%, #8c6a38 100%);
  --text-main: #111111;
  --text-muted: #555555;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Sora', sans-serif;
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 15px 35px rgba(184, 149, 101, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #ffffff !important;
  color: #111111 !important;
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
}

.section-padding {
  padding: 100px 0 !important;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 65px 0 !important;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0 !important;
  }
  .container {
    padding: 0 16px;
  }
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 149, 101, 0.3);
  transition: var(--transition-fast);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 149, 101, 0.45);
  color: #ffffff;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--gold-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline-gold:hover {
  background: rgba(184, 149, 101, 0.08);
  transform: translateY(-3px);
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ==========================================================================
   1. HEADER NEW (Light Theme with Logo ONLY on Left)
   ========================================================================== */
.header-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-fast);
}

.header-new.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left-brand img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
  position: relative;
  padding: 6px 0;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.header-nav-link:hover,
.header-nav-link.active {
  color: var(--gold-primary);
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }
  .header-left-brand img {
    height: 38px !important;
    max-width: 160px !important;
  }
  .header-right-action {
    display: none !important;
  }
  .header-nav {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 85%;
    max-width: 300px;
    height: calc(100vh - 65px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    padding: 30px 24px;
    transition: var(--transition-smooth);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .header-nav.active {
    right: 0;
  }
  .header-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .header-nav-link {
    font-size: 1.1rem;
    color: #111;
  }
}

/* ==========================================================================
   2. HERO BANNER SYSTEM (DESKTOP & MOBILE DIFFERENT BANNERS)
   ========================================================================== */

/* Banner CSS Variables */
:root {
  --banner-desktop-img: url('assets/img/le-oxfords-desktop-banner.png');
  --banner-mobile-img: url('assets/img/le-oxfords-mobile-banner.png');
}

/* Default / Desktop Hero Banner */
.hero-section {
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  background-image: var(--banner-desktop-img);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

/* Responsive Desktop & Mobile HTML Banner Helpers */
.banner-desktop-only {
  display: block;
}
.banner-mobile-only {
  display: none !important;
}

/* ==========================================================================
   3. ABOUT SECTION (Rich Warm Luxury Ivory / Sand Tone)
   ========================================================================== */
.about-section {
  background-color: #f4efe6 !important;
  border-top: 1px solid #e3d9c6;
  border-bottom: 1px solid #e3d9c6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(184, 149, 101, 0.12);
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-box:hover img {
  transform: scale(1.04);
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-badge-floating i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.about-badge-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #111;
}

.about-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-text {
  color: #444444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(184, 149, 101, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

.feature-card i {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-img-box img {
    height: 320px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   4. PRODUCTS SECTION (Crisp Pearl White Background & Soft Alabaster Cards)
   ========================================================================== */
.products-section {
  background-color: #ffffff !important;
  border-bottom: 1px solid #ebebeb;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.product-card {
  background: #f8f6f0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5dfd3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  background: #f8f6f0;
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(184, 149, 101, 0.15);
}

.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #ffffff;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 149, 101, 0.15);
}

.product-material {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-img-wrap {
    height: 230px;
  }
}

/* ==========================================================================
   5. CATALOGUE SECTION (Soft Warm Champagne / Warm Greige Background)
   ========================================================================== */
.catalogue-section {
  background-color: #ede6d8 !important;
  border-top: 1px solid #dcd1be;
  border-bottom: 1px solid #dcd1be;
}

.catalogue-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.catalogue-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(184, 149, 101, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalogue-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
}

.catalogue-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(184, 149, 101, 0.14);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.catalogue-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 10px;
}

.catalogue-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.catalogue-card .btn-download {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   6. CONTACTS SECTION (Crisp White Background & Warm Soft Info Cards)
   ========================================================================== */
.contacts-section {
  background-color: #f7f6f2 !important;
  border-bottom: 1px solid #e6e2d8;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e5dfd3;
  border-left: 4px solid var(--gold-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(184, 149, 101, 0.12);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 4px;
}

.contact-card-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1.5px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(184, 149, 101, 0.12);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: var(--font-accent);
}

.form-control, select.form-control {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff !important;
  border: 1px solid #e0d8ca !important;
  border-radius: 10px;
  color: #111111 !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

select.form-control option {
  background-color: #ffffff !important;
  color: #111111 !important;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(184, 149, 101, 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 991px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-form-wrap {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   7. FOOTER SECTION (Luxury High-Contrast Dark Gold Footer)
   ========================================================================== */
.footer-new {
  background-color: #121212 !important;
  color: #ffffff !important;
  border-top: 2px solid var(--gold-primary);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logos img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.9rem;
  color: #aaaaaa !important;
  max-width: 400px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff !important;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #bbbbbb !important;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light) !important;
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: #888888 !important;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & SECTION SPACING REFINEMENTS (LIGHT THEME)
   ========================================================================== */

/* Standardized Section Padding & Equal Spacing */
.section-padding {
  padding: 100px 0 !important;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 65px 0 !important;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0 !important;
  }
  .container {
    padding: 0 16px;
  }
}

/* Mobile Navigation Header */
@media (max-width: 991px) {
  .header-new {
    padding: 12px 0;
  }
  .header-left-brand img {
    height: 38px !important;
    max-width: 160px !important;
  }
  .header-right-action {
    display: none !important;
  }
  .header-nav {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 85%;
    max-width: 300px;
    height: calc(100vh - 65px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    padding: 30px 24px;
    transition: var(--transition-smooth);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }
  .header-nav.active {
    right: 0;
  }
  .header-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .header-nav-link {
    font-size: 1.1rem;
    color: #111111;
  }
}

/* Mobile Hero Section - Switches to Mobile Banner */
@media (max-width: 991px) {
  .hero-section {
    height: 85vh;
    min-height: 520px;
    padding: 0;
    background-image: var(--banner-mobile-img);
    background-position: center top;
    background-size: cover;
  }

  .banner-desktop-only {
    display: none !important;
  }
  .banner-mobile-only {
    display: block !important;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 75vh;
    min-height: 440px;
  }
}

/* Mobile About Section */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-img-box img {
    height: 320px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Mobile Products Grid */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-img-wrap {
    height: 230px;
  }
  .product-info {
    padding: 20px;
  }
}

/* Mobile Catalogue Grid */
@media (max-width: 768px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalogue-card {
    padding: 24px;
  }
}

/* Mobile Contacts Section */
@media (max-width: 991px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-form-wrap {
    padding: 24px 20px;
  }
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-new {
    padding: 50px 0 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}
