/* MIS TYRES — Custom Styles (from approved HTML prototype) */

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

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
}

:root {
  --color-primary: #0a0a0a;
  --color-secondary: #00D4FF;
  --color-secondary-dark: #00b0d4;
  --color-secondary-glow: rgba(0, 212, 255, 0.15);
  --color-accent: #f0f4f8;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fb;
  --color-bg-dark: #0a0a0a;
  --color-bg-dark-2: #111318;
  --color-border: #e2e8f0;
  --color-warning: #f5a623;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--color-primary); }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--color-secondary); display: inline-block; margin-bottom: 12px; }
.eyebrow-light { color: var(--color-secondary); }

/* Layout */
.section-full { width: 100%; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section-pad { padding: clamp(72px, 10vw, 120px) 0; }
.section-pad-sm { padding: clamp(48px, 6vw, 80px) 0; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white h2, .text-white h3, .text-white h4 { color: #fff; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 30px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; min-height: 48px; transition: var(--transition); text-align: center; }
.btn-primary { background: var(--color-secondary); color: var(--color-primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.35); background: var(--color-secondary-dark); }
.btn-secondary { background: transparent; border: 2px solid var(--color-secondary); color: var(--color-secondary); }
.btn-secondary:hover { background: var(--color-secondary); color: var(--color-primary); transform: translateY(-2px); }
.btn-dark { background: var(--color-primary); color: #fff; }
.btn-dark:hover { background: #1a1a2e; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-white { background: #fff; color: var(--color-primary); }
.btn-white:hover { background: var(--color-accent); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* Cards */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); overflow: hidden; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* Animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Elementor editor: show all elements */
.elementor-editor-active .reveal { opacity: 1; transform: none; }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 99999; background: var(--color-bg-dark); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; transition: opacity 0.5s ease; }
.preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader img { width: 120px; height: auto; animation: preloaderPulse 1.2s ease-in-out infinite; }
.preloader-spinner { width: 40px; height: 40px; border: 3px solid rgba(0,212,255,0.2); border-top-color: var(--color-secondary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: var(--header-h); display: flex; align-items: center; transition: background 0.3s ease, box-shadow 0.3s ease; }
.header.scrolled { background: var(--color-bg-dark); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header-logo img { height: 46px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { color: #fff; font-size: 0.9rem; font-weight: 500; position: relative; transition: color 0.3s; padding: 4px 0; }
.header-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--color-secondary); transition: width 0.3s ease; }
.header-nav a:hover::after, .header-nav a.active::after, .header-nav a.current-menu-item::after { width: 100%; }
.header-nav a:hover, .header-nav a.active, .header-nav a.current-menu-item { color: var(--color-secondary); }
.header-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; z-index: 10001; }
.hamburger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: var(--transition); }

/* WP nav menu overrides */
.header-nav .menu-item a { color: #fff; font-size: 0.9rem; font-weight: 500; position: relative; transition: color 0.3s; padding: 4px 0; }
.header-nav .menu-item a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--color-secondary); transition: width 0.3s ease; }
.header-nav .current-menu-item a::after { width: 100%; }
.header-nav .current-menu-item a { color: var(--color-secondary); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu nav a { color: #fff; font-size: 1.4rem; font-family: var(--font-heading); font-weight: 600; padding: 14px 20px; transition: color 0.3s; }
.mobile-menu nav a:hover, .mobile-menu nav a.active, .mobile-menu nav .current-menu-item a { color: var(--color-secondary); }
.mobile-menu-close { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; color: #fff; background: rgba(255,255,255,0.15); border-radius: 50%; border: none; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10000; transition: background 0.3s; }
.mobile-menu-close:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* Hero */
.hero { width: 100%; min-height: 92vh; display: flex; align-items: center; background-size: cover; background-position: center; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.3) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: var(--header-h); }
.hero__content { max-width: 680px; }
.hero__content h1 { color: #fff; margin-bottom: 20px; }
.hero__content h1 span { color: var(--color-secondary); }
.hero__content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; max-width: 520px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25); border-radius: 100px; padding: 6px 16px; color: var(--color-secondary); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 20px; }

/* Inner page hero */
.page-hero { width: 100%; min-height: 45vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; position: relative; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 100%); }
.page-hero .container { position: relative; z-index: 1; padding-top: var(--header-h); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.page-hero .breadcrumb a { color: var(--color-secondary); }
.page-hero .breadcrumb span { margin: 0 8px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-icon { width: 48px; height: 48px; background: var(--color-secondary-glow); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--color-secondary); margin-bottom: 16px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--color-text-light); font-size: 0.92rem; }
.service-card-stripe { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: repeating-linear-gradient(135deg, var(--color-secondary) 0px, var(--color-secondary) 8px, transparent 8px, transparent 16px); }

/* Features / Why Us */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item { text-align: center; }
.feature-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--color-secondary-glow); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--color-secondary); }
.feature-item h3 { margin-bottom: 8px; }
.feature-item p { color: var(--color-text-light); font-size: 0.92rem; }

/* Stats */
.stats-section { background: var(--color-bg-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 20px; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: var(--color-secondary); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; }

/* Promo Banner */
.promo-banner { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.promo-banner img { width: 100%; height: auto; display: block; }

/* Pricing */
.pricing-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -20px; padding: 0 20px; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 600px; }
.pricing-table thead th { background: var(--color-primary); color: #fff; padding: 14px 16px; text-align: center; font-weight: 600; font-family: var(--font-heading); white-space: nowrap; }
.pricing-table thead th:first-child { text-align: left; border-radius: var(--radius-sm) 0 0 0; }
.pricing-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.pricing-table tbody td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--color-border); }
.pricing-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--color-primary); }
.pricing-table tbody tr:hover { background: var(--color-secondary-glow); }
.pricing-table tbody tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-sm); }
.pricing-table tbody tr:last-child td:last-child { border-radius: 0 0 var(--radius-sm) 0; }
.pricing-highlight { font-weight: 700; color: var(--color-secondary-dark); }
.pricing-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; padding: 16px 20px; background: var(--color-secondary-glow); border-radius: var(--radius-sm); border-left: 3px solid var(--color-secondary); font-size: 0.88rem; color: var(--color-text); }
.pricing-note i { flex-shrink: 0; color: var(--color-secondary); margin-top: 2px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.testimonial-stars { display: flex; gap: 3px; color: var(--color-warning); margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: var(--color-text-light); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-secondary-glow); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--color-secondary); font-size: 1.1rem; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--color-text-light); }
.testimonial-quote { position: absolute; top: 20px; right: 24px; font-size: 3rem; color: var(--color-secondary-glow); font-family: Georgia, serif; line-height: 1; }

