@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

@layer reset, base, theme, components, utilities;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height, 80px);
    -webkit-text-size-adjust: 100%;
  }

  body {
    min-block-size: 100dvh;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
  }

  img, picture, video, canvas, svg {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
  }

  input, button, textarea, select {
    font: inherit;
  }

  button {
    cursor: pointer;
    background: none;
    border: none;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul, ol {
    list-style: none;
  }
}

@layer base {
  :root {
    /* Color Scheme & Theme Adaptability */
    color-scheme: light dark;
    
    /* Tier 1: Literal Tokens (Light Mode Defaults) */
    --raw-navy-deep: #0A162B;
    --raw-navy-medium: #112240;
    --raw-navy-light: #1D3557;
    --raw-gold-dark: #A8832A;
    --raw-gold-base: #C59B27;
    --raw-gold-light: #D4AF37;
    --raw-gold-shimmer: #F3E5AB;
    --raw-ivory: #FAF9F6;
    --raw-charcoal: #2C221E;
    --raw-white: #FFFFFF;
    --raw-gray-100: #F3F4F6;
    --raw-gray-200: #E5E7EB;
    --raw-gray-400: #9CA3AF;
    --raw-gray-800: #1F2937;

    /* Tier 2: Semantic Design Tokens */
    --color-bg-primary: light-dark(var(--raw-ivory), #070F1E);
    --color-bg-secondary: light-dark(var(--raw-white), var(--raw-navy-deep));
    --color-bg-subtle: light-dark(var(--raw-gray-100), var(--raw-navy-medium));
    
    --color-text-primary: light-dark(var(--raw-charcoal), var(--raw-ivory));
    --color-text-secondary: light-dark(var(--raw-navy-light), var(--raw-gray-400));
    --color-text-light: var(--raw-white);

    --color-accent: var(--raw-gold-base);
    --color-accent-hover: var(--raw-gold-light);
    --color-accent-dark: var(--raw-gold-dark);
    --color-accent-glass: light-dark(rgba(197, 155, 39, 0.1), rgba(212, 175, 55, 0.15));

    --color-border: light-dark(var(--raw-gray-200), rgba(255, 255, 255, 0.1));
    --color-border-accent: var(--color-accent);

    /* Fonts & Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Sizes */
    --nav-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 20px 50px rgba(10, 22, 43, 0.12);
  }

  body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: light-dark(var(--raw-navy-deep), var(--raw-white));
  }

  /* Accessibility custom scrollbars */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
  }
  ::-webkit-scrollbar-thumb {
    background: light-dark(var(--raw-navy-light), var(--raw-gold-dark));
    border: 2px solid var(--color-bg-primary);
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
  }

  /* Custom Focus outline */
  :focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
  }
}

