*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white: #ffffff;
  --cream: #fbfaf8;
  
  /* Refined Warm Soft Gray Scale */
  --gray-50:  #f8f7f5;
  --gray-100: #f0eee9;
  --gray-200: #e5e2db;
  --gray-300: #d4cfc6;
  --gray-400: #b6b0a5;
  --gray-500: #928c81;
  --gray-600: #6d675e;
  --gray-700: #4f4b44;
  --gray-800: #36322a;
  --gray-900: #221f1a;
  
  /* Vibrantly Balanced Orange Palette */
  --orange:        #e8893c;
  --orange-soft:   #f0a566;
  --orange-light:  #fdf2e8;
  --orange-pale:   #fef8f1;
  --orange-dark:   #c96920;
  --orange-deep:   #a8540f;
  
  /* Elegant Small Sky Blue Accents */
  --sky-pale:  #f2f7fa;
  --sky-light: #d6e8f4;
  --sky:       #6cb6e0;
  --sky-mid:   #3f9ad4;
  --sky-deep:  #2171a4;

  /* Tropical Green (top bar + footer) */
  --green-deep:  #0f3d2e;
  --green-dark:  #14543d;
  --green:       #1c7a54;
  --green-mid:   #2b9e6e;
  --green-soft:  #6dd0a3;
  --green-pale:  #a7e8c8;

  --nav-h: 70px;
  --bar-h: 38px;
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  
  --shadow-sm:  0 2px 8px rgba(54,50,42,0.04);
  --shadow:     0 6px 28px rgba(54,50,42,0.07);
  --shadow-lg:  0 16px 48px rgba(54,50,42,0.12);
  --shadow-warm: 0 8px 32px rgba(232,137,60,0.12);
  --tr: 0.28s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; line-height: 1.72;
  color: var(--gray-800); background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'DM Serif Display', serif; line-height: 1.2; letter-spacing: -0.01em; }
h1 em, h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }

/* ── TRANSLATE TOP BAR ── */
#translate-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--bar-h);
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  gap: 2px; padding: 0 16px;
}
.lang-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-right: 10px; white-space: nowrap;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.8); padding: 5px 10px; border-radius: 6px;
  transition: all var(--tr); white-space: nowrap;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.14); }
.lang-btn.active { color: #fff; background: rgba(109,208,163,0.28); font-weight: 500; }
#google_translate_element { display: none; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

/* ── NAV ── */
nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--tr);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(53,49,41,0.08); }
.nav-inner {
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
/* ── NAV LOGO TYPOGRAPHY UPDATE ── */
.nav-logo { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  text-decoration: none; 
  transition: transform var(--tr);
}
.nav-logo:hover {
  transform: translateY(-1px);
}
.logo-text { 
  display: flex; 
  flex-direction: column; 
  line-height: 1.1; 
}
.logo-name { 
  font-family: 'DM Serif Display', serif; 
  font-size: 1.55rem; 
  font-weight: 400;
  color: var(--gray-900); 
  letter-spacing: 0.03em; 
}
.logo-name span { 
  color: var(--orange); 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  padding: 0 2px;
}
.logo-sub { 
  font-family: 'DM Sans', sans-serif; 
  font-size: 0.64rem; 
  font-weight: 600; 
  color: var(--gray-500); 
  letter-spacing: 0.22em; 
  text-transform: uppercase; 
  margin-top: 4px; 
}

/* ── REFINED FOOTER LOGO TYPOGRAPHY ── */
.footer-logo-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.footer-logo-name { 
  font-family: 'DM Serif Display', serif; 
  font-size: 1.6rem; 
  color: var(--white); 
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.footer-logo-name span { 
  color: var(--orange-soft); 
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  padding: 0 2px;
}
.footer-logo-sub { 
  font-family: 'DM Sans', sans-serif;
  font-size: 0.64rem; 
  font-weight: 600;
  letter-spacing: 0.22em; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.4); 
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400; color: var(--gray-700);
  text-decoration: none; padding: 8px 13px; border-radius: var(--radius-sm);
  transition: color var(--tr), background var(--tr); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--orange-dark); background: var(--orange-light); }
