:root {
  --primary: #CB1A64;
  --secondary: #641B3A;
  --accent: #F570A7;
  --text-dark: #1F2937;
  --text-light: #ffffff;
  --neutral: #F7FAFC;
  --border: #e5e7eb;
  --primary-rgb: 203, 26, 100;
  --accent-rgb: 245, 112, 167;
  --section-dark: #1e1e1e;
  --section-accent: #fef2f2;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 23px;
  line-height: 1.5;
  color: var(--text-dark);
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

h1 {
  font-size: 90px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 45px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 23px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 18px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px;
}

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

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

.grid-3 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: var(--section-dark);
  padding: 45px 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.navbar .logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 62px;
  font-family: Georgia, 'Times New Roman', serif;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
  border-left-color: var(--accent);
  background: rgba(245, 112, 167, 0.1);
}

.mobile-menu-toggle {
  display: none;
  background: var(--section-dark);
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  padding: 12px;
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1100;
  border-radius: 0;
}

main {
  margin-left: 280px;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--section-dark) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: 95px 28px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  z-index: 0;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--text-light);
}

.hero p {
  font-size: 32px;
  margin-bottom: 45px;
  opacity: 0.9;
}

.header-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.content-section {
  padding: 95px 28px;
}

.section-dark {
  background: var(--section-dark);
  color: var(--text-light);
  padding: 95px 28px;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-light);
}

.section-accent {
  background: var(--section-accent);
  padding: 95px 28px;
}

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

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  font-size: 32px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 0;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.card h3 {
  margin-bottom: 18px;
  color: var(--primary);
}

.card p {
  color: #6b7280;
  margin-bottom: 0;
}

.feature {
  text-align: center;
  padding: 45px 28px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: var(--text-light);
}

.testimonial-card {
  background: var(--section-dark);
  color: var(--text-light);
  padding: 45px;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-left: 4px solid var(--accent);
}

.testimonial-card p {
  font-size: 23px;
  margin-bottom: 28px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--accent);
}

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 45px;
  text-align: center;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(203, 26, 100, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--text-light);
}

.price {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  margin: 62px 0;
}

.two-col-layout img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.two-col-layout.reverse {
  direction: rtl;
}

.two-col-layout.reverse > * {
  direction: ltr;
}

.btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 28px 62px;
  font-size: 23px;
}

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

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

label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 18px;
  border: 2px solid var(--border);
  border-radius: 0;
  font-size: 16px;
  font-family: 'Nunito Sans', sans-serif;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

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

.text-muted {
  color: #6b7280;
}

footer.section-dark {
  padding: 95px 28px 45px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 62px;
  margin-bottom: 62px;
}

footer .footer-column h4 {
  color: var(--text-light);
  font-size: 32px;
  margin-bottom: 18px;
  font-weight: 600;
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-column li {
  margin-bottom: 12px;
}

footer .footer-column a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

footer .footer-column a:hover {
  color: var(--accent);
}

footer .footer-copyright {
  text-align: center;
  padding-top: 45px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

[data-animate="slide-left"] {
  transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(30px);
}

[data-animate="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider.flip {
  transform: scaleY(-1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transform: translateY(-8px);
}

.detail-box {
  padding: 28px;
  background: var(--section-accent);
  border-left: 4px solid var(--primary);
  margin-bottom: 28px;
}

.content-panel {
  background: #ffffff;
  padding: 45px;
  border: 2px solid var(--border);
  margin-bottom: 28px;
}

.info-tile {
  display: flex;
  align-items: center;
  padding: 28px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 18px;
}

.action-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.action-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.primary-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text-light);
  padding: 18px 45px;
  border-radius: 0;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}

.primary-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.main-action {
  padding: 28px 62px;
  background: var(--accent);
  color: var(--text-light);
  font-size: 23px;
  font-weight: 700;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.main-action:hover {
  background: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.4);
}

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

.layout-system {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.grid-layout {
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.header-main {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--section-dark), var(--secondary));
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding: 95px 28px;
}

.primary-banner {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 95px 28px;
  min-height: 80vh;
}

.primary-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(var(--primary-rgb),0.6));
}

.intro-section {
  padding: 95px 28px;
  background: var(--section-dark);
  color: var(--text-light);
  text-align: center;
}

