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

/* ========== CSS VARIABLES ========== */
:root {
  --red: #D0121A;
  --red-dark: #A80E15;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --mid-grey: #888888;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.15);
  --radius-card: 16px;
  --radius-btn: 50px;
  --radius-input: 10px;
  --transition: all 0.3s ease;
  --font: 'Inter', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ========== CONTAINER ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== SECTION HEADINGS ========== */
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--black); text-align: center; margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-underline { width: 60px; height: 4px; background: var(--red); border-radius: 2px; margin: 0 auto 20px; }
.section-subtitle { font-size: 17px; color: var(--mid-grey); text-align: center; max-width: 620px; margin: 0 auto 56px; line-height: 1.7; }
.section { padding: 80px 0; }
.section.bg-grey { background: var(--light-grey); }
.section.bg-dark { background: var(--black); }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: var(--radius-btn); padding: 14px 32px; font-weight: 700; font-size: 15px; font-family: var(--font); transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; }
.btn-primary { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(208,18,26,0.35); }
.btn-secondary { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); border: 2px solid var(--white); }
.btn-white:hover { background: var(--light-grey); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--red); }
.btn .ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-anim 0.6s linear; background: rgba(255,255,255,0.35); pointer-events: none; }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 13px 0; background: transparent; transition: var(--transition); }
.navbar.scrolled { background: var(--black); box-shadow: 0 2px 20px rgba(0,0,0,0.3); padding: 9px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.logo img { transform: scale(0.8); transform-origin: left center; }
.logo-main { font-size: 22px; font-weight: 900; color: var(--red); letter-spacing: 1px; }
.logo-sub { font-size: 11px; font-weight: 600; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { color: var(--white); font-weight: 600; font-size: 14px; padding: 8px 12px; border-radius: 6px; transition: var(--transition); position: relative; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; border-radius: 2px; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--white); border-radius: 12px; box-shadow: var(--shadow-md); min-width: 210px; padding: 8px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu li a { display: block; padding: 10px 16px; color: var(--black); font-size: 14px; font-weight: 500; border-radius: 8px; transition: var(--transition); }
.dropdown-menu li a:hover { background: var(--light-grey); color: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1100; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--black); z-index: 1200; padding: 24px; transition: right 0.35s ease; overflow-y: auto; }
.mobile-drawer.active { right: 0; }
.drawer-close { color: var(--white); font-size: 24px; margin-bottom: 32px; display: block; background: none; border: none; cursor: pointer; }
.drawer-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer-links li a { display: block; color: var(--white); font-weight: 600; padding: 14px 0; font-size: 15px; transition: var(--transition); }
.drawer-links li a:hover { color: var(--red); padding-left: 8px; }
.drawer-section { padding: 14px 0 6px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; }

/* ========== HERO ========== */
.hero { min-height: 100vh; background: var(--black) url('../images/right-hand-drive.jpg') center/cover no-repeat fixed; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,1.0) 0%, rgba(208,18,26,0.78) 100%); z-index: 1; }
.hero-accent { position: absolute; top: -10%; right: -5%; width: 600px; height: 800px; background: linear-gradient(135deg, rgba(208,18,26,0.12) 0%, transparent 60%); transform: rotate(-15deg); z-index: 1; animation: float-accent 8s ease-in-out infinite; }
.hero-accent-2 { position: absolute; bottom: 10%; left: -10%; width: 400px; height: 400px; background: linear-gradient(45deg, rgba(208,18,26,0.08) 0%, transparent 60%); border-radius: 50%; z-index: 1; animation: float-accent 10s ease-in-out infinite reverse; }
@keyframes float-accent { 0%,100% { transform: rotate(-15deg) translateY(0); } 50% { transform: rotate(-15deg) translateY(-20px); } }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 200px; max-width: 820px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-block; background: rgba(208,18,26,0.2); border: 1px solid rgba(208,18,26,0.5); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(40px, 6vw, 74px); font-weight: 900; color: var(--white); margin-bottom: 24px; line-height: 1.05; text-shadow: 0 0 60px rgba(255,255,255,0.125), 0 2px 24px rgba(255,255,255,0.075); }
.hero h1 span { color: var(--red); }
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; width: calc(100% - 48px); max-width: 900px; background: rgba(26,26,26,0.8); backdrop-filter: blur(12px); border-radius: var(--radius-card); border: 1px solid rgba(255,255,255,0.1); padding: 20px 32px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.stat-item { display: flex; flex-direction: column; align-items: center; color: var(--white); text-align: center; }
.stat-icon { font-size: 22px; margin-bottom: 4px; }
.stat-value { font-size: 18px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero { padding: 200px 0 80px; background: var(--black); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(208,18,26,0.35) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; font-weight: 900; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; color: rgba(255,255,255,0.5); font-size: 13px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ========== SERVICE CARDS ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 36px 28px; transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon { font-size: 40px; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--black); }
.service-card p { color: var(--mid-grey); font-size: 15px; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: 14px; margin-top: 20px; transition: var(--transition); }
.service-link:hover { gap: 12px; }

/* ========== WHY CHOOSE US ========== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.benefit-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start; transition: var(--transition); }
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-icon { width: 52px; height: 52px; background: rgba(208,18,26,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.benefit-card h3 { font-size: 17px; margin-bottom: 8px; }
.benefit-card p { color: var(--mid-grey); font-size: 14px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.check-list li::before { content: '✓'; color: var(--white); background: var(--red); border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ========== STATS STRIP ========== */
.stats-strip { background: var(--red); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-block .num { font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-block .label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ========== TEAM CARDS ========== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); text-align: center; display: flex; flex-direction: column; justify-content: space-between; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo { width: 100%; height: 260px; background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.team-info { padding: 28px; }
.team-info h3 { font-size: 20px; margin-bottom: 4px; }
.team-info .role { color: var(--red); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.team-info p { color: var(--mid-grey); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.team-contact { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: 13px; border: 2px solid var(--red); padding: 8px 20px; border-radius: 50px; transition: var(--transition); }
.team-contact:hover { background: var(--red); color: var(--white); }

/* ========== PRICING CARDS ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: stretch; margin: 40px 0; }
@media (max-width: 1200px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { display: flex; flex-direction: column; justify-content: space-between; padding: 32px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); background: white; min-height: 420px; }
.pricing-card.featured { background: #D0121A; color: white; }
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.popular { background: var(--red); color: var(--white); transform: scale(1.05); box-shadow: 0 12px 40px rgba(208,18,26,0.35); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-4px); }
.popular-badge { background: rgba(0,0,0,0.2); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; display: inline-block; margin-bottom: 20px; }
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-card p { color: var(--mid-grey); font-size: 14px; }
.pricing-card.popular h3, .pricing-card.popular p { color: rgba(255,255,255,0.9); }
.price-amount { font-size: 52px; font-weight: 900; line-height: 1; color: var(--red); margin: 16px 0 4px; }
.pricing-card.popular .price-amount { color: var(--white); }
.price-label { font-size: 13px; color: var(--mid-grey); margin-bottom: 24px; }
.pricing-card.popular .price-label { color: rgba(255,255,255,0.7); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-features li::before { content: '✓'; color: var(--white); background: var(--red); border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.pricing-card.popular .pricing-features li::before { background: rgba(255,255,255,0.25); }
.pricing-card.popular .pricing-features li { color: var(--white); }
.pricing-note { font-size: 12px; color: var(--mid-grey); margin-top: 16px; text-align: center; }
.pricing-blog-link { color: #D0121A; font-weight: 700; text-decoration: none; }
.pricing-blog-link:hover { text-decoration: underline; }
.pricing-card.popular .pricing-note { color: rgba(255,255,255,0.6); }

/* ========== REVIEWS CAROUSEL ========== */
.reviews-track { position: relative; }
.review-card { display: none; background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 32px; min-height: 260px; box-sizing: border-box; }
.review-card.active { display: block; animation: reviewFadeIn 0.4s ease; }
@keyframes reviewFadeIn { from { opacity: 0; } to { opacity: 1; } }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: #FFB800; font-size: 20px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: var(--mid-grey); font-size: 15px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #ff6b6b); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-date { font-size: 12px; color: var(--mid-grey); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: var(--transition); border: none; }
.carousel-dot.active { background: var(--red); transform: scale(1.3); }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 18px; cursor: pointer; transition: var(--transition); border: none; }
.carousel-btn:hover { background: var(--red); color: var(--white); }


/* ========== FORM WRAPPER ========== */
.form-wrapper { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 40px; max-width: 900px; margin: 0 auto; }
.form-section { background: var(--light-grey); }
.form-heading { text-align: center; margin-bottom: 36px; }
.form-heading h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 12px; }
.form-heading p { color: var(--mid-grey); font-size: 16px; }

/* ========== GOOGLE MAP ========== */
.map-wrapper { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); height: 450px; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========== CONTACT CARDS ========== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 56px; }
.contact-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 32px 24px; text-align: center; transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon { font-size: 36px; margin-bottom: 16px; }
.contact-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--mid-grey); font-size: 15px; transition: var(--transition); }
.contact-card a:hover { color: var(--red); }

