/*
  MV Insured - Premium Auto Insurance Website
  Modern, Unique Design with Professional Aesthetics
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary-dark: #0f2942;
  --primary-blue: #1e5a8e;
  --accent-teal: #15b8c7;
  --accent-orange: #ff6b35;
  --accent-gold: #ffc947;
  --white: #ffffff;
  --cream: #faf8f5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 20px 48px rgba(0, 0, 0, 0.20);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
  margin: 0 auto 28px;
  border-radius: 10px;
}

.section-subtitle {
  font-size: 19px;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21, 184, 199, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(21, 184, 199, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--accent-teal);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--accent-teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 41, 66, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 41, 66, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1400px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 28px;
  font-size: 15px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-line {
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  padding: 160px 0 120px;
  background: linear-gradient(135deg, #0a1f38 0%, var(--primary-dark) 40%, var(--primary-blue) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(21, 184, 199, 0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.12), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 201, 71, 0.08), transparent 60%);
  z-index: 0;
  opacity: 0.8;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.02) 87.5%, rgba(255, 255, 255, 0.02)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.02) 87.5%, rgba(255, 255, 255, 0.02));
  background-size: 80px 140px;
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  order: 2;
}

.hero-image {
  animation: fadeInRight 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  order: 1;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(21, 184, 199, 0.2);
  color: var(--accent-teal);
  border: 2px solid rgba(21, 184, 199, 0.4);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 21px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.trust-icon {
  color: var(--accent-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 184, 199, 0.15), rgba(255, 107, 53, 0.15));
  mix-blend-mode: overlay;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--gray-700);
  font-weight: 400;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 184, 199, 0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.feature-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 184, 199, 0.05), rgba(255, 107, 53, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--accent-teal);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(21, 184, 199, 0.15), rgba(21, 184, 199, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  color: var(--accent-teal);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-teal), var(--accent-orange));
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-orange);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  color: var(--accent-orange);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
}

.service-detail-content {
  max-width: 960px;
  margin: 0 auto;
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.service-detail-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 36px 0 20px;
  letter-spacing: -0.5px;
}

.service-detail-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.service-detail-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
}

.service-detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 800;
  font-size: 20px;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 2px solid var(--gray-100);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-teal);
}

.faq-icon {
  color: var(--accent-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 32px 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
}

.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.service-area-text p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.service-area-text h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  list-style: none;
  margin-bottom: 28px;
}

.area-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 500;
}

.area-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 22px;
}

.service-area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-area-map iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-icon {
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-item a {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

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

.contact-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
}

.contact-cta {
  margin-top: 44px;
  padding: 28px;
  background: linear-gradient(135deg, var(--cream), var(--gray-50));
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid var(--gray-100);
}

.contact-cta p {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gray-100);
}

.form-group {
  margin-bottom: 26px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.required {
  color: var(--accent-orange);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(21, 184, 199, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.checkbox-group {
  margin-top: 28px;
}

.checkbox-label {
  display: flex;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent-teal);
}

.checkbox-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  font-weight: 400;
}

.error-message {
  display: none;
  color: #dc2626;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group.error .error-message {
  display: block;
}

.form-status {
  display: none;
  padding: 18px;
  border-radius: var(--radius-sm);
  margin-top: 28px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.success-message {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.error-message-form {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #dc2626;
}

.form-status.show {
  display: block;
}

.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1f38 100%);
  color: var(--white);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(21, 184, 199, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.06), transparent 50%);
  opacity: 0.6;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-teal);
  transform: translateX(4px);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-family: var(--font-heading);
}

.floating-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--accent-orange), #ff8556);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  z-index: 999;
  transition: all 0.35s ease;
  animation: pulse 2.5s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.floating-call-btn svg {
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4), 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4), 0 0 0 24px rgba(255, 107, 53, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.showcase-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.showcase-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-image:hover img {
  transform: scale(1.08);
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 41, 66, 0.95), rgba(15, 41, 66, 0.85), transparent);
  padding: 32px 28px 28px;
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.showcase-caption h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.showcase-caption p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.image-showcase-single {
  background: var(--cream);
}

.single-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.single-showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.single-showcase-image:hover {
  transform: scale(1.03);
}

.single-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-showcase-content h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.single-showcase-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-title {
    font-size: 52px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service-area-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .single-showcase {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .image-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu.active {
    max-height: 600px;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .service-area-map iframe {
    height: 380px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .floating-call-btn {
    display: flex;
  }

  .hero-image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
  }

  .showcase-image img {
    height: 280px;
  }

  .single-showcase-content h2 {
    font-size: 32px;
  }

  .single-showcase-content p {
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  .floating-call-btn {
    display: none !important;
  }
}