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

:root {
  --coral: #ff5e57;
  --coral-dark: #e84e47;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --gray-100: #f8f8f8;
  --gray-200: #eeeeee;
  --gray-400: #999999;
  --gray-600: #666666;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left i {
  color: var(--coral);
}

.top-social {
  display: flex;
  gap: 12px;
}

.top-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background var(--transition);
}

.top-social a:hover {
  background: var(--coral);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--coral);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
}

.header-icon:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--coral);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal-light);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
}

.btn-white:hover {
  background: var(--gray-100);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--charcoal);
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.6));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--coral);
}

.breadcrumb span {
  color: var(--coral);
}

/* Home Hero */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
}

.hero-left {
  background: var(--coral);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-left .container-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  padding-right: 40px;
}

.hero-left h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--coral);
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  z-index: 1;
}

/* Quote Form Overlay */
.quote-form-wrap {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding-bottom: 40px;
}

.quote-form {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 200px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.quote-form-fields {
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.quote-form-fields label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--gray-600);
}

.quote-form-fields input,
.quote-form-fields select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
}

.quote-form-fields input:focus,
.quote-form-fields select:focus {
  outline: none;
  border-color: var(--coral);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-label {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-desc {
  color: var(--gray-600);
  max-width: 600px;
}

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

.text-center .section-desc {
  margin: 0 auto;
}

.bg-gray {
  background: var(--gray-100);
}

.bg-dark {
  background: var(--charcoal);
  color: var(--white);
}

.bg-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-list {
  margin: 24px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.about-list li::before {
  content: "✓";
  color: var(--white);
  background: var(--coral);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  border-radius: var(--radius);
  object-fit: cover;
}

.about-images .img-main {
  grid-row: span 2;
  height: 100%;
  min-height: 400px;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.experience-badge strong {
  color: var(--coral);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-600);
}

/* Service Cards Dark */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 30px 24px 24px;
  position: relative;
}

.service-card-icon {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.service-card p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.service-card .arrow-btn {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}

.service-card .arrow-btn:hover {
  background: var(--coral-dark);
}

/* Tabs Section */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
  padding: 16px 32px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--gray-600);
  position: relative;
  transition: color var(--transition);
}

.tab-btn.active {
  color: var(--coral);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tab-panel img {
  border-radius: var(--radius);
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.tab-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.tab-features .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 94, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 20px;
  flex-shrink: 0;
}

.tab-features h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.tab-features p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

.team-card .img-wrap {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.team-card span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Video CTA */
.video-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.video-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.5));
}

.video-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.video-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 16px;
}

.video-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.play-btn {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--coral);
  cursor: pointer;
  transition: transform var(--transition);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.15);
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card strong {
  display: block;
  font-size: 15px;
}

.testimonial-card span {
  color: var(--gray-400);
  font-size: 13px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
}

.dot.active {
  background: var(--coral);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(255, 94, 87, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .icon {
  font-size: 40px;
  color: var(--coral);
  margin-bottom: 16px;
}

.stat-item strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  color: var(--gray-600);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  background: var(--coral);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.pricing-card.featured .pricing-header {
  background: var(--charcoal);
}

.pricing-header h3 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
}

.pricing-header .price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.pricing-header .price span {
  font-size: 16px;
  font-weight: 400;
}

.pricing-body {
  padding: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--coral);
  font-weight: 700;
}

.pricing-body .btn {
  width: 100%;
  margin-top: 20px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-card .img-wrap {
  position: relative;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--coral);
  color: var(--white);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
}

.blog-card-body {
  padding: 24px;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.4;
}

.blog-card .read-more {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card .read-more:hover {
  text-decoration: underline;
}

/* Pre-footer CTA */
.pre-footer-cta {
  background: var(--coral);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.pre-footer-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pre-footer-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0;
  max-width: 500px;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 20px;
}

.footer-grid p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-links a::before {
  content: "› ";
  color: var(--coral);
}

.footer-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-post img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-post .date {
  color: var(--coral);
  font-size: 12px;
}

.footer-post strong {
  color: var(--white);
  font-size: 13px;
  display: block;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--coral);
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: inherit;
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-bottom {
  background: var(--coral);
  padding: 16px 0;
  text-align: center;
  color: var(--white);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--white);
  margin: 0 12px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Service Page Grid */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-page-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}

.service-page-card:hover {
  transform: translateY(-6px);
}

.service-page-card .num {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
}

.service-page-card .icon {
  width: 60px;
  height: 60px;
  background: var(--coral);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
}

.service-page-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.service-page-card p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.service-page-card .read-more {
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

/* Products */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.sidebar {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: fit-content;
}

.sidebar h3 {
  font-size: 16px;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.sidebar-search {
  display: flex;
  margin-bottom: 30px;
}

.sidebar-search input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: inherit;
}

.sidebar-search button {
  padding: 12px 16px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 14px;
  transition: all var(--transition);
}

.category-list a:hover,
.category-list a.active {
  background: var(--coral);
  color: var(--white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-card-body {
  padding: 20px;
  text-align: center;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.product-card .price {
  color: var(--coral);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.product-card .stars {
  margin-bottom: 12px;
}

.product-card .btn {
  width: 100%;
  padding: 10px;
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  font-weight: 600;
  transition: all var(--transition);
}

.pagination a.active,
.pagination a:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

/* Product Detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-detail img {
  border-radius: var(--radius);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.product-detail .price {
  color: var(--coral);
  font-size: 32px;
  font-weight: 800;
  margin: 16px 0;
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cart-table th,
.cart-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.cart-table th {
  background: var(--gray-100);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.cart-table img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-summary {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 0;
  border-top: 2px solid var(--gray-200);
  margin-top: 16px;
}

/* Forms */
.form-panel {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel-header {
  background: var(--coral);
  color: var(--white);
  padding: 24px 30px;
  margin: -40px -40px 30px;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.form-panel-header::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--coral);
}

.form-panel-header h2 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.form-panel-header p {
  margin: 4px 0 0;
  opacity: 0.9;
  font-size: 13px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

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

.error {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}

.success-msg {
  color: #2e7d32;
  background: #e8f5e9;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--coral);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-info-box {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-info-box .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 94, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--coral);
  font-size: 20px;
}

.contact-info-box h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.contact-info-box p {
  margin: 0;
  color: var(--gray-600);
  font-size: 13px;
}

/* Legal Pages */
.legal-content {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: 2rem;
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 1.3rem;
  color: var(--charcoal);
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Service Detail */
.service-detail-hero {
  margin-bottom: 40px;
}

.service-detail-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-detail-content h2 {
  margin: 24px 0 12px;
}

.service-detail-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}

.service-detail-content li {
  margin-bottom: 8px;
  color: var(--gray-600);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-left .container-inner {
    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-right {
    min-height: 400px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form-fields {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .tab-panel.active,
  .contact-grid,
  .product-detail,
  .two-col {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .team-grid,
  .pricing-grid,
  .blog-grid,
  .services-page-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .products-layout {
    grid-template-columns: 1fr;
  }
}

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

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }

  .header-actions .btn-coral {
    display: none;
  }

  .quote-form-fields {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .team-grid,
  .testimonial-grid,
  .pricing-grid,
  .blog-grid,
  .services-page-grid,
  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

  .video-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .play-btn {
    margin: 0 auto;
  }

  .pre-footer-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .tabs-nav {
    flex-direction: column;
  }

  .pricing-card.featured {
    transform: none;
  }

  .legal-content {
    padding: 30px 20px;
  }
}