.nav-links .btn-book {
  background: var(--orange); color: var(--white) !important;
  border-radius: 50px; padding: 9px 22px; font-weight: 500;
  box-shadow: 0 3px 12px rgba(232,137,60,0.3); margin-left: 6px;
}
.nav-links .btn-book:hover { background: var(--orange-dark); box-shadow: 0 4px 18px rgba(232,137,60,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gray-800); border-radius: 2px; transition: var(--tr); }
.mobile-menu {
  display: none; position: fixed; top: calc(var(--nav-h) + var(--bar-h)); left: 0; right: 0;
  background: var(--white); z-index: 999; padding: 20px 24px;
  flex-direction: column; gap: 4px; border-top: 1px solid var(--gray-100);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 400; color: var(--gray-800); text-decoration: none; padding: 13px 16px; border-radius: var(--radius-sm); transition: background var(--tr); }
.mobile-menu a:hover { background: var(--orange-light); color: var(--orange-dark); }

/* ── HERO ── */
#home {
  position: relative; height: 100vh; min-height: 660px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  margin-top: calc(var(--bar-h) + var(--nav-h));
}
.slider-track { position: absolute; inset: 0; display: flex; transition: transform 0.9s cubic-bezier(0.77,0,0.175,1); }
.slide { flex: 0 0 100%; height: 100%; background-size: cover; background-position: center; position: relative; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(40,28,14,0.55) 0%, rgba(50,35,18,0.34) 55%, rgba(0,0,0,0.12) 100%); }
.slide-1 { background-image: url('https://www.fotorod.com/wp-content/uploads/2023/04/phuket-honeymoon-wedding-photographer-by-fotorod-1-1-575x375.jpg'); }
.slide-2 { background-image: url('https://www.fotorod.com/wp-content/uploads/2022/10/romantic-honeymoon-photoshoot-in-phuket-41-575x375.jpg'); }
.slide-3 { background-image: url('https://www.fotorod.com/wp-content/uploads/2026/01/phuket-rawai-naiharn-ao-sane-beach-photo-cover-575x375.jpg'); }
.slide-4 { background-image: url('https://www.fotorod.com/wp-content/uploads/2025/10/khaolak-honeymoon-memories-photography-21-575x375.jpg'); }
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--white); padding: 0 28px; max-width: 860px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(232,137,60,0.22); border: 1px solid rgba(232,137,60,0.45);
  backdrop-filter: blur(10px); padding: 7px 20px; border-radius: 50px;
  margin-bottom: 22px; color: var(--orange-soft);
}
.hero-content h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,0.28); line-height: 1.12; font-weight: 400; }
.hero-content p { font-family: 'DM Sans', sans-serif; font-size: clamp(1rem, 2.2vw, 1.15rem); font-weight: 300; margin-bottom: 38px; opacity: 0.92; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: var(--white); padding: 14px 34px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none; border: none; cursor: pointer; transition: all var(--tr); display: inline-block; letter-spacing: 0.02em; box-shadow: 0 4px 18px rgba(232,137,60,0.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,137,60,0.5); }
.btn-outline-white { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); padding: 14px 34px; border-radius: 50px; font-size: 0.9rem; font-weight: 400; text-decoration: none; backdrop-filter: blur(10px); cursor: pointer; transition: all var(--tr); display: inline-block; letter-spacing: 0.02em; }
.btn-outline-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.arrow-btn { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(10px); color: var(--white); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background var(--tr); pointer-events: all; }
.arrow-btn:hover { background: rgba(255,255,255,0.28); }
.slider-arrows { position: absolute; bottom: 50%; transform: translateY(50%); left: 0; right: 0; z-index: 10; display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--tr); border: none; }
.dot.active { background: var(--white); transform: scale(1.35); }