.main-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 95px 28px;
}

.content-zone {
  padding: 62px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-block {
  padding: 45px;
  background: #ffffff;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.data-area {
  padding: 45px 28px;
  background: var(--section-accent);
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 32px;
  }

  .navbar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 28px;
  }

  main {
    margin-left: 0;
  }

  .two-col-layout, .main-feature {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero, .content-section, .section-dark, .section-accent {
    padding: 62px 28px;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navbar {
    width: 280px;
    height: 100vh;
    position: fixed;
    left: -280px;
    top: 0;
    transition: left 0.3s ease;
    padding: 95px 28px 28px;
  }

  .navbar.active {
    left: 0;
  }

  main {
    margin-left: 0;
    padding-top: 62px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  .hero p {
    font-size: 23px;
  }

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

  .hero, .content-section, .section-dark, .section-accent {
    padding: 45px 18px;
  }

  .card, .feature, .testimonial-card, .pricing-card {
    padding: 28px;
  }

  .btn-lg {
    padding: 18px 45px;
    font-size: 16px;
  }

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

.gmb-feature {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(30, 60, 114, 0.4);
  padding: 30px 28px;
  margin: 28px 0;
  font-family: 'Georgia', 'Times New Roman', 'Times', serif;
  line-height: 1.6;
}

.gmb-feature h3 {
  margin: 0 0 18px 0;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: white;
}

.gmb-feature > p {
  margin: 0 0 18px 0;
  font-size: 23px;
  opacity: 0.95;
  color: rgba(255,255,255,0.95);
}

.gmb-rating-box {
  margin: 18px 0;
  padding: 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.gmb-rating-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.9;
  color: rgba(255,255,255,0.95);
}

.gmb-rating-bar {
  background: rgba(0,0,0,0.3);
  border-radius: 50px;
  height: 28px;
  overflow: hidden;
  max-width: 240px;
  display: flex;
  align-items: center;
}

.gmb-rating-fill {
  background: #9B59B6;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border-radius: 50px;
}

.gmb-details {
  margin: 18px 0;
  font-size: 23px;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.gmb-details div {
  margin-top: 8px;
}

.gmb-phone-link {
  color: #F570A7;
  text-decoration: none;
  font-weight: 600;
}

.gmb-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gmb-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.gmb-btn-primary {
  background: #9B59B6;
  color: white;
}

.gmb-btn-primary:hover {
  background: #8E44AD;
}

.gmb-btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.gmb-btn-secondary:hover {
  background: rgba(255,255,255,0.3);
}

.blog-preview-section {
  padding: 95px 28px;
}

.card-header {
  margin-bottom: 18px;
}

.card-header h3 {
  margin-bottom: 0;
  color: var(--primary);
}

.rating {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
}

.attribution {
  color: #6b7280;
  font-style: italic;
  margin-top: 12px;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 16px;
  }

  .container {
    padding: 0 18px;
  }

  .hero, .content-section, .section-dark, .section-accent {
    padding: 28px 12px;
  }

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

  .gmb-feature {
    padding: 20px 18px;
  }

  .gmb-feature h3 {
    font-size: 32px;
  }

  .gmb-buttons {
    flex-direction: column;
  }

  .gmb-btn {
    width: 100%;
    text-align: center;
  }
}

.pricing-header {
  margin: 20px 0;
  text-align: center;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.price-label {
  font-size: 16px;
  color: #6b7280;
}

.service-list {
  margin: 20px 0 20px 20px;
  font-size: 16px;
  list-style: disc;
}

.service-list li {
  margin-bottom: 8px;
}

.financing-note {
  margin-top: 15px;
}

.quote-card {
  background: white;
  padding: 45px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 45px auto;
}

.quote-contents {
  margin-top: 30px;
}

.quote-label {
  margin-bottom: 15px;
}

.quote-list {
  margin-left: 20px;
  font-size: 16px;
  list-style: disc;
}

.quote-list li {
  margin-bottom: 8px;
}

.quote-action {
  text-align: center;
  margin-top: 30px;
}

.closing-text {
  margin-top: 20px;
}

.cta-group {
  text-align: center;
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  margin-top: 45px;
}
