:root{
--bg:#07060a;
--card:#0f1116;
--muted:#bfc7d6;
--gold:#d4af37;
--accent:#0ea5e9;
--glass:rgba(255,255,255,0.04);
--radius:14px;
--shadow:0 12px 30px rgba(2,6,23,0.6);
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;}
body{
background:var(--bg);
color:#e6eef8;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
overflow-x:hidden;
}

/* Background video */
.bg-video{
position:fixed;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;
filter:brightness(0.85) saturate(0.9);
}

/* overlay glow */
body::before{
content:"";position:fixed;inset:0;z-index:-1;
background:linear-gradient(180deg, rgba(2,6,23,0.6) 0%, rgba(2,6,23,0.85) 60%);
pointer-events:none;
}

/* Header */
.site-header{
width:100%;display:flex;align-items:center;justify-content:space-between;
padding:20px 36px;background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
backdrop-filter:blur(6px);position:sticky;top:0;z-index: index 1;;border-bottom:1px solid rgba(255,255,255,0.03);
}
.brand{display:flex;flex-direction:column;gap:2px;}
.logo{font-family:'Playfair Display', serif;font-size:1.4rem;font-weight:700;letter-spacing:0.6px;}
.logo span{color:var(--gold);}
.tag{font-size:0.75rem;color:var(--muted);}

/* Nav */
.nav{display:flex;gap:20px;align-items:center;}
.nav a{text-decoration:none;color:var(--muted);font-weight:600;transition:all .25s;}
.nav a:hover{color:var(--accent);transform:translateY(-2px);}

/* Menu button (hamburger) */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 30;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate hamburger when active */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navbar for mobile/tablet */
.nav {
  display: ruby-base-container;
  gap: 20px;
  align-items: left;
}

@media (max-width: 900px) {
  .nav {
    position: inherit;
    top: 0;
    right: -300px; /* hidden by default */
    height: 100vh;
    width: 260px;
    background: #fbfdfff5;
    flex-direction: column;
    padding: 3px 3px;
    gap: 20px;
    transition: right 0.3s ease;
    border-radius: 10px 0 0 10px;
    z-index: -1;
  }

  .nav.show {
    right: 0; /* slide in from right */
  }

  .menu-btn {
    display: ruby-base-container;
  }
}

