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

:root {
  --primary: #112133;
  --primary-dark: #0a1929;
  --primary-light: #1a3a5e;
  --accent: #4C7BE1;
  --accent-hover: #3a6bd1;
  --accent-cta: #d4a017;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: var(--shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-logo {
  background: white;
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.navbar-logo:hover { opacity: 0.9; }
.navbar-logo img { height: 38px; width: auto; object-fit: contain; }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
  transition: background 0.2s !important;
}
.navbar-cta:hover { background: var(--accent-hover) !important; }

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.navbar-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.navbar-mobile {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.navbar-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.navbar-mobile a:last-child { border-bottom: none; }
.navbar-mobile a:hover { color: white; }
.navbar-mobile.open { display: flex; }

/* ===== PAGE OFFSET ===== */
.page-start { padding-top: 70px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(76,123,225,0.2);
  border: 1px solid rgba(76,123,225,0.4);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}
.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.125rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-white:hover { background: var(--gray-50); }

.btn-dark {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--primary-light); border-color: var(--primary-light); }

.btn-lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--primary); }
.section-gray { background: var(--gray-50); }
.section-white { background: white; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(76,123,225,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; color: var(--accent); }

.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(30,41,59,0.85);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-source { font-size: 0.8rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-900);
  gap: 1rem;
}
.faq-question:hover { background: var(--gray-50); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: white;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(76,123,225,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: #93c5fd; }
.contact-info-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 600; font-size: 1rem; }
.contact-info-value a { color: white; }
.contact-info-value a:hover { color: #93c5fd; }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76,123,225,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check label {
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-check label a { color: var(--accent); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--primary);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(76,123,225,0.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 600px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 320px; }
.footer-title { font-family: 'Manrope', sans-serif; font-weight: 700; color: white; font-size: 0.9rem; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.625rem; font-size: 0.875rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: white; }

/* ===== SERVICES PAGE ===== */
.service-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76,123,225,0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.service-title { font-size: 1.5rem; margin-bottom: 1rem; }
.service-desc { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.service-target {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
}
.service-target svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== BRANDS ===== */
.brand-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.brand-card:hover { box-shadow: var(--shadow-lg); }
.brand-card-header {
  padding: 2rem;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.brand-logo-box {
  width: 64px; height: 64px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}
.brand-card-body { padding: 2rem; }

/* ===== GDPR ===== */
.gdpr-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--primary); }
.gdpr-content h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 0.5rem; color: var(--gray-700); }
.gdpr-content p { color: var(--muted); line-height: 1.75; margin-bottom: 0.875rem; font-size: 0.9375rem; }
.gdpr-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.875rem; }
.gdpr-content th { background: var(--gray-100); font-weight: 600; color: var(--gray-700); text-align: left; padding: 0.75rem 1rem; border: 1px solid var(--border); }
.gdpr-content td { padding: 0.75rem 1rem; border: 1px solid var(--border); color: var(--muted); vertical-align: top; }
.gdpr-content ul { margin-bottom: 0.875rem; }
.gdpr-content ul li { color: var(--muted); font-size: 0.9375rem; padding: 0.25rem 0 0.25rem 1.5rem; position: relative; }
.gdpr-content ul li::before { content: '•'; position: absolute; left: 0.5rem; color: var(--accent); }

/* ===== DAIKIN FEATURES ===== */
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  align-items: flex-start;
}
.feature-icon {
  width: 42px; height: 42px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--accent); }
.feature-title { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.feature-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===== VIDEO EMBED ===== */
.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-900);
  position: relative;
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; }
.video-thumb {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background 0.2s;
}
.video-thumb:hover .video-play { background: rgba(0,0,0,0.55); }
.video-play-btn {
  width: 72px; height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.video-thumb:hover .video-play-btn { transform: scale(1.08); }
.video-play-btn svg { width: 30px; height: 30px; color: var(--accent); margin-left: 4px; }

/* ===== MAP ===== */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: #22c55e; margin: 0 auto 1.25rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--muted); }

/* ===== UTILS ===== */
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-white { color: white; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.font-bold { font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-block-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-block-inner.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .navbar-menu, .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .cta-banner { padding: 3rem 0; }
  .page-hero { padding: 3.5rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero entrance */
.hero-badge   { animation: fadeSlideUp 0.5s ease 0.1s both; }
.hero h1      { animation: fadeSlideUp 0.6s ease 0.2s both; }
.hero-desc    { animation: fadeSlideUp 0.6s ease 0.35s both; }
.hero-buttons { animation: fadeSlideUp 0.6s ease 0.5s both; }
.hero-stats   { animation: fadeSlideUp 0.6s ease 0.65s both; }

/* Scroll-triggered */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

.anim-delay-1 { transition-delay: 0.08s; }
.anim-delay-2 { transition-delay: 0.16s; }
.anim-delay-3 { transition-delay: 0.24s; }
.anim-delay-4 { transition-delay: 0.32s; }

/* Enhanced hover for cards */
.card {
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  box-shadow: 0 16px 40px -8px rgba(17,33,51,0.15);
  border-color: rgba(76,123,225,0.25);
}
.card-icon { transition: background 0.25s ease, transform 0.25s ease; }
.card:hover .card-icon { background: rgba(76,123,225,0.18); transform: scale(1.08); }

/* Button press effect */
.btn { transition: all 0.2s ease; }
.btn:active { transform: scale(0.97); }

/* Gallery hover */
.gallery-item { transition: transform 0.3s ease; }
.gallery-item:hover { transform: scale(1.02); }

/* Testimonial card hover */
.testimonial-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px -6px rgba(17,33,51,0.12);
  transform: translateY(-3px);
}

/* Feature item hover */
.feature-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-item:hover {
  border-color: rgba(76,123,225,0.3);
  box-shadow: 0 4px 16px rgba(76,123,225,0.08);
}

/* Navbar scroll shadow */
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

/* ===== RESPONSIVE TWO-COL INLINE FIXES ===== */
@media (max-width: 768px) {
  /* About page, Brands page, Contact page inline grids */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1.2fr"],
  div[style*="grid-template-columns: 1fr 1.2fr"],
  div[style*="grid-template-columns:1fr 1.4fr"],
  div[style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Services page reverse layout on mobile */
  .service-block-inner { direction: ltr !important; }
  /* Daikin page features grid */
  div[style*="grid-template-columns:1fr 1fr;gap:4rem"] {
    grid-template-columns: 1fr !important;
  }
  /* Stats row */
  .hero-stat-value { font-size: 1.5rem; }
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-notice a { color: #93c5fd; }
.cookie-notice-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--accent-hover); }
.cookie-btn-close {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  font-size: 0.875rem;
  cursor: pointer;
}
.cookie-btn-close:hover { background: rgba(255,255,255,0.15); }
