/*
  SS Interiors Stylesheet - Contemporary & Editorial Enhancements
  - More white space, larger headings, gold accents, soft textures, micro-interactions
  - Inspired by high-end interior design studios
*/

:root {
  /* Color palette */
  --color-bg: #f8f7f3;
  --color-bg-alt: #f3f1ec;
  --color-surface: #fff;
  --color-text: #2d2d2d;
  --color-muted: #7a7a7a;
  --color-accent: #bfa16a;
  --color-accent-dark: #a88a4a;
  --color-accent-light: #e6d7b0;
  --color-border: #e5e1d8;
  --color-footer-bg: #23211c;
  --color-footer-text: #e6e1d3;
  --color-footer-accent: #bfa16a;
  --shadow-soft: 0 4px 32px rgba(191, 161, 106, 0.08);
  --shadow-strong: 0 8px 40px rgba(191, 161, 106, 0.15);
  --shadow-gold-glow: 0 0 16px 2px rgba(191, 161, 106, 0.18);
  --radius-lg: 2.5rem;
  --radius-md: 1.5rem;
  --radius-sm: 0.7rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --transition-fast: 0.18s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 1.08rem;
  min-height: 100vh;
  overflow-x: hidden;
  /* Subtle linen/paper texture background */
  background-image: url('https://www.transparenttextures.com/patterns/linen.png');
  background-blend-mode: lighten;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Header */
header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1.5px solid var(--color-accent-light);
  box-shadow: var(--shadow-soft);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 0 1.2rem 0; /* More vertical space */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -1.5px;
  text-decoration: none;
  transition: color var(--transition);
  font-style: italic;
}
.logo:hover {
  color: var(--color-accent-dark);
}

.nav-menu {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}
.nav-menu a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.13rem;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  transition: width var(--transition);
  position: absolute;
  left: 0; bottom: 0;
  border-radius: 2px;
}
.nav-menu a:hover {
  color: var(--color-accent);
}
.nav-menu a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.13rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition-fast);
  margin-left: 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-strong), var(--shadow-gold-glow);
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
}

/* Button ripple effect */
.cta-button:active::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 200%; height: 200%;
  background: rgba(191,161,106,0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  animation: ripple 0.4s linear;
  pointer-events: none;
}
@keyframes ripple {
  to { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3.5px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 6rem;
  background: linear-gradient(120deg, #f8f7f3 60%, #e6d7b0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  opacity: 0.13;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2.2rem;
  line-height: 1.05;
  letter-spacing: -2.5px;
  position: relative;
  display: inline-block;
}
.hero-content .highlight {
  color: var(--color-accent);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.hero-content p {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--color-accent-dark);
  font-weight: 500;
  margin-bottom: 3.5rem;
  letter-spacing: 0.5px;
}
.hero-cta {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  padding: 1.2rem 2.8rem;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-strong);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition-fast);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(191, 161, 106, 0.18), var(--shadow-gold-glow);
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
}
.hero-cta:active::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 200%; height: 200%;
  background: rgba(191,161,106,0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  animation: ripple 0.4s linear;
  pointer-events: none;
}

/* Main Content Sections */
.main-content {
  padding: 9rem 0 4rem 0;
}
.content-section {
  margin-bottom: 9rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  /* Fade-in on scroll (JS will add .in-view) */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.content-section.in-view {
  opacity: 1;
  transform: none;
}
.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 400px;
}
.section-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  filter: brightness(0.98) contrast(1.03) saturate(1.08);
  position: relative;
  z-index: 1;
}
.section-image:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 25px 60px rgba(191, 161, 106, 0.18), var(--shadow-gold-glow);
  filter: brightness(1.03) contrast(1.08) saturate(1.13);
  outline: 2.5px solid var(--color-accent);
  outline-offset: 4px;
}
.section-text {
  padding: 3.2rem 3rem 3.2rem 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-accent-light);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}
.section-text.highlighted {
  border-left: 7px solid var(--color-accent);
  background: var(--color-bg-alt);
  box-shadow: 0 25px 50px rgba(191, 161, 106, 0.07);
}
.section-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}
.section-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 2px;
  margin-top: 0.7rem;
}
.section-text p {
  font-size: clamp(1.08rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  color: var(--color-muted);
  font-weight: 400;
}

/* Section Layouts */
.refined-woodwork .section-content,
.sophisticated-kitchens .section-content,
.sleek-ceilings .section-content {
  grid-template-columns: 1fr 1fr;
}
.sophisticated-kitchens .section-text {
  order: 2;
}
.sophisticated-kitchens .section-image {
  order: 1;
}

/* Experience Section */
.experience-section {
  text-align: center;
  padding: 10rem 0 8rem 0;
  background: linear-gradient(120deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  position: relative;
  color: #fff;
  overflow: hidden;
}
.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  opacity: 0.13;
  z-index: 0;
}
.experience-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.experience-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2.2rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.13);
  position: relative;
  display: inline-block;
}
.experience-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent));
  border-radius: 2px;
  margin: 0.7rem auto 0 auto;
}
.experience-content p {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin-bottom: 3.5rem;
  color: #fff;
  font-weight: 500;
  opacity: 0.93;
}

