/* =============================================
   SIESTA KEY CANVAS — style.css
   Bright Coastal-Studio Layout
   ============================================= */

:root {
  --color-teal:       #008080; /* Deep Teal */
  --color-aqua:       #7fcdff; /* Soft Aqua */
  --color-sand:       #f5f5dc; /* Soft Sand */
  --color-driftwood:  #d2b48c; /* Driftwood Beige */
  --color-white:      #ffffff;
  --color-bg:         #fcfcfc;
  --color-text:       #2d3436;
  --color-muted:      #636e72;
  --color-border:     #dfe6e9;
  --font-heading:     'Playfair Display', serif;
  --font-body:        'Inter', sans-serif;
  --radius:           12px;
  --transition:       0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow:           0 15px 35px rgba(0, 128, 128, 0.08);
  --paper-texture:    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 20px; color: var(--color-teal); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 16px; text-align: center; }
p { margin-bottom: 16px; }

/* Sections */
section { padding: 120px 0; position: relative; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.section-header p { color: var(--color-muted); font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-aqua);
  color: var(--color-teal);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 128, 128, 0.2);
}
.btn-outline {
  border-color: var(--color-teal);
  color: var(--color-teal);
}
.btn-outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* Header — Light Coastal */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  transition: all var(--transition);
  padding: 20px 0;
}
header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow);
  background: var(--color-white);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-teal); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--color-text); font-weight: 500; font-size: 0.9rem; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--color-aqua); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-phone { font-weight: 700 !important; color: var(--color-teal) !important; background: var(--color-aqua); padding: 8px 20px; border-radius: 50px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--color-teal); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--color-white);
  z-index: 1100;
  padding: 100px 40px;
  transition: right 0.4s ease;
  box-shadow: var(--shadow);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; padding: 15px 0; font-size: 1.1rem; border-bottom: 1px solid var(--color-border); }

/* Hero — Split Layout */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background-image: var(--paper-texture);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10% 0 15%;
  background: var(--color-white);
  position: relative;
  z-index: 2;
}
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: var(--color-muted); }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-phone { font-size: 1.5rem; font-weight: 700; color: var(--color-teal); display: block; }

.hero-img {
  position: relative;
  z-index: 1;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 10%; left: -50px;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 20px 40px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 128, 128, 0.3);
  z-index: 3;
}

/* About — Coastal Editorial */
#about { background: var(--color-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img::after { content: ''; position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border-top: 5px solid var(--color-aqua); border-left: 5px solid var(--color-aqua); z-index: -1; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.highlight-item { background: var(--color-white); padding: 20px; border-radius: var(--radius); border-bottom: 3px solid var(--color-aqua); }
.highlight-item h4 { font-size: 0.9rem; color: var(--color-teal); margin-bottom: 5px; }
.highlight-item p { margin-bottom: 0; font-size: 0.85rem; }

/* Services — Rounded Coastal Cards */
#services { background-image: var(--paper-texture); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--color-aqua); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--color-teal); }
.service-card .icon { font-size: 2.5rem; margin-bottom: 20px; display: block; color: var(--color-teal); }
.service-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.service-card p { color: var(--color-muted); font-size: 0.95rem; }

/* Why Choose Us — Asymmetrical Grid */
#why { background: var(--color-teal); color: var(--color-white); }
#why h2 { color: var(--color-white); }
.why-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; }
.why-feature { background: rgba(255,255,255,0.1); padding: 60px; border-radius: var(--radius); backdrop-filter: blur(10px); }
.why-feature h3 { font-size: 2rem; color: var(--color-aqua); margin-bottom: 20px; }
.why-tiles { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-tile { background: var(--color-white); color: var(--color-teal); padding: 30px; border-radius: var(--radius); transition: transform 0.3s ease; }
.why-tile:hover { transform: scale(1.03); }
.why-tile h4 { margin-bottom: 10px; }
.why-tile p { margin-bottom: 0; font-size: 0.9rem; opacity: 0.8; }

/* Gallery — Pinterest-inspired */
.gallery-pinterest { columns: 3 300px; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0, 128, 128, 0.4); opacity: 0; transition: 0.3s; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Process — Vertical Wave */
.process-wave { max-width: 800px; margin: 0 auto; position: relative; }
.process-wave::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: var(--color-aqua); transform: translateX(-50%); border-radius: 10px; }
.process-step { display: flex; align-items: center; margin-bottom: 80px; position: relative; }
.process-step:nth-child(even) { flex-direction: row-reverse; }
.step-content { width: 45%; padding: 40px; background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.step-content::after { content: ''; position: absolute; top: 50%; width: 20px; height: 20px; background: var(--color-white); transform: translateY(-50%) rotate(45deg); }
.process-step:nth-child(odd) .step-content::after { right: -10px; }
.process-step:nth-child(even) .step-content::after { left: -10px; }
.step-num { width: 60px; height: 60px; background: var(--color-teal); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; border: 8px solid var(--color-bg); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.review-card { background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.quote-mark { position: absolute; top: 30px; left: 30px; font-size: 4rem; color: var(--color-aqua); opacity: 0.3; font-family: serif; }
.review-card p { font-style: italic; font-size: 1.1rem; position: relative; z-index: 1; }
.review-footer { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.review-avatar { width: 50px; height: 50px; background: var(--color-aqua); color: var(--color-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* Contact — Split Coastal */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.contact-panel { background: var(--color-sand); padding: 60px; border-radius: var(--radius); position: sticky; top: 120px; }
.contact-panel h3 { color: var(--color-teal); margin-bottom: 30px; }
.contact-item { margin-bottom: 30px; }
.contact-item label { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--color-teal); font-weight: 700; margin-bottom: 5px; }
.contact-item p { font-size: 1.1rem; }

.contact-form-card { background: var(--color-white); padding: 60px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid var(--color-border); border-radius: 8px; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1); }
#form-success { display: none; background: #d1fae5; color: #065f46; padding: 25px; border-radius: 8px; text-align: center; margin-bottom: 30px; font-weight: 600; }

/* Map */
.map-container { height: 600px; border-radius: var(--radius); overflow: hidden; position: relative; border: 10px solid var(--color-white); box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-overlay-card { position: absolute; bottom: 40px; left: 40px; background: var(--color-white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 350px; }

/* Footer */
footer { background: var(--color-teal); color: var(--color-white); padding: 100px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 80px; }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; color: var(--color-aqua); }
.footer-col h4 { margin-bottom: 30px; font-size: 1.2rem; color: var(--color-aqua); }
.footer-col a { display: block; margin-bottom: 15px; opacity: 0.7; transition: 0.3s; }
.footer-col a:hover { opacity: 1; color: var(--color-aqua); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; font-size: 0.9rem; opacity: 0.6; }

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero-content { padding: 0 5%; align-items: center; text-align: center; }
  .about-grid, .why-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .process-wave::before { left: 30px; }
  .step-num { left: 30px; }
  .process-step, .process-step:nth-child(even) { flex-direction: row; padding-left: 80px; }
  .step-content { width: 100%; }
  .step-content::after { display: none; }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
