/* Import premium typography from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables Design System */
:root {
  /* Color Palette - Tropical Luxury Emerald & Gold */
  --bg-dark: #050c07;
  --bg-dark-rgb: 5, 12, 7;
  --emerald-deep: #0b2e1a;
  --gold-primary: #d4af37;
  --gold-glow: #f3cf65;
  --gold-dark: #aa851d;
  --teal-accent: #1ba098;
  --white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  height: -webkit-fill-available;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Stunning Full-screen Background with Hero Image & Layered Gradients */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('assets/phuket.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: slowZoom 30s infinite alternate ease-in-out;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
    circle at center,
    rgba(var(--bg-dark-rgb), 0.4) 0%,
    rgba(var(--bg-dark-rgb), 0.8) 60%,
    var(--bg-dark) 100-percent
  );
  background: radial-gradient(
    circle at center,
    rgba(var(--bg-dark-rgb), 0.4) 0%,
    rgba(var(--bg-dark-rgb), 0.8) 60%,
    var(--bg-dark) 100%
  );
}

/* Subtle Animated Light Rays */
.light-ray {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 25%;
  height: 120%;
  background: linear-gradient(to bottom, rgba(27, 160, 152, 0.08), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  filter: blur(40px);
  animation: pulseRay 8s infinite alternate ease-in-out;
  z-index: -1;
}

/* Header & Branding */
header {
  padding: 3rem 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  animation: float 4s infinite ease-in-out;
}

.logo-icon i {
  color: var(--bg-dark);
  font-size: 1.25rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--white), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Main Layout - Centered Hero */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  animation: fadeInUp 1s ease-out;
}

h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Business Locations Grid */
.locations-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
  margin-top: 3.5rem;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
}

.location-card {
  background: rgba(11, 46, 26, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(214, 175, 55, 0.18);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(214, 175, 55, 0.1);
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.location-card h3 i {
  color: var(--teal-accent);
}

.location-card p.address {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.location-card p.address strong {
  color: var(--gold-glow);
  font-weight: 600;
}

.location-card p.phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.location-card p.phone i {
  color: var(--gold-primary);
}

.location-card p.phone a {
  color: var(--teal-accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.location-card p.phone a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Footer & Socials */
footer {
  width: 100%;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: translateY(-4px) rotate(8deg);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Animations Keyframes */
@keyframes slowZoom {
  0% { transform: scale(1.02) translate(0px, 0px); }
  50% { transform: scale(1.06) translate(3px, -3px); }
  100% { transform: scale(1.02) translate(0px, 0px); }
}

@keyframes pulseRay {
  0% { opacity: 0.7; transform: rotate(23deg) scale(0.95); }
  100% { opacity: 1; transform: rotate(27deg) scale(1.05); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

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

/* Responsiveness */
@media (max-width: 768px) {
  header {
    padding: 2rem 1.5rem 1rem;
  }
  
  .brand-name {
    font-size: 1.5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .locations-section {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
  
  footer {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 38px;
    height: 38px;
  }
  
  .logo-icon i {
    font-size: 1.1rem;
  }
  
  .brand-name {
    font-size: 1.35rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}