@layer components {
  /* Navigation Header */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: light-dark(rgba(250, 249, 246, 0.85), rgba(7, 15, 30, 0.85));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: max(2rem, 5dvw);
    transition: background-color 0.3s, border-color 0.3s;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--raw-gold-base), var(--raw-gold-light));
    border-radius: var(--border-radius-sm);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: grid;
    place-items: center;
    color: var(--raw-navy-deep);
    font-weight: 800;
    font-family: var(--font-body);
  }

  .logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .logo-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-top: -2px;
  }

  .nav-menu {
    display: flex;
    gap: 2rem;
  }

  .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-block: 0.5rem;
    transition: color 0.3s;
  }

  .nav-link:hover, .nav-link.active {
    color: light-dark(var(--raw-navy-deep), var(--color-accent));
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
  }

  .nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    min-block-size: 100dvh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(197, 155, 39, 0.08) 0%, transparent 60%),
                light-dark(var(--raw-white), #050b14);
    overflow: hidden;
  }

  .hero-container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: max(2rem, 5dvw);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
  }

  .hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    position: relative;
    padding-left: 2.5rem;
  }

  .hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background-color: var(--color-accent);
  }

  .hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 550px;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--raw-gold-base), var(--raw-gold-dark));
    color: var(--raw-navy-deep);
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 155, 39, 0.35);
    background: linear-gradient(135deg, var(--raw-gold-light), var(--raw-gold-base));
  }

  .btn-secondary {
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    background-color: light-dark(var(--raw-white), rgba(255, 255, 255, 0.03));
  }

  .btn-secondary:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent-glass);
    color: light-dark(var(--raw-navy-deep), var(--color-accent));
    transform: translateY(-2px);
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 43, 0.4), transparent 50%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .hero-visual:hover img {
    transform: scale(1.05);
  }

  /* Section Styling */
  .section {
    padding-block: min(8rem, 15dvh);
    padding-inline: max(2rem, 5dvw);
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    overflow: hidden;
  }

  .section-header {
    margin-bottom: min(4rem, 8dvh);
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
  }

  .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.5px;
  }

  .section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
  }

  /* About Section */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-visual {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    aspect-ratio: 1;
  }

  .about-img-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-medium);
  }

  .about-img-2 {
    grid-column: 3 / 7;
    grid-row: 3 / 7;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 8px solid var(--color-bg-primary);
    box-shadow: var(--shadow-premium);
    z-index: 2;
  }

  .about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-highlight {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-accent);
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
  }

  .stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: light-dark(var(--raw-navy-deep), var(--color-accent));
  }

  .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
  }

  /* Product Cards Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

  .product-card {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
  }

  .product-img-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-bg-subtle);
  }

  .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
  }

  .product-card-title {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .product-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
  }

  .product-card-cta {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    transition: gap 0.2s;
  }

  .product-card:hover .product-card-cta {
    gap: 0.75rem;
    color: var(--color-accent-hover);
  }

  /* Why Choose Us Section */
  .why-section {
    background-color: var(--color-bg-secondary);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  @media (max-width: 1024px) {
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .why-grid {
      grid-template-columns: 1fr;
    }
  }

  .why-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    transition: background-color 0.3s;
  }

  .why-card:hover {
    background-color: var(--color-bg-subtle);
  }

  .why-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent-glass);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--color-accent);
    font-size: 1.25rem;
  }

  .why-title {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .why-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
  }

  /* Gallery Masonry */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }

  .gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    position: relative;
    aspect-ratio: 3 / 2;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 43, 0.7), transparent 60%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-caption {
    color: var(--raw-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Map Embed */
  .map-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
    height: 450px;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Contact Grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .contact-icon-box {
    width: 44px;
    height: 44px;
    background-color: var(--color-accent-glass);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-details h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .contact-details p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    white-space: pre-line;
  }

  .contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.25rem;
  }

  .hours-row.active {
    font-weight: 600;
    color: var(--color-accent);
  }

  /* Form Styling */
  .contact-form-card {
    background-color: var(--color-bg-secondary);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-medium);
  }

  .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
  }

  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glass);
  }

  /* Use modern user validation states */
  .form-control:user-invalid {
    border-color: #E63946;
  }

  .form-control:user-invalid + .error-message {
    display: block;
  }

  .error-message {
    display: none;
    font-size: 0.75rem;
    color: #E63946;
    margin-top: 0.25rem;
  }

  /* FAQ Section */
  .faq-accordion {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
  }

  .faq-summary {
    padding: 1.25rem 1.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
  }

  .faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s;
  }

  .faq-item[open] .faq-summary::after {
    transform: rotate(45deg);
  }

  .faq-summary:hover {
    background-color: var(--color-bg-subtle);
  }

  .faq-content {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
  }

  /* Floating WhatsApp Button */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  /* Lightbox Modal */
  .lightbox-modal {
    border: none;
    background: transparent;
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: none; /* Controlled via JS dialog native showModal or polyfill */
    place-items: center;
    position: fixed;
    inset: 0;
    z-index: 1100;
  }

  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 22, 43, 0.95);
    backdrop-filter: blur(12px);
  }

  .lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    z-index: 1101;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-premium);
    object-fit: contain;
  }

  .lightbox-caption {
    color: var(--raw-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
  }

  .lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--raw-white);
    font-size: 2rem;
    padding: 0.5rem;
    cursor: pointer;
  }

  /* Footer Styling */
  .footer {
    background-color: var(--raw-navy-deep);
    color: var(--raw-white);
    padding-block: 5rem 2rem;
    border-top: 1px solid var(--color-border);
  }

  .footer-grid {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: max(2rem, 5dvw);
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
  }

  .footer-branding {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-logo-text {
    color: var(--raw-white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
  }

  .footer-desc {
    color: var(--raw-gray-400);
    font-size: 0.9rem;
    max-width: 300px;
  }

  .footer-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--raw-gold-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-link {
    font-size: 0.9rem;
    color: var(--raw-gray-400);
    transition: color 0.3s;
  }

  .footer-link:hover {
    color: var(--raw-gold-light);
  }

  .footer-contact-item {
    font-size: 0.9rem;
    color: var(--raw-gray-400);
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .footer-contact-item i {
    color: var(--raw-gold-base);
    margin-top: 3px;
  }

  .footer-bottom {
    max-width: 1400px;
    margin-inline: auto;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-inline: max(2rem, 5dvw);
    font-size: 0.8rem;
    color: var(--raw-gray-400);
  }

  .footer-credit {
    line-height: 1.6;
  }

  .footer-credit a {
    color: var(--raw-gold-light);
    font-weight: 500;
  }

  /* Success dialog styling */
  .success-modal {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    margin: auto;
    inset: 0;
    position: fixed;
    z-index: 1200;
    text-align: center;
  }

  .success-modal::backdrop {
    background-color: rgba(10, 22, 43, 0.7);
    backdrop-filter: blur(8px);
  }

  .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-accent-glass);
    color: var(--color-accent);
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
  }
}