/* ── SECTIONS ── */
section { padding: 96px 28px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 13px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--gray-900); margin-bottom: 18px; line-height: 1.18; font-weight: 400; }
.section-sub { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--gray-600); max-width: 580px; line-height: 1.8; margin-bottom: 60px; font-weight: 300; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── SERVICES ── */
#services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); overflow: hidden; transition: box-shadow var(--tr), transform var(--tr); display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-5px); }
.service-photo { height: 170px; width: 100%; object-fit: cover; display: block; }
.service-body { padding: 24px 24px 28px; }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.18rem; margin-bottom: 10px; color: var(--gray-900); font-weight: 400; }
.service-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.72; }
.service-tag { display: inline-block; margin-top: 16px; font-size: 0.72rem; font-weight: 600; color: var(--orange-dark); background: var(--orange-light); border: 1px solid var(--orange-soft); padding: 4px 12px; border-radius: 50px; letter-spacing: 0.04em; }

/* ── WHY US ── */
#why-us { background: var(--white); }
.section-intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { padding: 28px 22px; border-radius: var(--radius); border: 1px solid var(--gray-200); text-align: center; background: var(--gray-50); transition: box-shadow var(--tr), transform var(--tr); }
.why-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-3px); }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--orange); display: block; margin-bottom: 6px; line-height: 1; }
.why-card h4 { font-family: 'DM Serif Display', serif; font-size: 0.95rem; color: var(--gray-900); margin-bottom: 7px; font-weight: 400; }
.why-card p { font-size: 0.835rem; color: var(--gray-600); line-height: 1.65; }
.why-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 14px; }
.why-feat { padding: 22px 22px; border-radius: var(--radius-sm); background: var(--gray-50); border: 1px solid var(--gray-200); transition: box-shadow var(--tr); }
.why-feat:hover { box-shadow: var(--shadow-warm); }
.why-feat h5 { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: var(--gray-900); }
.why-feat h5::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--orange); margin-right: 8px; vertical-align: middle; }
.why-feat p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }
.btn-orange { display: inline-block; background: var(--orange); color: var(--white); padding: 13px 32px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none; letter-spacing: 0.02em; transition: all var(--tr); box-shadow: 0 4px 14px rgba(232,137,60,0.3); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,137,60,0.4); }

/* ── LOCATIONS ── */
#locations { background: var(--gray-50); }
.locations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.location-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); transition: transform var(--tr), box-shadow var(--tr); }
.location-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.location-img { height: 230px; background-size: cover; background-position: center; position: relative; }
.location-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(40,28,14,0.62) 0%, transparent 55%); }
.loc-1 { background-image: url('https://www.fotorod.com/wp-content/uploads/2023/04/phuket-honeymoon-wedding-photographer-by-fotorod-1-1-575x375.jpg'); }
.loc-2 { background-image: url('https://www.fotorod.com/wp-content/uploads/2025/09/romantic-photoshoot-natai-beach-phuket-31-575x375.jpg'); }
.loc-3 { background-image: url('https://www.fotorod.com/wp-content/uploads/2025/10/khaolak-honeymoon-memories-photography-21-575x375.jpg'); }
.location-badge { position: absolute; bottom: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.6); color: var(--orange-dark); padding: 5px 14px; border-radius: 50px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em; }
.location-body { padding: 22px; }
.location-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--gray-900); margin-bottom: 10px; font-weight: 400; }
.location-body p { font-size: 0.865rem; color: var(--gray-600); line-height: 1.72; }
.location-meta { margin-top: 10px; font-size: 0.8rem; color: var(--gray-500); }
.location-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.loc-tag { font-size: 0.72rem; font-weight: 500; background: var(--sky-pale); color: var(--sky-deep); padding: 3px 10px; border-radius: 50px; border: 1px solid var(--sky-light); }
.locations-info-bar { margin-top: 36px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 36px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.info-bar-item h4 { font-family: 'DM Serif Display', serif; color: var(--gray-900); font-size: 1rem; margin-bottom: 8px; font-weight: 400; }
.info-bar-item h4::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--orange); margin-right: 8px; vertical-align: middle; }
.info-bar-item p { font-size: 0.855rem; color: var(--gray-600); line-height: 1.65; }