/* Contact Form */
.contact-section {
  padding: 10rem 0 8rem 0;
  background: linear-gradient(120deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}
/* --- Contact Form Improvements: Centering & Symmetry --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-surface);
  padding: 4.5rem 2.5rem; /* Equal left/right padding */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1.5px solid var(--color-accent-light);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text);
  text-align: center;
  letter-spacing: -1.2px;
  position: relative;
  display: inline-block;
}
.contact-form h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 2px;
  margin: 0.7rem auto 0 auto;
}
.contact-form .subtitle {
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.form-group {
  width: 100%;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-group label {
  align-self: flex-start;
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.13rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.2rem;
  border: 2px solid var(--color-accent-light);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 1.13rem;
  transition: border var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(191, 161, 106, 0.08);
  background: #fff;
}
.form-group textarea {
  height: 140px;
  resize: vertical;
}
.submit-btn {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(90deg, var(--color-text), #1a1a1a);
  color: #fff;
  padding: 1.3rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition-fast);
  margin-top: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.submit-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-strong), var(--shadow-gold-glow);
  background: linear-gradient(90deg, #1a1a1a, var(--color-text));
}
.submit-btn:active::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 200%; height: 200%;
  background: rgba(191,161,106,0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  animation: ripple 0.4s linear;
  pointer-events: none;
}

/* Footer */
footer {
  background: var(--color-footer-bg);
  padding: 5rem 0 2.5rem 0;
  text-align: center;
  border-top: 2px solid var(--color-accent);
  color: var(--color-footer-text);
  position: relative;
}
footer::before {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-footer-accent), var(--color-accent-light));
  border-radius: 2px;
  margin: 0 auto 2.5rem auto;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.5rem;
  margin-bottom: 2.5rem;
}
.footer-section h3 {
  color: var(--color-footer-accent);
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}
.footer-section p,
.footer-section a {
  color: var(--color-footer-text);
  text-decoration: none;
  line-height: 1.7;
  font-size: 1.08rem;
  transition: color var(--transition);
}
.footer-section a {
  display: inline-block;
  margin-bottom: 0.3rem;
  position: relative;
}
.footer-section a:hover {
  color: var(--color-footer-accent);
  text-shadow: 0 0 8px var(--color-footer-accent);
}
.footer-section .footer-socials {
  margin-top: 0.7rem;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
}
.footer-section .footer-socials a {
  color: var(--color-footer-accent);
  font-size: 1.5rem;
  transition: color var(--transition), text-shadow var(--transition);
}
.footer-section .footer-socials a:hover {
  color: #fff;
  text-shadow: 0 0 12px var(--color-footer-accent);
}
.footer-bottom {
  border-top: 1.5px solid var(--color-accent-light);
  padding-top: 2.5rem;
  color: #b3ad9e;
  font-size: 1.01rem;
  margin-top: 2rem;
}
.footer-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--color-footer-accent);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.2rem;
  }
  .section-content {
    gap: 2.5rem;
  }
}
@media (max-width: 900px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .sophisticated-kitchens .section-text,
  .sophisticated-kitchens .section-image {
    order: unset;
  }
  .main-content {
    padding: 7rem 0 2.5rem 0;
  }
}
@media (max-width: 768px) {
  header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-bottom: 1px solid #eee;
    z-index: 1000;
  }
  /* Navbar layout improvements for mobile */
  .nav-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 1rem 0.7rem 1rem;
    min-height: unset;
    position: relative;
  }
  .logo {
    text-align: center;
    font-size: 6.5rem;
    font-weight: 700;
    margin: 0 auto 0.5rem auto;
    display: block;
    flex: none;
  }
  .nav-actions-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .cta-button {
    width: auto;
    flex: 1 1 auto;
    margin: 0 0.5rem 0 0;
    font-size: 1.08rem;
    padding: 0.7rem 0.7rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(191,161,106,0.10);
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f8f7f3;
    border-radius: 50%;
    border: none;
    margin: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: background 0.2s;
    position: relative;
    z-index: 1100;
  }
  .nav-toggle span {
    width: 26px;
    height: 3.5px;
    background: var(--color-accent);
    margin: 3.5px 0;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
  }
  .nav-toggle:hover {
    background: #f3f1ec;
  }
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 1.2rem 0 0.7rem 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s cubic-bezier(.4,0,.2,1);
  }
  .nav-menu.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1);
  }
  .nav-menu li {
    margin: 0.5rem 0;
    text-align: center;
  }
  .nav-menu a {
    font-size: 1.18rem;
    padding: 1rem 0;
    color: #222;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: block;
  }
  .nav-menu a:hover {
    background: #f3f1ec;
    color: var(--color-accent);
  }
  .cta-button {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.7rem 0;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #222;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-toggle {
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav-menu {
    padding: 1.2rem 0 1.5rem 0; /* Add more bottom padding */
  }
  .nav-menu li {
    margin: 0.1rem 0; /* Further reduce vertical spacing */
  }
  .nav-menu a {
    padding: 0.7rem 0; /* Reduce vertical padding for links */
    font-size: 1.05rem;
  }
}
/* --- Above: Overhauled mobile navbar for clarity and usability --- */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility classes */
.highlight {
  color: var(--color-accent);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* --- Hero Scroll Indicator --- */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.5rem;
  user-select: none;
  pointer-events: none;
}
.scroll-dot {
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-bottom: 0.5rem;
  animation: bounce 1.3s infinite alternate;
}
@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(18px); }
}
.scroll-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--color-accent-dark);
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  opacity: 0.85;
}