/* Animations Layer: Scroll-Driven Reveal Animations */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-in {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal-item {
      animation: reveal-in auto cubic-bezier(0.16, 1, 0.3, 1) backwards;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }
  }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-visual {
    max-width: 600px;
    margin-inline: auto;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-visual {
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--color-bg-secondary);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .mobile-nav-toggle {
    display: block;
    z-index: 1000;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- ROUND 3 ENHANCED REFINEMENT STYLES --- */

/* Department Product Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-medium);
}
.category-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: light-dark(var(--raw-navy-deep), var(--raw-white));
  font-family: var(--font-heading);
}

/* Brands We Deal In - Premium Brand Cards (Matches product card theme) */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

.brand-premium-card {
  background-color: #ffffff !important;
  color: var(--raw-navy-deep) !important;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent); /* Luxury Gold accent border */
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}
.brand-premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent) !important;
  box-shadow: var(--shadow-medium);
}
.brand-badge {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  background-color: var(--color-accent-glass);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.brand-card-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--raw-navy-deep) !important;
  filter: grayscale(100%);
  opacity: 0.35;
  transition: filter 0.3s, opacity 0.3s, color 0.3s;
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
}
.brand-premium-card:hover .brand-card-logo {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--raw-navy-deep) !important;
}
.brand-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--raw-navy-deep) !important;
}
.brand-card-desc {
  font-size: 0.9rem;
  color: var(--raw-gray-600) !important;
  line-height: 1.5;
}

/* Google Reviews Section & Mobile Snap Carousel */
.reviews-carousel-wrapper {
  overflow-x: visible;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.review-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-medium);
}
.review-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-glass);
  color: var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: var(--font-heading);
}
.review-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: light-dark(var(--raw-navy-deep), var(--raw-white));
}
.review-role {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}
.google-icon-box {
  opacity: 0.8;
}
.review-stars {
  color: var(--raw-gold-light);
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-style: italic;
}
.review-date-badge {
  font-size: 0.75rem;
  color: #34a853; /* Google Green color */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}
.badge-icon {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .reviews-carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1.5rem;
  }
  .reviews-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    gap: 1.5rem;
  }
  .review-card {
    width: 85vw;
    max-width: 380px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}

/* Gallery 3x3 Square Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  aspect-ratio: 1 / 1 !important; /* Forces perfect square grids */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Gallery Showcase */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.video-card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-medium);
}
.video-thumbnail-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
}
.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.6s;
}
.video-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.05);
}
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background-color: rgba(197, 155, 39, 0.95);
  color: var(--raw-navy-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
  z-index: 2;
}
.video-card:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--raw-gold-light);
}
.video-card-content {
  padding: 1.5rem;
}
.video-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.video-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Video Modal dialog player */
.video-modal-dialog {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: none;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 1150;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 22, 43, 0.9);
  backdrop-filter: blur(8px);
}
.video-modal-container {
  position: relative;
  width: 90vw;
  max-width: 800px;
  background-color: #000;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  z-index: 1151;
  box-shadow: var(--shadow-premium);
}
.video-modal-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.video-modal-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1152;
}

/* Floating Contact FABs */
.sticky-contact-fabs {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}
.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}
.fab-btn:hover {
  transform: scale(1.1);
}
.fab-call {
  background-color: var(--raw-navy-light);
  color: var(--raw-white);
}
.fab-call:hover {
  background-color: var(--color-accent-hover);
}
.fab-whatsapp {
  background-color: #25D366;
}
.fab-whatsapp:hover {
  background-color: #128C7E;
}

/* Hide the old single floating button */
.whatsapp-float {
  display: none !important;
}