/* CTA Section */
.cta-section { background: var(--color-bg-dark); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); position: relative; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--color-secondary); color: var(--color-primary); padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-family: var(--font-heading); font-size: 0.9rem; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--color-text-light); }
.about-text .highlight { color: var(--color-primary); font-weight: 600; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--color-border); transition: var(--transition); text-align: center; }
.value-card:hover { border-color: var(--color-secondary); box-shadow: var(--shadow); }
.value-card i { color: var(--color-secondary); margin-bottom: 16px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label { position: absolute; bottom: 16px; left: 16px; color: #fff; font-weight: 600; font-size: 0.9rem; z-index: 1; opacity: 0; transform: translateY(8px); transition: var(--transition); }
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 50%; color: #fff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: background 0.3s; }
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 50%; color: #fff; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: background 0.3s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--color-secondary-glow); display: flex; align-items: center; justify-content: center; color: var(--color-secondary); flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-item p, .contact-info-item a { color: var(--color-text-light); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--color-secondary); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link { width: 44px; height: 44px; border-radius: 50%; background: var(--color-secondary-glow); display: flex; align-items: center; justify-content: center; color: var(--color-secondary); transition: var(--transition); }
.social-link:hover { background: var(--color-secondary); color: var(--color-primary); }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--color-primary); }
.form-group input, .form-group textarea { border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 1rem; width: 100%; outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: #fff; color: var(--color-text); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 3px var(--color-secondary-glow); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.custom-select-wrapper { position: relative; }
.custom-select-wrapper select { appearance: none; -webkit-appearance: none; width: 100%; padding: 12px 40px 12px 16px; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--color-text); cursor: pointer; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.custom-select-wrapper::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--color-text); pointer-events: none; }
.custom-select-wrapper select:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 3px var(--color-secondary-glow); }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success i { color: #25D366; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }

/* Map */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 48px; }
.map-wrapper iframe { width: 100%; height: 400px; border: 0; display: block; }

/* Footer */
.footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.75); padding: clamp(48px, 8vw, 80px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { height: 44px; margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-family: var(--font-heading); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover, .footer-links li a:hover { color: var(--color-secondary); }
.footer-links li { list-style: none; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact-item i { color: var(--color-secondary); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--color-secondary); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; }
.footer-bottom-left { color: rgba(255,255,255,0.5); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-bottom-right a:hover { color: var(--color-secondary); }
.anpc-banners { display: flex; gap: 12px; margin-top: 20px; }
.anpc-banners img { height: 36px; width: auto; opacity: 0.7; transition: opacity 0.3s; }
.anpc-banners img:hover { opacity: 1; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 90px; right: 24px; z-index: 998; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.4); animation: waPulse 2.5s ease-in-out infinite; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes waPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* Back to top */
.back-to-top { position: fixed; bottom: 28px; right: 24px; z-index: 997; width: 44px; height: 44px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; box-shadow: var(--shadow); cursor: pointer; border: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--color-bg-dark-2); }

/* Cookie consent */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: #fff; box-shadow: 0 -4px 24px rgba(0,0,0,0.12); padding: 20px 0; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 0.88rem; color: var(--color-text-light); flex: 1; min-width: 280px; }
.cookie-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.cookie-link { font-size: 0.85rem; color: var(--color-secondary-dark); font-weight: 500; white-space: nowrap; }

/* Stripe divider */
.stripe-divider { height: 6px; background: repeating-linear-gradient(135deg, var(--color-secondary) 0px, var(--color-secondary) 12px, transparent 12px, transparent 24px, var(--color-warning) 24px, var(--color-warning) 36px, transparent 36px, transparent 48px); width: 100%; }

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin: 40px 0 16px; color: var(--color-primary); }
.legal-content h3 { margin: 28px 0 12px; font-size: 1.15rem; }
.legal-content p { margin-bottom: 14px; color: var(--color-text-light); font-size: 0.95rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { position: relative; padding-left: 16px; margin-bottom: 8px; color: var(--color-text-light); font-size: 0.95rem; list-style: disc; }

/* WP overrides */
.wp-block-image img { max-width: 100%; height: auto; }
.entry-content { overflow-wrap: break-word; word-wrap: break-word; }
/* Elementor full width */
.elementor-page .entry-content { max-width: none; padding: 0; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { justify-content: center; flex-wrap: wrap; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .about-img img { height: 280px; }
  .pricing-table { font-size: 0.8rem; }
  .pricing-table thead th, .pricing-table tbody td { padding: 10px 8px; }
  .anpc-banners { justify-content: center; }
}