/* ========== ABOUT / STORY ========== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image { background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%); border-radius: var(--radius-card); height: 420px; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.story-content h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 20px; }
.story-content p { color: var(--mid-grey); margin-bottom: 16px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 32px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { color: var(--mid-grey); font-size: 14px; }

/* ========== SERVICES DETAIL ========== */
.service-detail-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); padding: 40px; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; margin-bottom: 28px; transition: var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-detail-icon { font-size: 56px; line-height: 1; }
.service-detail-content h2 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 12px; }
.service-detail-content p { color: var(--mid-grey); margin-bottom: 16px; line-height: 1.8; }

/* ========== AREA PAGES ========== */
.area-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.area-intro-content h2 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 16px; }
.area-intro-content p { color: var(--mid-grey); margin-bottom: 14px; line-height: 1.8; }
.area-services-list { display: flex; flex-direction: column; gap: 16px; }
.area-services-list .service-card { padding: 24px; }
.other-areas { text-align: center; }
.other-areas h3 { font-size: 22px; margin-bottom: 24px; }
.area-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.area-link-btn { display: inline-block; padding: 10px 22px; border: 2px solid var(--red); color: var(--red); border-radius: 50px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.area-link-btn:hover { background: var(--red); color: var(--white); }

/* ========== FAQ ACCORDION ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-question { width: 100%; text-align: left; padding: 20px 0; font-weight: 700; font-size: 16px; color: var(--black); display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: none; border: none; font-family: var(--font); transition: var(--transition); }
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 20px; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer p { padding: 0 0 20px; color: var(--mid-grey); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ========== LEGAL PAGES ========== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; margin: 40px 0 12px; color: var(--black); padding-top: 8px; border-top: 1px solid #eee; }
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 18px; margin: 24px 0 10px; color: var(--black); }
.legal-content p { color: var(--mid-grey); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { color: var(--mid-grey); padding-left: 24px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--red); }
.legal-date { font-size: 13px; color: var(--mid-grey); margin-top: 48px; padding-top: 16px; border-top: 1px solid #eee; }

/* ========== FOOTER ========== */
.footer { background: var(--black); border-top: 3px solid var(--red); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { max-width: 160px; width: 100%; height: auto; object-fit: contain; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.75; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); display: block; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; line-height: 1.5; }
.footer-contact li a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact li a:hover { color: var(--red); }
.footer-bottom { background: rgba(0,0,0,0.35); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red); }