/* HERO */
.hero{
min-height:80vh;display:flex;align-items:center;justify-content:center;padding:80px 20px;position:relative;
}
.hero-inner{max-width:1100px;text-align:center;position:relative;z-index:2;}
.hero h1{font-family:'Playfair Display',serif;font-weight:700;font-size:3.2rem;line-height:1.05;color:#fff;text-transform:none;}
.hero h1 span{display:block;color:var(--gold);font-size:2.2rem;font-weight:600;margin-top:8px;}
.lead{color:var(--muted);margin-top:16px;font-size:1.05rem;max-width:760px;margin-left:auto;margin-right:auto;}

/* Hero accents */
.hero-accent{
position:absolute;right:8%;top:10%;
width:420px;height:420px;border-radius:50%;
background:radial-gradient(circle at 30% 30%, rgba(14,165,233,0.08), rgba(212,175,55,0.06) 30%, rgba(7,10,14,0) 55%);
filter:blur(40px);pointer-events:none;z-index:1;
}

/* Buttons */
.btn{display:inline-block;padding:12px 22px;border-radius:10px;text-decoration:none;font-weight:600;transition:transform .2s ease, box-shadow .2s;}
.btn-primary{background:linear-gradient(90deg,var(--accent),var(--accent));color:#071021; box-shadow:0 10px 30px rgba(14,165,233,0.08);}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--muted);}

/* Section */
.section{padding:72px 20px;}
.container{max-width:1180px;margin:0 auto;}
.section-title{font-family:'Playfair Display',serif;font-size:2rem;margin-bottom:6px;color:#fff;}
.section-sub{color:var(--muted);margin-bottom:24px;}

/* filters */
.filters{display:flex;gap:10px;margin-bottom:22px;flex-wrap:wrap;}
.filter{background:var(--glass);border:1px solid rgba(255,255,255,0.03);padding:8px 14px;border-radius:10px;color:var(--muted);cursor:pointer;}
.filter.active{background:linear-gradient(90deg, rgba(212,175,55,0.12), rgba(14,165,233,0.06));border-color:rgba(212,175,55,0.25);color:#fff;}

/* Grid */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;margin-top:10px;}
.card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border-radius:14px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;transition:transform .3s ease, box-shadow .3s;}
.card:hover{transform:translateY(-10px);box-shadow:0 18px 40px rgba(2,6,23,0.7);}
.card-media{position:relative;height:180px;overflow:hidden;}
.card-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease;}
.card:hover .card-media img{transform:scale(1.06);}
.card-badge{position:absolute;left:12px;top:12px;background:rgba(0,0,0,0.45);padding:6px 10px;border-radius:999px;font-weight:700;color:var(--gold);font-size:0.9rem;}
.card-body{padding:18px;flex:1;display:flex;flex-direction:column;gap:12px;}
.card-body h3{font-size:1.05rem;color:#fff;}
.card-body p{color:var(--muted);font-size:0.95rem;flex:1;}
.card-more{align-self:flex-end;background:transparent;border:1px solid rgba(255,255,255,0.06);padding:8px 12px;border-radius:8px;color:var(--muted);cursor:pointer;}

/* ABOUT split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center;}
.about-media img{width:100%;border-radius:12px;object-fit:cover;display:block;box-shadow:var(--shadow);}
.about-content p{color:var(--muted);line-height:1.6;margin-bottom:18px;}
.about-list{list-style:none;display:flex;flex-direction:column;gap:10px;color:var(--muted);}

/* CONTACT */
/* ✅ Fix contact section alignment */
.contact-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
  flex-wrap: wrap; /* ensures proper stacking on mobile */
}

.contact-left,
.contact-form {
  flex: 1 1 400px;
  max-width: 480px; /* keeps both boxes equal width */
}

/* ✅ Stylish Contact Box */
.contact-left {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 35px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  color: #fff;
  max-width: 800px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-left:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.contact-left h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.contact-left p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-left strong {
  display: block;
  margin-top: 15px;
  color: #fff;
}

.contact-left a.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.contact-left a.whatsapp-btn:hover {
  background: #1ebe57;
}

/* Layout fix for both sides */
.contact-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
}


.contact-meta{margin:18px 0;color:var(--muted);display:flex;gap:26px;flex-direction:column;}
.contact-form{display:flex;flex-direction:column;gap:20px;padding:15px;background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));border-radius:12px;box-shadow:var(--shadow);} 
.contact-form label{display:flex;flex-direction:column;gap:10px;color:var(--muted);font-size:0.95rem;}
.contact-form input,.contact-form textarea{background:transparent;border:1px solid rgba(255,255,255,0.08);padding:12px;border-radius:5px;color:#fff;outline:none;}
.form-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:6px;}

/* FOOTER SECTION STYLES */

.site-footer {
  background: linear-gradient(180deg, rgba(10,12,18,0.95), rgba(2,6,23,1));
  padding: 60px 20px 30px;
  color: var(--muted);
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 120px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.footer-logo p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 22px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}