/* --- Hero Vignette Overlay --- */
.hero-vignette {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.13) 100%);
}

/* --- Section Gold Accent Line --- */
.section-accent {
  display: inline-block;
  width: 5px;
  height: 38px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 3px;
  margin-right: 1.1rem;
  vertical-align: middle;
  position: relative;
  top: 0.2rem;
}
.section-text h2 {
  display: inline-block;
  vertical-align: middle;
}

/* --- Section Quote --- */
.section-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--color-accent);
  font-size: 1.18rem;
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1px;
  line-height: 1.5;
}

/* --- Accessibility: Focus States --- */
a:focus, button:focus, .cta-button:focus, .hero-cta:focus, .submit-btn:focus {
  outline: 2.5px solid var(--color-accent-dark);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(191,161,106,0.13);
  z-index: 10;
} 

/* --- Gallery Grandiose Enhancements --- */

.gallery-section {
  padding: 8rem 0 8rem 0;
  background: linear-gradient(120deg, #f8f7f3 60%, #fbe7b2 100%, #e6d7b0 120%);
  position: relative;
}
.gallery-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--color-accent-dark);
  font-style: italic;
  margin-bottom: 3.5rem;
  text-align: center;
  letter-spacing: 0.2px;
  opacity: 0.92;
}
.gallery-tile {
  animation: fadeInUp 1.1s cubic-bezier(.4,0,.2,1);
  animation-fill-mode: both;
}
.gallery-tile:nth-child(1) { animation-delay: 0.05s; }
.gallery-tile:nth-child(2) { animation-delay: 0.10s; }
.gallery-tile:nth-child(3) { animation-delay: 0.15s; }
.gallery-tile:nth-child(4) { animation-delay: 0.20s; }
.gallery-tile:nth-child(5) { animation-delay: 0.25s; }
.gallery-tile:nth-child(6) { animation-delay: 0.30s; }
.gallery-tile:nth-child(7) { animation-delay: 0.35s; }
.gallery-tile:nth-child(8) { animation-delay: 0.40s; }
.gallery-tile:nth-child(9) { animation-delay: 0.45s; }
.gallery-tile:nth-child(10) { animation-delay: 0.50s; }


.gallery-overlay {
  display: none; /* Hide the overlay completely */
}
.gallery-caption {
  display: none; /* Hide the "View Image" text */
}


.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-alt) 60%, var(--color-accent-light) 100%);
  color: var(--color-accent-dark);
  border-radius: var(--radius-md);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
.gallery-placeholder.visible {
  opacity: 1;
}
.gallery-placeholder svg {
  width: 38px;
  height: 38px;
  margin-bottom: 0.7rem;
  color: var(--color-accent);
}


.gallery-tile .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(191,161,106,0.08) 0%, rgba(0,0,0,0.08) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 3;
}
.gallery-tile:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px var(--color-accent-light));
} 

/* --- Gallery Carousel: Elegant Slider --- */
.gallery-section {
  padding: 8rem 0 8rem 0;
  background: var(--color-bg);
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(191,161,106,0.04) 0%, rgba(0,0,0,0.07) 100%);
  pointer-events: none;
  z-index: 0;
}
.gallery-header {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.gallery-header .section-accent {
  margin-right: 1.1rem;
  height: 38px;
}
.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -1.2px;
  position: relative;
  display: inline-block;
}

/* Carousel Container */
.gallery-carousel {
  position: relative;
  max-width: 1400px; /* Much bigger container for larger tiles */
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  background: var(--color-surface);
}

