/* --- VARIABLES (Gold & Light Blue Luxury Theme) --- */
:root {
  /* The core backgrounds are now distinctly Light Blue instead of white */
  --bg-color: #e3effa; /* Solid soft powder blue */
  --surface-color: rgba(227, 239, 250, 0.7); /* Frosted powder blue */
  --surface-border: rgba(185, 209, 234, 0.8); /* Distinct blue border */
  
  --text-main: #2c3a4a; /* Deep navy-grey for better contrast on blue */
  --text-muted: #596b7d;
  
  /* Gold Accents (Remains luxurious) */
  --accent-gold: #cba153; 
  --accent-gold-light: #e6c887;
  --accent-gold-dark: #a88138;
  
  /* Deeper Blue Accents for buttons and icons */
  --accent-blue: #7ba2cc; 
  --accent-blue-light: #cde2f5; 
  --accent-blue-dark: #4a729e; 
  
  --heading-color: #1a2634; /* Very dark blue-black for headings */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BODY (With Main Image Background & Grid) --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }

body { 
  background-color: var(--bg-color); 
  color: var(--text-main); 
  line-height: 1.6; 
  overflow-x: hidden; 
  position: relative;
  z-index: 1;
  
  /* 
     1. Vertical Grid (Slightly darker blue)
     2. Horizontal Grid (Slightly darker blue)
     3. Frosted Light Blue Overlay (Replaces the old white overlay)
     4. Your Main Background Image
  */
  background-image: 
    linear-gradient(rgba(123, 162, 204, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 162, 204, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(227, 239, 250, 0.90), rgba(227, 239, 250, 0.97)),
    url('images/main.jpg');
    
  background-size: 50px 50px, 50px 50px, cover, cover;
  background-position: center, center, center, center;
  background-attachment: fixed;
}

/* Ambient Floating Orbs */
body::before, body::after {
  content: '';
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(120px);
  pointer-events: none;
}

body::before {
  background: rgba(203, 161, 83, 0.15); /* Soft Gold Orb */
  top: -150px;
  left: -150px;
  animation: floatOrb 15s infinite ease-in-out alternate;
}

body::after {
  background: rgba(123, 162, 204, 0.25); /* Noticeable Blue Orb */
  bottom: -150px;
  right: -100px;
  animation: floatOrb 20s infinite ease-in-out alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.1); }
  100% { transform: translate(-40px, 120px) scale(0.95); }
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-weight: 700; color: var(--heading-color); letter-spacing: -0.02em; }
p { color: var(--text-muted); font-size: 1.05rem; }

/* --- BUTTONS --- */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; gap: 8px;
}
.btn-primary { 
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark)); 
  color: white; 
  border: none; 
  box-shadow: 0 8px 20px rgba(203, 161, 83, 0.25);
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 25px rgba(203, 161, 83, 0.4); 
}
.btn-secondary { 
  background: transparent; 
  color: var(--accent-blue-dark); 
  border: 2px solid var(--accent-blue);
}
.btn-secondary:hover { 
  background: var(--accent-blue); 
  color: white; 
}

