/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Great+Vibes&family=Lato:wght@400;700&display=swap');

:root {
  --bg: #161616;
  --bg-elevated: #222222;
  --bg-card: #1c1c1c;
  --accent: #C71010;
  --accent-hover: #E51C1C;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --border: #333333;
  --font-logo: 'Great Vibes', cursive;
  --font-heading: 'Cabin', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Base resets and styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin-bottom: 0.5em; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Typography */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; padding: 12px 24px;
  font-family: var(--font-heading); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; text-decoration: none; border: none; cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-large { padding: 16px 32px; font-size: 1.125rem; }
.btn-block { display: flex; width: 100%; }

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-notice p { margin: 0; color: var(--text-muted); font-size: 0.9rem; max-width: 700px; }
.cookie-notice .btn { padding: 10px 22px; font-size: 0.85rem; flex-shrink: 0; }

/* Layout utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(22, 22, 22, 0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); padding: 15px 0;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-logo); font-size: 2.2rem; color: #fff; text-decoration: none; line-height: 1; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.nav { display: none; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: #fff; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.mobile-toggle { display: block; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

@media (min-width: 992px) {
  .nav { display: block; }
  .mobile-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--bg-elevated); z-index: 200; padding: 40px 20px;
  transition: right 0.3s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close { background: none; border: none; color: #fff; font-size: 2.5rem; align-self: flex-end; cursor: pointer; margin-bottom: 30px; line-height: 1; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu-links a { color: #fff; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--accent); }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.overlay.open { opacity: 1; pointer-events: all; }

/* Main Padding */
main { padding-top: 76px; min-height: 100vh; }

/* Hero */
.hero { position: relative; height: calc(100vh - 76px); min-height: 600px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/gallery-01.jpg'); background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 22, 22, 0.95) 0%, rgba(22, 22, 22, 0.7) 50%, rgba(22, 22, 22, 0.3) 100%); }
.hero-content { position: relative; z-index: 10; max-width: 700px; }
.hero-title { font-size: 4rem; margin-bottom: 15px; letter-spacing: -0.5px; }
.hero-tagline { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 40px; font-family: var(--font-heading); }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-overlay { background: linear-gradient(180deg, rgba(22, 22, 22, 0.8) 0%, rgba(22, 22, 22, 0.95) 100%); }
}

/* Cards & Sections */
.card { background: var(--bg-card); padding: 40px 30px; border: 1px solid var(--border); transition: transform 0.3s ease, border-color 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); border-color: var(--accent); }
.card-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.card-title { font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 0.5px; }
.card-body { color: var(--text-muted); flex-grow: 1; font-size: 1.05rem; }

.section-title { text-align: center; font-size: 3rem; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--accent); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 60px; font-size: 0.95rem; }
.section-dark { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Pricing Tables */
.pricing-wrapper { margin-bottom: 60px; }
.pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 15px; }
.pricing-table th, .pricing-table td { padding: 18px 15px; border-bottom: 1px solid var(--border); text-align: left; }
.pricing-table th { font-family: var(--font-heading); color: var(--text); background: var(--bg-card); font-size: 1.1rem; }
.pricing-table td { color: var(--text-muted); font-size: 1.05rem; }
.pricing-table td:last-child, .pricing-table th:last-child { text-align: right; font-weight: 700; color: var(--accent); font-size: 1.2rem; }
.pricing-desc { color: var(--text-muted); font-size: 0.95rem; font-style: italic; border-left: 3px solid var(--accent); padding-left: 15px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(199, 16, 16, 0); transition: background 0.3s ease; }
.gallery-item:hover::after { background: rgba(199, 16, 16, 0.25); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(17, 17, 17, 0.98); z-index: 300; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(5px); }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90%; max-height: 90vh; object-fit: contain; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 30px; right: 40px; font-size: 3rem; color: #fff; cursor: pointer; line-height: 1; font-family: sans-serif; transition: color 0.2s; }
.lightbox-close:hover { color: var(--accent); }

/* Reviews */
.review-card { background: var(--bg-card); padding: 50px 40px; border-top: 4px solid var(--accent); display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.stars { color: #C71010; font-size: 1.5rem; margin-bottom: 25px; letter-spacing: 5px; }
.review-text { font-style: italic; margin-bottom: 30px; color: var(--text); font-size: 1.15rem; line-height: 1.8; flex-grow: 1; }
.review-author { font-family: var(--font-heading); font-weight: 700; color: var(--text-muted); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Form */
.form-container { background: var(--bg-card); padding: 40px; border: 1px solid var(--border); }
.form-group { margin-bottom: 25px; }
.form-label { display: block; margin-bottom: 10px; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); }
.form-control { width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); padding: 15px 18px; color: #fff; font-family: var(--font-body); font-size: 1rem; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C71010%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 18px center; background-size: 14px auto; }
.form-checkbox { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.form-checkbox input { width: 20px; height: 20px; accent-color: var(--accent); cursor: pointer; }
.form-checkbox span { font-size: 1.05rem; }

.summary-box { background: var(--bg-elevated); border: 1px solid var(--accent); padding: 30px; margin-top: 40px; }
.summary-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-muted); }
.summary-total { display: flex; justify-content: space-between; font-size: 1.8rem; font-family: var(--font-heading); font-weight: 700; color: #fff; border-top: 1px solid var(--border); padding-top: 20px; margin-top: 20px; }

/* Contact Map */
.map-container iframe { width: 100%; height: 400px; border: none; filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%); }

/* Contact Info Layout */
.contact-info-list { list-style: none; }
.contact-info-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
.contact-info-list .icon { color: var(--accent); font-size: 1.5rem; margin-top: 2px; font-weight: bold; }
.contact-info-list strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 5px; color: var(--text); }
.contact-info-list p { color: var(--text-muted); }

/* Footer */
.footer { background: #0a0a0a; padding: 80px 0 30px; border-top: 1px solid var(--border); margin-top: 0; }
.footer-grid { display: grid; gap: 50px; grid-template-columns: repeat(1, 1fr); margin-bottom: 60px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { font-family: var(--font-logo); font-size: 3rem; margin-bottom: 25px; display: block; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.footer-heading { font-family: var(--font-heading); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 25px; color: #fff; letter-spacing: 1.5px; }
.footer-text { color: var(--text-muted); margin-bottom: 12px; font-size: 1.05rem; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.95rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Utility */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.gap-4 { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.success-message { display: none; background: rgba(199, 16, 16, 0.05); border: 1px solid var(--accent); padding: 40px; text-align: center; }
.success-icon { font-size: 4rem; color: var(--accent); margin-bottom: 20px; display: block; }
