/* ==========================================================================
   Kookaburra White Castle System Inc - Premium Standalone Stylesheet
   Asura Hosting Ready • Production Optimized • Mobile-First Responsive
   ========================================================================== */

:root {
  --primary-navy: #0a192f;
  --secondary-navy: #112240;
  --accent-blue: #1e3a8a;
  --accent-gold: #d97706;
  --accent-gold-hover: #b45309;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
}

body {
  padding-bottom: 60px; /* offset for sticky mobile bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-navy);
  color: var(--slate-200);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #34d399;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
}

.top-link, .top-phone-link {
  color: var(--slate-200);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-link:hover, .top-phone-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.top-phone-link {
  font-weight: 700;
  color: #fbbf24;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.logo-badge {
  background: var(--primary-navy);
  color: #fbbf24;
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 1.1rem;
}

.brand-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--slate-900);
}

.brand-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-600);
  font-weight: 500;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.925rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background-color: #fef3c7;
  border: 1px solid #fde68a;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  color: #92400e;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-phone:hover {
  background-color: #fde68a;
  transform: translateY(-1px);
}

.phone-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--slate-800);
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  text-decoration: none;
  color: var(--slate-800);
  font-weight: 600;
  font-size: 1.05rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-100);
}

.mobile-drawer-footer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-phone-mobile {
  background-color: #fef3c7;
  color: #92400e;
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.btn-primary-mobile {
  background-color: var(--accent-gold);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

/* Responsive Navigation Breakpoints */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  .btn-phone {
    display: flex;
  }
  .hamburger-btn {
    display: none;
  }
  .mobile-drawer {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255,255,255,0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #fbbf24;
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.highlight {
  color: #fbbf24;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--slate-200);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-hero-phone {
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s;
}

.btn-hero-phone:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.cta-main-text {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.cta-sub-text {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
}

.btn-hero-secondary {
  background-color: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  background-color: rgba(255,255,255,0.2);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-pill {
  background-color: rgba(255,255,255,0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Hero Form Card */
.hero-form-card {
  background-color: var(--white);
  color: var(--slate-900);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}

.styled-form .form-group {
  margin-bottom: 1rem;
}

.styled-form label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--slate-700);
}

.styled-form input,
.styled-form select,
.styled-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.15);
}

.btn-submit-hero {
  width: 100%;
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 0.75rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit-hero:hover {
  background-color: var(--secondary-navy);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-600);
  text-align: center;
  margin-top: 0.75rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 680px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: #fed7aa;
}

.service-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  font-size: 0.85rem;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.4rem;
}

.service-cta-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
}

.service-cta-link:hover {
  text-decoration: underline;
}

/* Why Choose Us */
.why-section {
  background-color: var(--slate-100);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--slate-200);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
}

/* Service Areas */
.areas-content-box {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 2rem;
}

.areas-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-item {
  background-color: var(--slate-50);
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent-gold);
  font-size: 0.95rem;
}

.areas-cta-banner {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
}

/* Trust Section */
.trust-container-card {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 3rem 2rem;
}

.trust-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.trust-header h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  background-color: rgba(255,255,255,0.06);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--slate-200);
}

/* FAQs */
.faq-section {
  background-color: var(--slate-100);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-left: 1rem;
}

.faq-content {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-lead {
  font-size: 1rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
}

.detail-icon {
  font-size: 1.5rem;
}

.phone-link {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-form-panel .form-container {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-block {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
}

.form-alert {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.success-alert {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Final CTA */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: var(--white);
  padding: 4rem 0;
}

.final-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.final-cta-section p {
  color: var(--slate-200);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-phone-large {
  background-color: var(--accent-gold);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.95rem 1.85rem;
  border-radius: 8px;
  text-decoration: none;
}

.btn-secondary-large {
  background-color: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.95rem 1.85rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Footer */
.site-footer {
  background-color: var(--primary-navy);
  color: var(--slate-200);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--slate-200);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--slate-200);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.social-link-pill {
  background-color: rgba(255,255,255,0.08);
  color: var(--slate-200);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.75rem;
  transition: background-color 0.2s;
}

.social-link-pill:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--slate-400);
}

.disclaimer-text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 0.5rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none;
  }
}

.sticky-btn {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-call {
  background-color: #fef3c7;
  color: #92400e;
}

.sticky-quote {
  background-color: var(--accent-gold);
  color: var(--white);
}