/* ========== BACK TO TOP ========== */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 52px; height: 52px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; box-shadow: 0 4px 20px rgba(208,18,26,0.45); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999; border: none; font-weight: 700; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-4px) !important; }

/* ========== ANIMATIONS ========== */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }

/* ========== CTA SECTION ========== */
.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-section p { color: var(--mid-grey); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .area-intro { grid-template-columns: 1fr; }
  .story-image { height: 300px; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-icon { font-size: 44px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .navbar { padding: 7px 0; }
  .navbar.scrolled { padding: 5px 0; }
  .logo img { max-height: 48px; width: auto; transform: none; }
  .logo-main { font-size: 22px; }
  .logo-sub { font-size: 14px; }
  .section { padding: 50px 0; }
  .hero-stats { flex-wrap: wrap; padding: 16px 20px; bottom: 16px; gap: 12px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-wrapper { padding: 24px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 120px 24px 220px; }
  .hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 100px; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .page-hero { padding: 130px 0 60px; }
}

/* ========== BLOG POST PAGES ========== */
.blog-post-hero { position: relative; padding: 180px 0 80px; text-align: center; background-size: cover; background-position: center; }
.blog-post-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(208,18,26,0.85) 0%, rgba(0,0,0,0.70) 100%); }
.blog-post-hero .container { position: relative; z-index: 1; }
.blog-post-hero .section-label { background: var(--red); color: white; padding: 6px 18px; border-radius: 50px; display: inline-block; margin-bottom: 18px; }
.blog-post-hero h1 { color: white; font-size: 44px; font-weight: 900; line-height: 1.2; max-width: 820px; margin: 0 auto 16px; }
.post-meta { display: flex; gap: 20px; justify-content: center; color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-back-wrapper { max-width: 1200px; margin: 0 auto; padding: 30px 40px 0; }
.blog-back-link { color: var(--red); font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.blog-back-link:hover { text-decoration: underline; }
.blog-post-layout { display: grid; grid-template-columns: 65fr 35fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 30px 40px 80px; align-items: start; }
.blog-post-content h2 { font-size: 26px; font-weight: 700; color: #111; margin: 36px 0 14px; line-height: 1.3; }
.blog-post-content h3 { font-size: 20px; font-weight: 700; color: #111; margin: 28px 0 10px; line-height: 1.3; }
.blog-post-content p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 18px; }
.blog-post-content ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.blog-post-content ul li { font-size: 16px; line-height: 1.8; color: #444; padding: 4px 0 4px 28px; position: relative; }
.blog-post-content ul li::before { content: '✓'; color: var(--red); font-weight: 700; position: absolute; left: 0; }
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; align-self: start; }
.sidebar-widget { background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 24px; }
.sidebar-widget h4 { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 16px; }
.sidebar-related { list-style: none; padding: 0; margin: 0; }
.sidebar-related li { border-bottom: 1px solid #f0f0f0; }
.sidebar-related li:last-child { border-bottom: none; }
.sidebar-related li a { display: block; padding: 10px 0; font-size: 14px; color: #333; font-weight: 500; text-decoration: none; transition: color 0.2s; line-height: 1.4; }
.sidebar-related li a:hover { color: var(--red); }
@media (max-width: 900px) { .blog-post-layout { grid-template-columns: 1fr; padding: 24px 24px 60px; } .blog-sidebar { position: static; } .blog-back-wrapper { padding: 20px 24px 0; } .blog-post-hero h1 { font-size: 32px; } }
@media (max-width: 480px) { .blog-post-hero h1 { font-size: 26px; } .blog-post-layout { padding: 16px 16px 50px; } .blog-back-wrapper { padding: 16px 16px 0; } }

/* ========== BLOG PREVIEW GRID (homepage) ========== */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 40px auto; }
@media (max-width: 1024px) { .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-preview-grid { grid-template-columns: 1fr; } }

/* ========== BLOG GRID ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; background: white; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.blog-card-image { height: 220px; overflow: hidden; flex-shrink: 0; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; min-height: 220px; }
.blog-category-badge { display: inline-block; background: rgba(208,18,26,0.1); color: #D0121A; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; align-self: flex-start; }
.blog-card-meta { display: flex; gap: 12px; font-size: 12px; color: #888; margin-bottom: 10px; flex-wrap: wrap; }
.blog-card-title { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: #555; line-height: 1.6; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { display: inline-block; border: 2px solid #D0121A; color: #D0121A; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; background: transparent; transition: background 0.2s, color 0.2s; align-self: flex-start; }
.blog-card-link:hover { background: #D0121A; color: white; }

/* ========== COOKIE BANNER ========== */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: flex; justify-content: center; pointer-events: none; }
.cookie-inner { background: rgba(26,26,26,0.97); border-radius: 16px 16px 0 0; padding: 24px 28px; max-width: 700px; width: 100%; backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); border-bottom: none; pointer-events: all; }
.cookie-brand { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.cookie-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 18px; }
.cookie-text a { color: var(--red); text-decoration: underline; }
.cookie-text a:hover { color: #ff3b42; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--red); color: #fff; border: none; border-radius: 8px; padding: 11px 28px; font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity 0.2s; font-family: inherit; }
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; padding: 11px 28px; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color 0.2s, color 0.2s; font-family: inherit; }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
@media (max-width: 480px) { .cookie-inner { padding: 20px 16px; } .cookie-buttons { flex-direction: column; } .cookie-btn-accept, .cookie-btn-decline { width: 100%; text-align: center; } }