/* Carousel Track */
.gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
}

/* Carousel Slides */
.gallery-slide {
  min-width: 100%;
  display: flex;
  gap: 3rem; /* More gap for larger tiles */
  padding: 3rem; /* More padding for larger tiles */
  box-sizing: border-box;
}

/* Individual Gallery Items */
.gallery-item {
  flex: 1;
  aspect-ratio: 16/9; /* Much larger aspect ratio like before */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  filter: brightness(0.98) contrast(1.02) saturate(1.05);
  transition: filter 0.7s cubic-bezier(.4,0,.2,1), opacity 0.7s cubic-bezier(.4,0,.2,1);
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* Image optimization for mobile */
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.gallery-item img.loaded {
  opacity: 1;
  filter: brightness(1.02) contrast(1.05) saturate(1.08);
}

.gallery-item:hover img {
  filter: brightness(1.05) contrast(1.08) saturate(1.1);
}

/* Navigation Controls */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.carousel-btn {
  background: var(--color-surface);
  border: 2px solid var(--color-accent-light);
  color: var(--color-accent);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem; /* Add bottom padding */
  position: relative;
  z-index: 2;
}

.carousel-indicator {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--color-accent-light);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-indicator.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 900px) {
  .gallery-slide {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .gallery-item {
    aspect-ratio: 16/9; /* Keep large aspect ratio on mobile */
  }
}

@media (max-width: 600px) {
  .gallery-carousel {
    margin: 0 1rem;
  }
  .gallery-slide {
    padding: 1.5rem;
  }
  .carousel-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
} 

/* --- Responsive Services Section --- */
@media (max-width: 768px) {
  .main-content .container {
    padding: 0 8px;
  }
  .content-section {
    margin-bottom: 2rem;
  }
  .section-content {
    flex-direction: column !important;
    align-items: stretch;
    gap: 1rem;
  }
  .section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
  .section-text {
    padding: 1.2rem 1rem 1.2rem 1rem; /* Increased padding for better breathing room */
    text-align: left;
    background: #fff; /* Optional: subtle background for text box */
    border-radius: 10px; /* Optional: rounded corners for text box */
    box-shadow: 0 1px 6px rgba(0,0,0,0.04); /* Optional: soft shadow for separation */
  }
}
/* --- Above: Improved mobile padding and spacing for service text boxes --- */

/* --- Responsive Navbar --- */
@media (max-width: 768px) {
  .nav-bar {
    flex-wrap: wrap;
    padding: 0.5rem 0.5rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 100;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    margin: 1rem 0;
    text-align: center;
  }
  .cta-button {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.7rem 0;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #222;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
}

/* --- Ensure nav-toggle is hidden on desktop --- */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

/* --- Add transition for nav-menu --- */
.nav-menu {
  transition: all 0.3s;
}

/* --- Extra: Make tap targets bigger for mobile nav --- */
@media (max-width: 768px) {
  .nav-menu a {
    padding: 1rem 0;
    font-size: 1.1rem;
  }
}

/* --- Comment: Above CSS improves mobile layout for services and navbar --- */ 

/* Gallery page: increase mobile top padding for navbar clearance */
@media (max-width: 600px) {
  .gallery-collage-container {
    padding-top: 120px !important; /* More space for new navbar layout */
  }
}
/* --- Above: Improved mobile navbar layout and gallery clearance --- */ 

/* --- WhatsApp Button Styles --- */
.whatsapp-btn {
  display: inline-block;
  margin-top: 1.2rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 0.9rem 2.2rem 0.9rem 2.7rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-btn::before {
  content: '📱';
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}
@media (max-width: 600px) {
  .whatsapp-btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-radius: 1.3rem;
  }
}
/* --- End WhatsApp Button Styles --- */ 

/* --- Navbar Logo Styles (Balanced) --- */
.navbar-logo {
  height: 9rem;
  max-height: 20rem;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
  display: inline-block;
  object-fit: contain;
}
@media (max-width: 600px) {
  .navbar-logo {
    height: 5rem;
    max-height: 6.5rem;
    margin-right: 0.35rem;
  }
}
/* --- End Navbar Logo Styles (Balanced) --- */ 

/* --- Enquiry Success Box Styles (Neutral) --- */
.enquiry-success-box {
  margin-top: 1.2rem;
  background: var(--color-bg, #f8f7f3);
  color: #2d2d2d;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(60,60,60,0.06);
  border: 1.5px solid #e5e1d8;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  display: block;
}
@media (max-width: 600px) {
  .enquiry-success-box {
    width: 100%;
    font-size: 1.08rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: 1.3rem;
  }
}
/* --- End Enquiry Success Box Styles (Neutral) --- */ 


