/* Kondos Custom Styles */

/* Font Faces */
@font-face {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"),
       url("../fonts/ProximaNova-Regular.woff") format("woff");
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"),
       url("../fonts/ProximaNova-Semibold.woff") format("woff");
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"),
       url("../fonts/ProximaNova-Bold.woff") format("woff");
}

/* CSS Variables */
:root {
  --yellow: #f8d305;
  --yellow-dark: #e0be04;
  --green: #5d9732;
  --green-dark: #4a7a28;
  --dark: #1a1a1a;
  --light: #f1f1f2;
  --white: #ffffff;
  --gray-100: #f7f7f8;
  --gray-200: #e5e5e7;
  --gray-300: #d1d1d3;
  --gray-600: #6b6b6e;
  --gray-700: #4a4a4d;
  --gray-800: #2d2d30;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Proxima Nova", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* Headings with Bebas Neue */
h1, h2, h3, .heading-font {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Sticky Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background-color: rgba(26, 26, 26, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Top Bar */
.top-bar {
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 0;
}
.top-bar a { color: var(--dark); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* Navigation */
.nav-link {
  position: relative;
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--yellow) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown menu */
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26,26,26,0.97);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu-custom {
  display: block;
}
.dropdown-menu-custom a {
  display: block;
  padding: 8px 20px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown-menu-custom a:hover {
  color: var(--yellow);
  background: rgba(255,255,255,0.05);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 1023px) {
  .mobile-menu-btn { display: block; }
  .desktop-nav { display: none !important; }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1.5rem;
  }
  .mobile-nav.open { right: 0; }
  .mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
  }
  .mobile-nav a:hover { color: var(--yellow); }
  .mobile-nav .sub-link {
    padding-left: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
  }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
  }
  .mobile-overlay.open { display: block; }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
}

/* Page Header */
.page-header {
  position: relative;
  padding: 10rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.65) 100%);
}

/* Buttons */
.btn-yellow {
  background: var(--yellow);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--yellow);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(248,211,5,0.4);
}

.btn-green {
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--green);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(93,151,50,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark) !important;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark) !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white) !important;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 1.5rem;
}
.product-card h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.product-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.product-card .card-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card .card-link:hover {
  color: var(--green-dark);
}

/* Stats */
.stat-number {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
}

/* Section Styling */
.section-subtitle {
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 3rem 0;
}
.cta-band-yellow {
  background: var(--yellow);
  color: var(--dark);
  padding: 3rem 0;
}

/* Quote Form */
.quote-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.quote-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 4px;
  display: block;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-family: "Proxima Nova", system-ui, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.site-footer h4 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* FAQ Accordion */
.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--green); }
.faq-icon { transition: transform 0.3s; font-size: 1.2rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Feature icon boxes */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Utility */
.bg-dark-section {
  background: var(--dark);
  color: white;
}
.bg-light-section {
  background: var(--light);
}
.bg-green-section {
  background: var(--green);
  color: white;
}

/* Image hover zoom */
.img-zoom-container {
  overflow: hidden;
  border-radius: 12px;
}
.img-zoom-container img {
  transition: transform 0.5s ease;
}
.img-zoom-container:hover img {
  transform: scale(1.05);
}

/* Map container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section { min-height: 70vh; }
  .stat-number { font-size: 2.5rem; }
  .page-header { padding: 8rem 0 3rem; }
  .hero-video-bg video { display: none; }
  .hero-video-bg {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d30 100%);
  }
  .hero-video-bg::after { display: none; }
}

/* Phone floating CTA */
.phone-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--green);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(93,151,50,0.5);
  text-decoration: none;
  transition: all 0.3s;
}
.phone-float:hover {
  transform: scale(1.1);
  background: var(--green-dark);
}
@media (min-width: 769px) {
  .phone-float { display: none; }
}

/* Cookie notice override */
.cookie-notice { display: none; }