/* Modal */
.modal{position:fixed;inset:0;background:rgba(2,6,23,0.7);display:none;align-items:center;justify-content:center;padding:24px;z-index:60;}
.modal[aria-hidden="false"]{display:flex;}
.modal-dialog{background:linear-gradient(180deg, rgba(10,12,18,0.98), rgba(8,9,12,0.99));border-radius:12px;padding:18px;max-width:980px;width:100%;box-shadow:0 30px 50px rgba(2,6,23,0.8);}
.modal-grid{display:grid;grid-template-columns:1fr 360px;gap:18px;align-items:start;}
.modal-media img{width:100%;height:100%;object-fit:cover;border-radius:8px;}
.modal-content h3{font-size:1.4rem;margin-bottom:8px;}
.meta{color:var(--muted);margin-bottom:12px;}
.price{font-weight:700;color:var(--gold);font-size:1.1rem;margin-top:8px;}
.modal-actions{display:flex;gap:10px;margin-top:18px;}
.modal-close{position:absolute;right:28px;top:28px;background:transparent;border:0;color:var(--muted);font-size:2rem;cursor:pointer;}

/* Responsive */
@media (max-width:900px){
.split{grid-template-columns:1fr;}
.contact-wrap{grid-template-columns:1fr;}
.modal-grid{grid-template-columns:1fr;}
.menu-btn{display:flex;}
.nav{position:fixed;right:14px;top:70px;background:rgba(3,6,10,0.96);padding:12px;border-radius:10px;flex-direction:column;gap:8px;display:none;}
.nav.show{display:ruby-base-container;}
}
@media (max-width:480px){
.hero h1{font-size:1.8rem;}
.hero h1 span{font-size:1.05rem;}
}

/* UNIVERSAL HOVER GLOW EFFECTS */

/* Buttons */
.btn:hover,
.card-more:hover,
.filter:hover,
button:hover {
  box-shadow: 0 0 20px rgba(14,165,233,0.4),
              0 0 40px rgba(212,175,55,0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* Cards */
.card:hover {
  box-shadow: 0 0 25px rgba(14,165,233,0.3),
              0 0 50px rgba(212,175,55,0.2);
  transform: translateY(-8px);
}

/* Nav links */
.nav a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(14,165,233,0.6);
}

/* Filters */
.filter:hover {
  background: rgba(14,165,233,0.12);
  box-shadow: 0 0 18px rgba(14,165,233,0.3);
}

/* Contact boxes (left + right) */
.contact-left:hover,
.contact-form:hover {
  box-shadow: 0 0 25px rgba(14,165,233,0.35),
              0 0 50px rgba(212,175,55,0.2);
  transition: all 0.3s ease;
}

/* Footer hover links if any */
.site-footer a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* HERO CONTINUOUS SLIDE ANIMATION EFFECT */

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.05;
  color: #fff;
  text-transform: none;
  animation: heroSlideLoop 6s ease-in-out infinite;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 8px;
  animation: heroSlideLoop 6s ease-in-out infinite reverse; 
}

/* Subtitle: infinite continuous sliding */
.lead {
  color: var(--muted);
  margin-top: 20px;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: slideInfinite 20s linear infinite;
}

/* Keyframes for continuous motion */
@keyframes heroSlideLoop {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  25% {
    transform: translateY(-10px);
    opacity: 0.95;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

/* Continuous horizontal sliding for subtitle */
@keyframes slideInfinite {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Subtle glow fade effect for paragraph */
@keyframes fadeGlow {
  0%, 100% {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4),
                 0 0 22px rgba(14, 165, 233, 0.25);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 22px rgba(212, 175, 55, 0.8),
                 0 0 32px rgba(14, 165, 233, 0.4);
    opacity: 0.95;
  }
}

/* ===================== */
/* HEADER WITH LOGO IMAGE */
/* ===================== */

.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Logo container */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo image */
.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Logo hover effect */
.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}

/* Logo text beside image */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--gold);
}

/* Tagline below logo */
.tag {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
  margin-left: 65px; 
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 14px 24px;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .tag {
    margin-left: 55px;
    font-size: 0.75rem;
  }
}

/* UNIVERSAL RESPONSIVE ADJUSTMENTS */

