/* ==========================================================================
   Saloon Davet - Modern & Butik Davet Salonu Stilleri
   ========================================================================== */

:root {
  --primary-color: #c5a880;
  --primary-hover: #b39266;
  --primary-light: #f5efe6;
  --primary-dark: #8c6d46;
  --secondary-color: #1a1a1a;
  --secondary-light: #2c2c2c;
  --text-main: #2b2b2b;
  --text-muted: #666666;
  --text-light: #a0a0a0;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --border-color: #ebdcd0;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #c5a880 50%, #aa8246 100%);
  --dark-gradient: linear-gradient(180deg, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.95) 100%);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --transition: all 0.35s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Helpers */
.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.sub-title {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 12px;
  position: relative;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.6);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: #fff;
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--secondary-color);
  color: #fff;
}

.btn-dark:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 25px;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-contact a:hover {
  color: var(--primary-color);
}

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

.top-social a {
  color: rgba(255, 255, 255, 0.8);
}

.top-social a:hover {
  color: var(--primary-color);
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

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

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--secondary-color);
  line-height: 1;
}

.logo-title span {
  color: var(--primary-color);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary-color);
  position: relative;
  padding: 6px 0;
}

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

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

.nav-link.active {
  color: var(--primary-color);
}

.header-action .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Slider */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 520px;
  overflow: hidden;
  background-color: #111;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  color: #fff;
  padding: 0 20px;
}

.slide-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(197, 168, 128, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 128, 0.6);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7e8d3;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease backwards;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 0.9s ease 0.2s backwards;
}

.slide-title span {
  color: var(--primary-color);
}

.slide-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  animation: fadeInUp 0.9s ease 0.4s backwards;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s backwards;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.slider-prev {
  left: 25px;
}

.slider-next {
  right: 25px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--primary-color);
}

/* Page Banner (Subpages) */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px 0;
  text-align: center;
  color: #fff;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.85));
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--primary-color);
}

/* Feature Highlights Bar */
.features-strip {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 15px;
}

.feature-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* About Intro Section */
.section-py {
  padding: 90px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-main-img {
  width: 90%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 460px;
}

.about-floating-badge {
  position: absolute;
  bottom: -25px;
  right: 5%;
  background: var(--secondary-color);
  color: #fff;
  padding: 24px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary-color);
  text-align: center;
}

.about-floating-badge .number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.about-floating-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-intro-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about-intro-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.about-highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Services Grid */
.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(26, 26, 26, 0.85);
  color: var(--primary-color);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-body {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 20px;
  border-top: 1px dashed var(--border-color);
  padding-top: 15px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

.service-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Why Choose Us & Salon Stats */
.why-us-section {
  background: var(--secondary-color);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #fff;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  transform: translateY(15px);
  transition: var(--transition);
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.lightbox-nav-btn:hover {
  background: var(--primary-color);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Testimonials */
.testimonials-section {
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  position: relative;
}

.testi-stars {
  color: #f5a623;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.testi-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testi-name {
  font-weight: 700;
  color: var(--secondary-color);
}

.testi-event {
  font-size: 0.8rem;
  color: var(--primary-color);
}

/* Call to Action Bar */
.cta-strip-section {
  background: var(--gold-gradient);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-strip-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.cta-strip-content p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
}

.cta-strip-content .btn-white {
  background: #fff;
  color: var(--secondary-color);
  font-weight: 700;
}

.cta-strip-content .btn-white:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* FAQ Accordion */
.faq-section {
  background: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg-light);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary-color);
  user-select: none;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 20px 24px;
}

/* Contact Page & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.contact-card-info p, 
.contact-card-info a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-card-info a:hover {
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.contact-form-wrapper p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--bg-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

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

.form-submit-row {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.form-alert {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.92rem;
}

.form-alert.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* Map Section */
.map-section {
  width: 100%;
  height: 420px;
  background: #eee;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
  box-shadow: var(--shadow-sm);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about .logo-title {
  color: #fff;
  margin-bottom: 8px;
}

.footer-about .logo-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-widget h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-contact-info li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.floating-btn.whatsapp {
  background-color: #25d366;
}

.floating-btn.call {
  background-color: var(--primary-color);
}

.floating-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .feature-item:nth-child(2) {
    border-right: none;
  }
  .services-grid,
  .why-us-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background: #fff;
    flex-direction: column;
    padding: 40px 20px;
    gap: 22px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .header-action {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .slide-title {
    font-size: 2.2rem;
  }
  .hero-slider-section {
    height: 65vh;
  }
  .about-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-stack {
    order: -1;
  }
  .about-main-img {
    width: 100%;
    height: 350px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
  .services-grid,
  .why-us-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  /* Mobile padding to prevent bottom bar overlap */
  body {
    padding-bottom: 60px;
  }
}

/* Header Action Buttons */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-call {
  background: var(--gold-gradient);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.35);
  transition: var(--transition);
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
  color: #fff;
}

.btn-header-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-header-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Mobile Fixed Bottom Quick Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1500;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-bar-call {
  background: var(--secondary-color);
  color: #ffffff;
}

.mobile-bar-call i {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.mobile-bar-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.mobile-bar-whatsapp i {
  font-size: 1.25rem;
}

/* WhatsApp Pulse Animation */
.floating-btn.whatsapp {
  animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
