/* ============================================
   MAIN STYLESHEET - Raleigh Ice
   Mobile-First Approach
   ============================================ */

/* ==================
   BASE STYLES
   ================== */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--gray-800);
  background-color: var(--white);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

/* Section Spacing */
.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--gray-900);
}

h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-5xl);
  }
  
  h2 {
    font-size: var(--text-4xl);
  }
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
}

/* Links */
a {
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-blue);
}

/* ==================
   HEADER / NAVIGATION
   ================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: var(--z-sticky);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-mobile);
}

@media (min-width: 1024px) {
  .header__container {
    height: var(--header-height-desktop);
  }
}

.header__logo {
  height: 40px;
  width: auto;
}

@media (min-width: 1024px) {
  .header__logo {
    height: 50px;
  }
}

/* Desktop Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--gray-800);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-blue);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-blue);
}

/* Services Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-3);
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.nav__dropdown-link:hover {
  background-color: var(--gray-100);
  color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle__bar {
  width: 25px;
  height: 3px;
  background-color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active .mobile-menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active .mobile-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .mobile-menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  z-index: var(--z-modal);
  padding: var(--space-6);
  overflow-y: auto;
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: var(--text-2xl);
  color: var(--gray-600);
  cursor: pointer;
}

.mobile-menu__list {
  margin-top: var(--space-12);
  list-style: none;
}

.mobile-menu__item {
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu__link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--gray-800);
}

.mobile-menu__link.active {
  color: var(--primary-blue);
}

.mobile-menu__submenu {
  list-style: none;
  padding-left: var(--space-4);
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}

.mobile-menu__submenu-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--gray-600);
}

/* ==================
   BUTTONS
   ================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  border: none;
  font-family: var(--font-body);
  line-height: 1;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Primary Button */
.btn--primary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover:not(:disabled) {
  background-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Secondary Button (Outline) */
.btn--secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn--secondary:hover:not(:disabled) {
  background-color: var(--ice-blue);
  border-color: var(--primary-blue-dark);
}

/* Call/Emergency Button */
.btn--call {
  background-color: var(--warning-orange);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--call:hover:not(:disabled) {
  background-color: #EA580C;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* White Button */
.btn--white {
  background-color: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn--white:hover:not(:disabled) {
  background-color: var(--gray-50);
  transform: translateY(-2px);
}

/* Button Sizes */
.btn--large {
  padding: 18px 40px;
  font-size: var(--text-lg);
}

.btn--small {
  padding: 10px 24px;
  font-size: var(--text-sm);
}

/* Full Width Button */
.btn--full {
  width: 100%;
}

/* Button Icon */
.btn__icon {
  font-size: 1.2em;
}

/* ==================
   HERO SECTION
   ================== */

.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6);
  margin-top: var(--header-height-mobile);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
    margin-top: var(--header-height-desktop);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.65));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__title {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--text-5xl);
  }
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--text-xl);
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Page Hero (Smaller) */
.hero--page {
  height: 300px;
}

/* ==================
   CARDS
   ================== */

.card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

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

.card__icon {
  font-size: 64px;
  color: var(--primary-blue);
  margin-bottom: var(--space-4);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.card__description {
  font-size: var(--text-base);
  color: var(--gray-600);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

/* Location Card */
.card--location {
  border: 2px solid var(--ice-blue-medium);
}

.card--location:hover {
  border-color: var(--primary-blue);
}

.card__location-name {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
}

.card__location-address,
.card__location-hours {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--gray-600);
  margin-bottom: var(--space-2);
}

.card__location-buttons {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* ==================
   GRID LAYOUTS
   ================== */

.grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid {
    gap: var(--space-8);
  }
}

.grid--2 {
  grid-template-columns: 1fr;
}

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

.grid--3 {
  grid-template-columns: 1fr;
}

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

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

/* ==================
   FORMS
   ================== */

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: var(--space-4);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form__label--required::after {
  content: ' *';
  color: var(--error-red);
  font-weight: var(--font-semibold);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: var(--text-base);
  color: var(--gray-800);
  transition: all var(--transition-base);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: var(--error-red);
}

.form__input.success,
.form__select.success,
.form__textarea.success {
  border-color: var(--success-green);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__error {
  display: block;
  font-size: var(--text-sm);
  color: var(--error-red);
  margin-top: var(--space-2);
}

.form__helper {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: var(--space-2);
}

.form__submit {
  margin-top: var(--space-6);
}

/* Form Success Message */
.form__success-message {
  background-color: #D1FAE5;
  border: 2px solid var(--success-green);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.form__success-message h3 {
  color: #065F46;
  margin-bottom: var(--space-3);
}

.form__success-message p {
  color: #047857;
  margin-bottom: 0;
}

/* ==================
   SECTIONS
   ================== */

/* Section Title */
.section__title {
  text-align: center;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .section__title {
    margin-bottom: var(--space-12);
  }
}

/* Background Colors */
.bg-gray {
  background-color: var(--gray-50);
}

.bg-ice-blue {
  background-color: var(--ice-blue);
}

.bg-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
  color: var(--white);
}

.bg-primary p {
  color: rgba(255, 255, 255, 0.9);
}

/* ==================
   CTA BANNER
   ================== */

.cta-banner {
  background-color: var(--primary-blue);
  color: var(--white);
  text-align: center;
  padding: var(--space-12) var(--space-6);
}

.cta-banner__title {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-banner__phone {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-6);
  display: block;
}

/* ==================
   FEATURES / WHY CHOOSE US
   ================== */

.features {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .features {
    flex-direction: row;
    align-items: center;
  }
}

.features__image {
  flex: 1;
  text-align: center;
}

.features__image img {
  max-width: 300px;
  margin: 0 auto;
}

.features__content {
  flex: 1;
}

.features__list {
  list-style: none;
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.features__icon {
  color: var(--success-green);
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

/* ==================
   CALLOUT BOX
   ================== */

.callout {
  background: linear-gradient(135deg, var(--warning-orange), #FBBF24);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: var(--space-8) 0;
}

.callout__icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
}

.callout__title {
  color: var(--white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.callout__text {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

/* ==================
   MAP
   ================== */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .map-container {
    height: 500px;
  }
}

#map {
  width: 100%;
  height: 100%;
}

/* ==================
   FOOTER
   ================== */

.footer {
  background-color: var(--primary-blue-dark);
  color: var(--white);
  padding: var(--space-12) 0 var(--space-6);
}

.footer__content {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

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

.footer__section-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer__logo {
  height: 50px;
  margin-bottom: var(--space-4);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  line-height: var(--leading-relaxed);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-6);
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

/* ==================
   UTILITY CLASSES
   ================== */

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

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden {
  display: none !important;
}

/* Loading Spinner */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