/* --- FLOATING HEADER (Light Glass) --- */
header {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1100px;
  background: rgba(227, 239, 250, 0.85); /* Frosted blue header */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border); 
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(74, 114, 158, 0.1);
  z-index: 1000; transition: var(--transition);
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px 10px 30px;
}
.logo img { max-height: 45px; display: block; transition: var(--transition); } 

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-item { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.nav-item:hover, .nav-item.active { color: var(--accent-gold); }

/* --- HERO SECTION --- */
.hero { 
  padding: 180px 0 100px; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  background: radial-gradient(circle at 100% 0%, rgba(205, 226, 245, 0.6) 0%, transparent 100%); 
}
.hero-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge {
  display: inline-block; padding: 6px 16px; 
  background: rgba(203, 161, 83, 0.15); /* Gold badge on blue background */
  color: var(--accent-gold-dark); 
  border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 20px;
  border: 1px solid rgba(203, 161, 83, 0.3);
}
.hero-content h1 { font-size: 4.2rem; line-height: 1.1; margin-bottom: 24px; color: var(--heading-color); }
.hero-content h1 span { 
  background: linear-gradient(135deg, var(--accent-gold-dark) 20%, var(--accent-gold) 90%);
  -webkit-background-clip: text;
  background-clip: text; 
  -webkit-text-fill-color: transparent;
  color: transparent; 
}
.hero-content p { font-size: 1.15rem; margin-bottom: 40px; max-width: 90%; }
.hero-actions { display: flex; gap: 16px; }

/* Hero Image & Floating Element */
.hero-visual { position: relative; }
.hero-visual > img { 
  width: 100%; border-radius: 24px; 
  box-shadow: 0 20px 40px rgba(74, 114, 158, 0.15); 
  border: 8px solid var(--accent-blue-light); /* Blue border instead of white */
}
.floating-card {
  position: absolute; bottom: -20px; left: -30px;
  background: #f0f6fc; /* Very light blue solid card */
  border: 1px solid var(--surface-border);
  padding: 20px; border-radius: 16px;
  box-shadow: 0 15px 35px rgba(203, 161, 83, 0.15); 
  display: flex; align-items: center; gap: 16px;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { font-size: 2rem; color: var(--accent-gold); }
.floating-card strong { display: block; color: var(--heading-color); font-size: 1rem; }
.floating-card span { font-size: 0.85rem; color: var(--text-muted); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 60px; max-width: 600px; margin-inline: auto; }
.section-header h2 { font-size: 3.2rem; margin-bottom: 16px; position: relative; display: inline-block; }
.section-header h2::after {
  content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--accent-gold); border-radius: 2px;
}

/* --- ABOUT & STATS --- */
.about { padding: 100px 0; background: var(--surface-color); backdrop-filter: blur(8px); }
.about-wrapper { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 60px; }
.about-text h2 { font-size: 3.2rem; margin-bottom: 20px; }
.about-text p { max-width: 800px; margin: 0 auto; font-size: 1.2rem; }

.stats-grid { 
  display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; 
  background: #f0f6fc; /* Solid light blue instead of white */
  box-shadow: 0 10px 40px rgba(74, 114, 158, 0.1);
  border: 1px solid var(--surface-border);
  padding: 40px 80px;
  border-radius: 24px;
}
.stat-box { text-align: center; }
.stat-box h3 { font-size: 3.5rem; display: inline-block; color: var(--accent-gold-dark); }
.stat-box span { font-size: 3.5rem; font-weight: 700; color: var(--accent-gold-dark); }
.stat-box p { font-size: 1rem; font-weight: 600; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* --- SERVICES (Clean Cards) --- */
.services { padding: 100px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}
.service-card {
  background: rgba(240, 246, 252, 0.95); /* Light blue cards */
  backdrop-filter: blur(10px);
  padding: 40px 32px; border-radius: 20px;
  border: 1px solid var(--surface-border); 
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(74, 114, 158, 0.05);
}
.service-card:hover {
  transform: translateY(-8px); 
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(203, 161, 83, 0.15);
}
.icon-wrapper {
  width: 60px; height: 60px; border-radius: 16px; 
  background: var(--accent-blue-light); 
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .icon-wrapper {
  background: var(--accent-gold); 
}
.icon-wrapper i { font-size: 1.5rem; color: var(--accent-blue-dark); transition: var(--transition); }
.service-card:hover .icon-wrapper i { color: white; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--heading-color); }

/* --- BENTO GALLERY --- */
.gallery { padding: 100px 0; background: var(--surface-color); backdrop-filter: blur(8px); }
.bento-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 20px;
}
.bento-item {
  width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
  border: 4px solid var(--accent-blue-light); /* Blue frames instead of white frames */
  box-shadow: 0 4px 15px rgba(74, 114, 158, 0.1);
  transition: var(--transition); cursor: pointer;
}
.bento-item:hover { transform: scale(1.02); z-index: 2; box-shadow: 0 15px 35px rgba(203, 161, 83, 0.2); border-color: var(--accent-gold-light); }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

/* --- FOOTER --- */
footer { 
  background: #d3e4f5; /* Distinctly blue footer, completely replaces white */
  color: var(--text-main); padding: 80px 0 30px; 
  border-top: 4px solid var(--accent-gold);
}
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; border-bottom: 1px solid var(--surface-border); padding-bottom: 60px; margin-bottom: 30px; }
.footer-brand p { margin-top: 20px; color: var(--text-muted); max-width: 400px; }
.footer-logo { max-height: 45px; } 
.footer-links h4 { color: var(--heading-color); margin-bottom: 24px; font-size: 1.2rem; }
.footer-links p { color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.footer-links i { color: var(--accent-gold); font-size: 1.2rem; }
.footer-links a:hover { color: var(--accent-blue-dark); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* --- ANIMATIONS (Triggered by JS) --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.is-visible { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero-wrapper, .footer-top { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .floating-card { left: 50%; transform: translateX(-50%); bottom: -30px; animation: none; }
  .hero-content h1 { font-size: 3rem; }
  .section-header h2, .about-text h2 { font-size: 2.5rem; }
  .bento-gallery { grid-template-columns: 1fr; }
  .tall, .wide { grid-row: span 1; grid-column: span 1; }
  .nav-links, .btn-primary { display: none; }
  header { border-radius: 20px; background: rgba(227, 239, 250, 0.95); }
}

/* --- CONTACT PAGE STYLES --- */
.contact-page-wrapper {
  padding: 160px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

/* Info Cards Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: rgba(240, 246, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 4px 15px rgba(74, 114, 158, 0.05);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(203, 161, 83, 0.15);
}
.info-card i {
  font-size: 1.8rem;
  color: var(--accent-gold);
  background: var(--accent-blue-light);
  padding: 16px;
  border-radius: 12px;
}
.info-card h6 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-card p, .info-card a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-card a:hover {
  color: var(--accent-blue-dark);
}

/* Form Styling */
.contact-form-container {
  background: rgba(240, 246, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 10px 40px rgba(74, 114, 158, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .form-row.split {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group label span {
  color: #e74c3c;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  background: #ffffff;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(74, 114, 158, 0.05);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(203, 161, 83, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 12px;
  margin-top: 10px;
}

/* --- GALLERY PAGE SPECIFIC STYLES --- */
.sub-hero {
  padding: 160px 0 80px;
  background: radial-gradient(circle at 100% 0%, rgba(205, 226, 245, 0.6) 0%, transparent 100%);
  border-bottom: 1px solid var(--surface-border);
  text-align: center;
}
.gallery-container {
  padding: 60px 24px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.category-title {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin: 60px 0 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.gallery-card {
  background: rgba(240, 246, 252, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(74, 114, 158, 0.05);
  transition: var(--transition);
  text-align: center;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(203, 161, 83, 0.15);
  border-color: var(--accent-gold);
}
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid var(--accent-blue-light);
}
.gallery-card h3 {
  font-size: 1.1rem;
  color: var(--heading-color);
  padding: 20px 15px;
  margin: 0;
}