/* ── PORTFOLIO ── */
#gallery { background: var(--cream); }
.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 42px; }
.filter-btn { padding: 8px 22px; border-radius: 50px; font-size: 0.855rem; font-weight: 500; border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600); cursor: pointer; transition: all var(--tr); letter-spacing: 0.01em; }
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.port-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; position: relative; cursor: pointer; transition: transform var(--tr); }
.port-item:hover { transform: scale(1.02); }
.port-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.port-item:hover img { transform: scale(1.07); }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(40,28,14,0.72) 0%, transparent 50%); opacity: 0; transition: opacity var(--tr); display: flex; align-items: flex-end; padding: 14px; }
.port-item:hover .port-overlay { opacity: 1; }
.port-label { font-size: 0.78rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }

/* ── PRICING ── */
#packages { background: var(--white); }
.pricing-tabs { display: flex; gap: 0; justify-content: center; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 4px; max-width: 380px; margin: 0 auto 56px; background: var(--gray-50); }
.tab-btn { flex: 1; padding: 10px 20px; border-radius: 50px; border: none; font-size: 0.855rem; font-weight: 500; cursor: pointer; background: transparent; color: var(--gray-600); transition: all var(--tr); font-family: 'DM Sans', sans-serif; }
.tab-btn.active { background: var(--white); color: var(--gray-900); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price-card { border-radius: var(--radius-lg); padding: 36px 28px; border: 1.5px solid var(--gray-200); background: var(--white); position: relative; transition: box-shadow var(--tr), transform var(--tr); }
.price-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-4px); }
.price-card.featured { border-color: var(--orange); background: linear-gradient(160deg, #a8540f 0%, #c96920 55%, #e8893c 100%); color: var(--white); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gray-900); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.06em; box-shadow: 0 3px 12px rgba(53,49,41,0.3); }
.price-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.price-card.featured .price-name { color: rgba(255,255,255,0.8); }
.price-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 8px; color: var(--gray-900); font-weight: 400; }
.price-card.featured h3 { color: var(--white); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 2px; }
.price-duration { font-size: 0.82rem; font-weight: 600; color: var(--orange-dark); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.price-card.featured .price-duration { color: rgba(255,255,255,0.9); }
.price-currency { font-size: 0.95rem; font-weight: 500; color: var(--gray-500); margin-top: 6px; }
.price-value { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gray-900); line-height: 1; }
.price-card.featured .price-value, .price-card.featured .price-currency { color: var(--white); }
.price-period { font-size: 0.78rem; color: var(--gray-500); align-self: flex-end; padding-bottom: 5px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.6); }
.price-desc { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 22px; line-height: 1.7; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.85); }
.price-divider { border: none; border-top: 1px solid var(--gray-100); margin: 22px 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.25); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.price-features li { display: flex; align-items: center; gap: 9px; font-size: 0.875rem; color: var(--gray-700); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.9); }
.feat-check { color: var(--orange); font-weight: 700; font-size: 0.9rem; }
.price-card.featured .feat-check { color: var(--white); }
.btn-price { display: block; width: 100%; padding: 13px; border-radius: 50px; text-align: center; font-size: 0.875rem; font-weight: 500; cursor: pointer; text-decoration: none; border: 1.5px solid var(--orange); color: var(--orange-dark); background: var(--white); transition: all var(--tr); letter-spacing: 0.02em; }
.btn-price:hover { background: var(--orange); color: var(--white); }
.price-card.featured .btn-price { background: var(--white); color: var(--orange-dark); border-color: var(--white); }
.price-card.featured .btn-price:hover { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); }

