:root {
  --primary-color: #0b3d91; /* Deep Florida blue */
  --secondary-color: #f4a261; /* Warm sun accent */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --border-color: #dddddd;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background-color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary-color); transition: var(--transition); }
a:hover { color: var(--secondary-color); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.hidden { display: none !important; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; color: var(--primary-color); }
.lead { font-size: 1.25rem; font-weight: 600; color: #555; }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; font-family: var(--font-heading); font-weight: 600; border-radius: 4px; text-align: center; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background-color: var(--primary-color); color: var(--text-light); }
.btn-primary:hover { background-color: #082d6b; color: var(--text-light); transform: translateY(-2px); }
.btn-large { padding: 16px 32px; font-size: 1.2rem; }
.btn-block { display: block; width: 100%; }

/* Header */
.site-header { background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; }
.logo { max-height: 60px; }

.main-nav { display: flex; align-items: center; gap: 20px; }
.nav-list { display: flex; align-items: center; gap: 20px; }
.nav-list a { color: var(--text-dark); font-weight: 600; padding: 10px 0; display: block; }
.nav-list a:hover { color: var(--primary-color); }

.dropdown { position: relative; }
.submenu { position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: var(--transition); transform: translateY(10px); z-index: 100; border-top: 3px solid var(--primary-color); }
.dropdown:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { padding: 10px 15px; border-bottom: 1px solid #eee; font-weight: 400; }
.submenu li a:hover { background: var(--bg-light); padding-left: 20px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 24px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 100%; height: 3px; background: var(--text-dark); position: absolute; transition: var(--transition); }
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; bottom: -8px; }

/* Hero */
.hero { background-size: cover; background-position: center; color: var(--text-light); text-align: center; padding: 100px 20px; min-height: 500px; display: flex; align-items: center; }
.hero h1 { color: var(--text-light); font-size: 3rem; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-sub { font-size: 1.5rem; margin-bottom: 30px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }

/* Page Header */
.page-header { background-color: var(--primary-color); color: white; padding: 60px 0 40px; text-align: center; }
.page-header h1 { color: white; margin: 0; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Cards & Features */
.prop-card { background: var(--bg-light); padding: 30px; border-radius: 8px; border-top: 4px solid var(--primary-color); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.feature-tile { display: block; position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.feature-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-tile:hover img { transform: scale(1.05); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; align-items: flex-end; padding: 20px; }
.tile-overlay span { color: white; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; }

.service-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: var(--transition); text-align: center; display: block; color: var(--text-dark); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card h3 { padding: 20px; margin: 0; font-size: 1.25rem; color: var(--text-dark); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); }
.lightbox-content { margin: auto; display: block; max-width: 90%; max-height: 90vh; position: relative; top: 50%; transform: translateY(-50%); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; z-index: 2001; }
.lightbox-close:hover { color: #ccc; }

/* Forms */
.custom-form { background: var(--bg-light); padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-family: var(--font-body); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(11,61,145,0.2); }
.form-message { margin-top: 15px; padding: 15px; border-radius: 4px; font-weight: 600; text-align: center; }
.form-message.success { background-color: #d4edda; color: #155724; }
.form-message.error { background-color: #f8d7da; color: #721c24; }

/* Footer */
.site-footer { background-color: #1a1a1a; color: #fff; padding: 60px 0 20px; }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h3 { color: #fff; border-bottom: 2px solid var(--secondary-color); padding-bottom: 10px; display: inline-block; }
.footer-col a { color: #ccc; }
.footer-col a:hover { color: var(--secondary-color); }
.bbb-logo { max-width: 150px; margin: 10px 0; background: white; padding: 5px; border-radius: 4px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; color: #888; }

/* Responsive */
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col h3 { display: inline-block; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.1); display: none; }
  .main-nav.active { display: flex; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-list li { width: 100%; border-bottom: 1px solid #eee; }
  .submenu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; border-left: 2px solid var(--primary-color); margin-left: 10px; border-top: none; }
  .dropdown.active .submenu { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .header-cta { margin-top: 10px; width: 100%; }
}

/* Footer CTA */
.footer-cta { border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 40px; }
.footer-cta-text { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 15px; }

/* Captcha & honeypot */
.captcha-group input { max-width: 200px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