/* Default scaling for all screen sizes */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Tablet (portrait + landscape) */
@media (max-width: 1024px) {
  body {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero h1 span {
    font-size: 1.6rem;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-left {
    width: 100%;
    padding: 40px;
  }

  .site-header {
    padding: 14px 28px;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }

  .logo-text {
    font-size: 1.4rem;
  }
}

/* Mobile devices (landscape to small portrait) */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 span {
    font-size: 1.2rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .section {
    padding: 50px 16px;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 14px;
    background: rgba(3, 6, 10, 0.96);
    padding: 25px;
    border-radius: 21px;
    flex-direction: column;
    gap: 10px;
    display: none;
  }

  .nav.show {
    display: flex;
    height: min-content;
    width: 27%;
  }

  .menu-btn {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
    text-align: center;
  }
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 40px 14px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h1 span {
    font-size: 1rem;
  }

  .lead {
    font-size: 0.9rem;
  }

  .contact-left {
    padding: 25px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .tag {
    margin-left: 48px;
    font-size: 0.7rem;
  }
}

/* Large desktops and 4K screens */
@media (min-width: 1600px) {
  html {
    font-size: 18px;
  }

  .hero-inner {
    max-width: 1300px;
  }

  .contact-left {
    width: 60rem;
  }

  .section {
    padding: 100px 40px;
  }
}

.success-message {
  margin-top: 15px;
  padding: 12px 18px;
  background: rgba(14,165,233,0.15);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
  animation: fadeIn 0.5s ease;
}

.success-message.error {
  background: rgba(220, 38, 38, 0.15);
  border-left: 4px solid #f87171;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Thank You Message Styles */
.thank-you-message {
  margin-bottom: 30px;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(212,175,55,0.1));
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  text-align: center;
  animation: fadeIn 0.6s ease, slideUp 0.6s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212,175,55,0.1);
}

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.thank-you-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
  animation: scaleIn 0.5s ease 0.2s both;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.thank-you-message h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.thank-you-message p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 5px 0;
  line-height: 1.6;
}

.thank-you-sub {
  color: var(--gold) !important;
  font-size: 1rem !important;
  font-weight: 600;
  margin-top: 10px !important;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .thank-you-message {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .thank-you-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .thank-you-message h3 {
    font-size: 1.6rem;
  }
  
  .thank-you-message p {
    font-size: 1rem;
  }
}

.contact-left {
  background: rgba(0, 0, 0, 0.2); 
  border: 2px solid rgba(255, 255, 255, 0.03);
}

.contact-form {
  background: rgba(0, 0, 0, 0.5); 
  border: 1px solid rgba(168, 126, 126, 0.05);
}

/* Make email and phone links white */
.contact-left a {
  color: #fff;              
  text-decoration: none;   
  transition: color 0.3s ease;
}

/* Optional hover effect */
.contact-left a:hover {
  color: var(--gold);      
}

/* FIXED RESPONSIVE MODAL LAYOUT */

.modal-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.modal-media {
  flex: 1 1 350px;
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.modal-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.modal-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  gap: 10px;
  text-align: left;
}

.modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ✅ Responsive adjustments */
@media (max-width: 900px) {
  .modal-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-media {
    max-width: 100%;
  }

  .modal-content {
    width: 100%;
    padding-top: 10px;
    gap: 2px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .modal-content h3 {
    font-size: 1.2rem;
  }
  .modal-content p {
    font-size: 0.9rem;
  }
}

/* New HERO layout */
.new-hero {
  position: relative;
  padding: 120px 5%;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-left {
  width: 50%;
  color: #fff;
}

.hero-left h1 {
  font-size: 55px;
  font-weight: 700;
}

.hero-left h2 {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 10px;
}

.hero-right {
  width: 50%;
}

.hero-slider {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.hero-slider img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slider img.active {
  opacity: 1;
}

/* Slider Container */
.hero-slider {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Slides */
.hero-slider img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slider img.active {
  opacity: 1;
}

/* New Plan Badge */
.new-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d4af37;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  color: black;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 20;
  padding: 8px 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  transition: 0.3s;
}

.slider-arrow:hover {
  background: rgba(0,0,0,0.6);
}

.slider-arrow.left {
  left: 5px;
}

.slider-arrow.right {
  right: 5px;
}

.hero-slider {
  position: relative;
  z-index: 10;     /* slider is above blur */
}

.slider-arrow {
  z-index: 20;     /* arrow always on top */
  cursor: pointer;
}

/*Icons*/
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); /* slightly visible for dark bg */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.social-icons a i {
  font-size: 20px;
  color: #d4d4d4; /* classy silver tone */
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.social-icons a:hover i {
  color: white;
}

/* ============================
   GALLERY SECTION STYLING
============================ */

.plans-gallery {
  padding: 160px 0; /* increased vertical spacing so gallery sits lower and feels roomier */
  position: relative;
  z-index: 2;
}

.gallery-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-title {
  font-size: 38px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}

.gallery-subtitle {
  color: #d1d1d1;
  margin-bottom: 40px;
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.35s ease;
  backdrop-filter: blur(8px);
}

.gallery-card img {
  width: 100%;
  height: 200px; /* larger default thumbnail height for better visual impact */
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.gallery-info {
  padding: 16px;
  text-align: left;
}

.gallery-info h3 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 20px;
}

.gallery-info p {
  color: #cfcfcf;
  font-size: 15px;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: gold;
  color: black;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 600;
}

.gallery-card {
  text-decoration: none !important;
}

.gallery-card h3,
.gallery-card p {
  text-decoration: none !important;
}

.gallery-card a {
  text-decoration: none !important;
  color: inherit !important;
}

.gallery-card * {
  text-decoration: none !important;
}

/* Responsive: ensure gallery sits below the hero on small devices
   while preserving the existing two-column hero layout on large screens. */
@media (max-width: 1024px) {
  /* Stack hero columns vertically so content flows naturally.
     This makes the hero slider (right) move below the hero text on tablets/phones. */
  .hero-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .hero-left,
  .hero-right {
  width: 100%;
  }

  /* Make sure the gallery appears after the hero and takes full width */
  .plans-gallery {
    position: relative !important;
    z-index: 2;
    width: 100%;
    padding-top: 28px;
    margin-top: 12px;
  }

  .gallery-container { width: 100%; max-width: 100%; padding: 0 18px; }
}

/* Small phones: tighter spacing */
@media (max-width: 480px) {
  .hero-wrapper { gap: 18px; }
  .plans-gallery { padding-top: 18px; margin-top: 8px; }
  .gallery-grid { gap: 14px; }
}

/* Additional size tweaks to keep proportions attractive on smaller screens */
@media (max-width: 1024px) {
  /* scale hero headings */
  .hero-left h1 { font-size: 42px; line-height:1.05; }
  .hero-left h2 { font-size: 28px; }

  /* reduce slider height so gallery doesn't get pushed too far down */
  /* increase hero slider on tablets for more presence */
  .hero-slider { height: 360px; }
  .hero-slider img { height: 360px; position: absolute; }

  /* slightly larger gallery images on tablet */
  .gallery-card img { height: 220px; }
}

@media (max-width: 768px) {
  .hero-left h1 { font-size: 32px; }
  .hero-left h2 { font-size: 20px; }
  /* larger slider for small laptops / large tablets */
  .hero-slider { height: 320px; }
  .hero-slider img { height: 320px; }
  .gallery-card img { height: 200px; }
  .gallery-container { padding: 0 14px; }
}

@media (max-width: 480px) {
  /* phones: make text compact and slider compact */
  .hero-left h1 { font-size: 22px; }
  .hero-left h2 { font-size: 16px; }
  .lead { font-size: 0.92rem; }
  /* increased mobile slider for better visuals while remaining compact */
  .hero-slider { height: 240px; }
  .hero-slider img { height: 240px; position: relative; }
  .gallery-card img { height: 160px; }
  .gallery-title { font-size: 24px; }
  .gallery-subtitle { font-size: 14px; }
}

/* Further small-screen fixes to prevent overlap and horizontal overflow */
@media (max-width: 1024px) {
  /* reduce top padding so gallery comes closer */
  .new-hero { padding: 60px 5%; }

  /* center hero text on tablet/phone for better balance */
  .hero-left {
    padding: 0 8px;
    text-align: center;
    width: 100%;
  }

  /* ensure CTA buttons wrap and stay visible */
  .hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

  /* stop continuous sliding animations on small screens to avoid overflow */
  .hero h1, .hero h1 span, .lead { animation: none !important; }
  .lead { white-space: normal !important; overflow: visible !important; }

  /* contain the slider and center it below the hero text */
  .hero-right { width: 100%; display: flex; justify-content: center; }
  .hero-slider { width: 100%; max-width: 820px; margin: 0 auto; height: 280px; }
  .hero-slider img { position: absolute; left: 0; top: 0; width: 100%; height: 280px; }

  /* make sure gallery is full width and near the hero */
  .plans-gallery { padding-top: 18px; margin-top: 8px; }
}

@media (max-width: 768px) {
  .new-hero { padding: 40px 6%; }
  .hero-left h1 { font-size: 28px; }
  .hero-left h2 { font-size: 18px; }
  .hero-slider { height: 220px; }
  .hero-slider img { height: 220px; }
  .gallery-card img { height: 150px; }
}

@media (max-width: 480px) {
  .new-hero { padding: 28px 6%; }
  .hero-left { text-align: center; }
  .hero-left h1 { font-size: 20px; }
  .hero-left h2 { font-size: 15px; }
  .hero-slider { height: 140px; }
  .hero-slider img { height: 140px; }
  .hero-cta { justify-content: center; }
}

/* ------------------------------------------------------------------
   Easy height control for hero slider and gallery cards
   Change the CSS variables below to update heights consistently.
------------------------------------------------------------------ */
:root {
  --hero-slider-height: 300px;
  --gallery1-card-height: 300px;
}

/* Apply the variables (use !important to override any previous fixed values) */
.hero-slider { height: var(--hero-slider-height) !important; }
.hero-slider img { height: var(--hero-slider-height) !important; }
.gallery-card img { height: var(--gallery1-card-height) !important; }

/* Breakpoint-specific variable tweaks */
@media (min-width: 1200px) {
  :root { --hero-slider-height: 350px; --gallery1-card-height: 250px; }
  .plans-gallery { padding: 200px 0; }
}

@media (max-width: 1024px) {
  :root { --hero-slider-height: 360px; --gallery1-card-height: 220px; }
}

@media (max-width: 768px) {
  :root { --hero-slider-height: 320px; --gallery1-card-height: 200px; }
}

@media (max-width: 480px) {
  :root { --hero-slider-height: 300px; --gallery1-card-height: 160px; }
}

/* Ensure grid items stretch to the same height when possible */
.gallery1-grid { align-items: stretch; }


/* Wider-screen gallery boost: extra height and spacing for desktops/large laptops */
@media (min-width: 1200px) {
  .plans-gallery1 { padding: 200px 0; }
  .gallery1-card img { height: 480px; }
  .gallery1-grid { gap: 30px; }
  .gallery1-container { max-width: 1400px; }
}

/* QUOTATION FORM PAGE STYLES */
.form-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #e6eef8;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

.form-wrapper {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.google-form-iframe {
  width: 100%;
  min-height: 1200px;
  border: none;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .form-container {
    margin: 30px auto;
    padding: 20px 15px;
  }
  .form-header h1 {
    font-size: 2rem;
  }
  .form-wrapper {
    padding: 20px;
  }
  .google-form-iframe {
    min-height: 1000px;
  }
}