/* ── CONTACT ── */
#contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.contact-info h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 14px; color: var(--gray-900); font-weight: 400; }
.contact-info p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.78; margin-bottom: 22px; }
.contact-detail { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.875rem; color: var(--gray-700); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail a { color: var(--orange-dark); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); margin-top: 22px; height: 190px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; color: var(--gray-600); font-size: 0.9rem; }
.booking-form { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); padding: 36px 32px; box-shadow: var(--shadow); }
.booking-success { text-align: center; padding: 8px 4px 4px; margin-bottom: 4px; animation: fadeInUp 0.5s ease; }
.booking-success-icon { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%); color: #fff; font-size: 1.9rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(28,122,84,0.35); }
.booking-success-title { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--green); margin-bottom: 10px; font-weight: 400; }
.booking-success-text { font-size: 1.05rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 12px; }
.booking-success-id { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--green-dark); background: var(--green-pale); border: 1px solid var(--green-soft); padding: 8px 18px; border-radius: 50px; letter-spacing: 0.03em; margin-bottom: 14px; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.booking-form h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 24px; color: var(--gray-900); font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); font-size: 0.875rem; font-family: 'DM Sans', sans-serif; color: var(--gray-900); background: var(--white); transition: border-color var(--tr); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,137,60,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.pos-rel { position: relative; }

/* ── UPDATED CUSTOM CALENDAR DESIGN ── */
.date-display { 
  padding: 11px 14px; 
  border-radius: var(--radius-sm); 
  border: 1.5px solid var(--gray-200); 
  font-size: 0.875rem; 
  color: var(--gray-900); 
  background: var(--white); 
  min-height: 42px; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  transition: border-color var(--tr); 
  user-select: none;
}
.date-display:hover { border-color: var(--orange); }

.calendar-popup { 
  display: none; 
  position: absolute; 
  bottom: calc(100% + 8px); left: 0;
  z-index: 200; 
  background: var(--white); 
  border: 1.5px solid var(--gray-200); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow-lg); 
  width: 310px; 
  padding: 18px; 
}
.calendar-popup.show { display: block; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-header button { 
  width: 32px; height: 32px; 
  border: none; 
  background: var(--gray-50); 
  border-radius: var(--radius-sm); 
  cursor: pointer; 
  font-size: 1.1rem; 
  color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.cal-header button:hover:not(:disabled) { background: var(--orange-light); color: var(--orange-dark); }
.cal-header button:disabled { opacity: 0.25; cursor: not-allowed; }
.cal-header span { font-weight: 600; font-size: 0.9rem; color: var(--gray-900); }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-name { text-align: center; font-size: 0.72rem; font-weight: 600; color: var(--gray-500); padding: 4px 0; text-transform: uppercase; }
.cal-day { 
  text-align: center; padding: 7px 0; 
  border-radius: var(--radius-sm); 
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; color: var(--gray-800); 
  transition: all var(--tr); 
  border: none; background: none; 
  font-family: 'DM Sans', sans-serif; 
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.cal-day:hover:not(.past):not(.empty) { background: var(--orange-light); color: var(--orange-dark); }
.cal-day.selected { background: var(--orange) !important; color: var(--white) !important; font-weight: 600; }
.cal-day.today:not(.selected) { border: 1.5px solid var(--sky); color: var(--sky-deep); background: var(--sky-pale); }
.cal-day.empty { cursor: default; pointer-events: none; }
.cal-day.past { color: var(--gray-300); cursor: not-allowed; opacity: 0.6; background: none; }

.form-buttons { display: flex; gap: 10px; margin-top: 6px; }
.form-submit { flex: 1; padding: 14px; background: var(--orange); color: var(--white); border: none; border-radius: 50px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all var(--tr); font-family: 'DM Sans', sans-serif; box-shadow: 0 4px 14px rgba(232,137,60,0.3); letter-spacing: 0.02em; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,137,60,0.4); }
.form-reset { padding: 14px 26px; background: transparent; color: var(--gray-600); border: 1.5px solid var(--gray-300); border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all var(--tr); font-family: 'DM Sans', sans-serif; letter-spacing: 0.02em; }
.form-reset:hover { background: var(--gray-100); color: var(--gray-800); border-color: var(--gray-400); }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { border: 1.5px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: border-color var(--tr); }
.faq-item:hover { border-color: var(--orange-soft); }
.faq-question { width: 100%; padding: 19px 22px; background: var(--white); border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--gray-900); transition: background var(--tr); }
.faq-question:hover { background: var(--orange-pale); }
.faq-item.open .faq-question { background: var(--orange-light); color: var(--orange-deep); }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--gray-100); color: var(--gray-500); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 300; transition: all var(--tr); }
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); font-size: 0.875rem; color: var(--gray-600); line-height: 1.78; }
.faq-answer-inner { padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-answer-inner { padding: 4px 22px 20px; }

/* ── SOCIAL STRIP ── */
#social-strip { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 55%, var(--green) 100%); padding: 60px 28px; text-align: center; position: relative; overflow: hidden; }
#social-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(109,208,163,0.16) 0%, transparent 70%); }
#social-strip .container { position: relative; z-index: 1; }
#social-strip h3 { font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: var(--white); font-weight: 400; margin-bottom: 10px; }
#social-strip p { font-size: 0.925rem; color: rgba(255,255,255,0.62); margin-bottom: 34px; font-weight: 300; }
.social-icons-row { display: flex; justify-content: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.soc-btn { display: flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: 50px; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: all var(--tr); border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); color: var(--white); }
.soc-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); border-color: rgba(255,255,255,0.4); }
.soc-btn svg { width: 20px; height: 20px; fill: var(--white); }
.soc-btn.ig:hover { background: rgba(225,48,108,0.25); border-color: rgba(225,48,108,0.5); }
.soc-btn.fb:hover { background: rgba(24,119,242,0.25); border-color: rgba(24,119,242,0.5); }
.soc-btn.tt:hover { background: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.4); }
.operated-line { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 8px; }
.operated-line a { color: rgba(255,255,255,0.8); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
.operated-line a:hover { color: var(--green-pale); }

/* ── FOOTER ── */
footer { background: linear-gradient(160deg, var(--green-deep) 0%, #0c3325 100%); color: rgba(255,255,255,0.78); padding: 60px 28px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-block { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.footer-logo-name { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--white); line-height: 1.1; }
.footer-logo-name span { color: var(--green-soft); }
.footer-logo-sub { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.footer-desc { font-size: 0.855rem; line-height: 1.72; color: rgba(255,255,255,0.55); }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.855rem; color: rgba(255,255,255,0.62); text-decoration: none; margin-bottom: 10px; transition: color var(--tr); }
.footer-col a:hover { color: var(--green-soft); }
.footer-col p { font-size: 0.855rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; line-height: 1.65; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── WHATSAPP ── */
.wa-float { position: fixed; right: 22px; bottom: 28px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,0.45); text-decoration: none; transition: transform var(--tr), box-shadow var(--tr); animation: waPulse 2.8s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
.wa-tooltip { position: absolute; right: 70px; bottom: 50%; transform: translateY(50%); background: var(--gray-900); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.76rem; font-weight: 400; white-space: nowrap; padding: 7px 13px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity var(--tr); }
.wa-tooltip::after { content: ''; position: absolute; top: 50%; right: -6px; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--gray-900); border-right: 0; }
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 9px rgba(37,211,102,0.1); } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .locations-grid, .pricing-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .locations-info-bar { grid-template-columns: 1fr; }
  .section-intro-split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .lang-label { display: none; }
  .calendar-popup { left: 50%; transform: translateX(-50%); bottom: calc(100% + 8px); }
}
@media (max-width: 600px) {
  section { padding: 64px 20px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .lang-btn { padding: 5px 7px; font-size: 0.72rem; }
}

/* ── (WhatsApp fallback button removed — replaced by Reset button) ── */
