.elementor-1211 .elementor-element.elementor-element-e52bf6d{--display:flex;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #2B3A9E;
  --navy-dark: #1E2B7A;
  --cyan: #00AEEF;
  --cyan-light: #33C1F5;
  --white: #ffffff;
  --off-white: #F4F8FC;
  --text: #1A1A2E;
  --muted: #6B7A99;
  --border: #DDE6F0;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-cta {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-dark); }

/* ── HERO ── */
.hero {
  margin-top: 64px;
  background-image: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1400&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 30%;
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(27,40,120,0.65) 0%, rgba(43,58,158,0.55) 50%, rgba(0,80,140,0.50) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,174,239,0.15);
  border: 1px solid rgba(0,174,239,0.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 24px;
}
.hero-badge::before { content: '★'; font-size: 0.65rem; }
.hero-logo { margin: 0 auto 28px; position: relative; z-index: 1; }
.hero-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.hero h1 { position: relative; z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--cyan); }
.hero-sub {
  position: relative; z-index: 1;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-cta {
  position: relative; z-index: 1;
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 44px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(0,174,239,0.35);
  margin-bottom: 14px;
  display: block;
  max-width: 320px;
  margin: 0 auto 12px;
}
.hero-cta:hover { background: var(--cyan-light); transform: translateY(-2px); }
.hero-phone { position: relative; z-index: 1;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 12px;
}
.hero-phone a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.hero-stats {
  position: relative; z-index: 1;
  display: flex; justify-content: center; gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat {
  flex: 1; text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 900;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; }

/* ── SECTION BASE ── */
.section { padding: 56px 24px; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  max-width: 480px;
}

/* ── REVIEWS ── */
/* ── REVIEWS ── */
.reviews {
  position: relative; overflow: hidden; padding: 0 !important;
  background-image: url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1600&auto=format&fit=crop&q=80');
  background-size: cover; background-position: center 40%;
}
.reviews::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(240, 246, 255, 0.82);
  z-index: 0;
}
.reviews-inner { position: relative; z-index: 1; padding: 80px 24px; }
/* Carousel */
.carousel-wrap { position: relative; }
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide { min-width: 100%; }
.review-card-single {
  max-width: 820px; margin: 0 auto;
  text-align: center; padding: 0 16px;
  position: relative;
}
.rcs-open-quote {
  font-family: Georgia, serif; font-size: 7rem;
  color: var(--cyan); opacity: 0.35; line-height: 0.6;
  display: block; margin-bottom: 24px; user-select: none;
}
.rcs-text {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.8; color: var(--navy);
  font-style: italic; font-weight: 400;
  margin-bottom: 36px;
}
.rcs-author-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.rcs-divider { width: 32px; height: 1px; background: rgba(43,58,158,0.25); }
.rcs-name {
  font-family: var(--font-head); font-size: 0.9rem;
  font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase;
}
.rcs-service { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.rcs-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 28px; }
.rcs-stars .star { font-size: 0.85rem; color: #F5A623; }
/* Dots */
.carousel-dots {
  display: flex; gap: 10px; justify-content: center; margin-top: 48px;
}
.carousel-dots .carousel-dot {
  width: 8px !important; height: 8px !important;
  min-width: 0 !important; min-height: 0 !important;
  border-radius: 50% !important;
  background: rgba(43,58,158,0.18) !important;
  border: none !important; outline: none !important;
  cursor: pointer; padding: 0 !important;
  transition: all 0.3s;
  display: inline-block !important;
  box-shadow: none !important;
  line-height: 1 !important;
}
.carousel-dots .carousel-dot.active {
  background: var(--navy) !important;
  transform: scale(1.3);
}



/* ── SERVICES ── */
.services { background: #0D1830; }
.services .section-label { color: var(--cyan); }
.services .section-title { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,0.45); margin-bottom: 44px; max-width: 560px; }
div.services-grid,
.services .services-grid,
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 0 !important;
  width: 100% !important;
  float: none !important;
  flex-wrap: nowrap !important;
}
div.services-grid > div,
.services-grid > .service-card {
  width: auto !important;
  float: none !important;
  display: flex !important;
}
@media (max-width: 767px) {
  div.services-grid,
  .services-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  div.services-grid,
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
.services-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 0; }
.service-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex; align-items: flex-end;
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,15,40,0.90) 0%,
    rgba(10,15,40,0.40) 45%,
    rgba(10,15,40,0.05) 100%
  );
  transition: opacity 0.4s;
}
.service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10,15,40,0.80) 0%,
    rgba(0,80,140,0.30) 55%,
    rgba(0,80,140,0.05) 100%
  );
}
/* Premium Unsplash images */
.service-card-bg-1 {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=900&auto=format&fit=crop&q=85');
  background-position: center 30%;
}
.service-card-bg-2 {
  background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=900&auto=format&fit=crop&q=85');
  background-position: center 40%;
}
.service-card-bg-3 {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=900&auto=format&fit=crop&q=85');
  background-position: center 50%;
}
.service-content {
  position: relative; z-index: 1;
  padding: 36px 32px;
  width: 100%;
}
.service-tag {
  display: inline-block;
  background: rgba(0,174,239,0.18);
  border: 1px solid rgba(0,174,239,0.35);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 100px;
  margin-bottom: 12px; display: block; width: fit-content;
}
.service-name {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1.1;
}
.service-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  line-height: 1.65; max-width: 380px;
}
.service-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--cyan);
  font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: gap 0.2s;
}
.service-arrow:hover { gap: 10px; }

/* ── PROCESS ── */
.process { background: #F0F5FF; padding: 72px 24px; }
.process .section-title { color: var(--navy); }
.process .section-label { color: var(--cyan); }
.process-steps {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.process-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  color: var(--cyan); line-height: 1;
  flex-shrink: 0; width: 40px;
  opacity: 0.5;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── CONTACT SECTION ── */
.contact-section {
  background: #EEF4FF;
  padding: 72px 24px;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 48px;
}
.contact-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.1; margin-bottom: 12px;
}
.contact-sub {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; transition: opacity 0.2s;
}
.contact-detail-item:hover { opacity: 0.7; }
.contact-detail-icon {
  width: 36px !important; height: 36px !important; min-width: 36px !important;
  background: var(--white) !important;
  border-radius: 8px !important;
  border: 1px solid var(--border) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  color: var(--navy) !important;
  padding: 0 !important; box-shadow: none !important; flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px !important; height: 16px !important; display: block !important; }
.contact-detail-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail-val { font-size: 0.9rem; color: var(--navy); font-weight: 600; margin-top: 1px; }
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 32px rgba(43,58,158,0.08);
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.68rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  color: var(--text);
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--cyan);
  box-shadow: none;
}
.form-group textarea {
  resize: none;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  padding: 10px 2px;
  background: transparent;
  min-height: 80px;
}
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
}
.form-submit:hover:not(:disabled) { background: var(--cyan); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,174,239,0.25); }

/* Social links */
.social-links { display: flex; gap: 10px; margin-top: 32px; }
.social-link {
  width: 40px !important; height: 40px !important; min-width: 0 !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--border) !important;
  background: var(--white) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.2s;
  color: var(--navy) !important;
  padding: 0 !important; box-shadow: none !important;
}
.social-link:hover { border-color: var(--cyan) !important; color: var(--cyan) !important; transform: translateY(-2px); }
.social-link svg { width: 16px !important; height: 16px !important; display: block !important; }
footer.paintonomy-footer {
  background: var(--navy-dark);
  padding: 28px 24px;
  text-align: center;
  border-top: 3px solid var(--cyan);
  width: 100%;
}
footer.paintonomy-footer img { height: 32px !important; width: auto !important; max-width: 160px !important; filter: brightness(0) invert(1); margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
footer.paintonomy-footer p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
footer.paintonomy-footer a { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ── MOBILE FIXES (max 767px) ── */
@media (max-width: 767px) {
  /* Nav */
  nav { padding: 0 16px; height: 56px; }
  .nav-logo img { height: 30px; }
  .nav-cta { padding: 8px 14px; font-size: 0.72rem; }

  /* Hero */
  .hero { padding: 48px 20px 44px; }
  .hero-logo img { height: 36px; }
  .hero h1 { font-size: 2rem; margin-bottom: 12px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-cta { padding: 14px 28px; font-size: 0.88rem; }
  .hero-phone { font-size: 0.8rem; }
  .hero-stats { gap: 0; margin-top: 32px; padding-top: 24px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.6rem; }

  /* Sections */
  .section { padding: 48px 20px; }
  .section-title { font-size: 1.6rem; }

  /* Reviews */
  .reviews-inner { padding: 56px 20px; }
  .rcs-text { font-size: 1rem; }
  .rcs-open-quote { font-size: 5rem; }

  /* Services */
  .services-grid { gap: 12px; }
  .service-card { min-height: 300px; border-radius: 14px; }
  .service-content { padding: 24px 20px; }
  .service-name { font-size: 1.1rem; }

  /* Process */
  .process { padding: 48px 20px; }
  .process-steps { border-top: 1px solid var(--border); }
  .process-step { padding: 22px 0; gap: 14px; }
  .step-num { font-size: 1.6rem; width: 32px; }

  /* Contact */
  .contact-section { padding: 48px 20px; }
  .contact-inner { gap: 36px; }
  .contact-title { font-size: 1.8rem; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .social-links { margin-top: 24px; }

  /* Footer */
  footer.paintonomy-footer { padding: 24px 20px; }
}

/* ── RESPONSIVE DESKTOP ── */
@media (min-width: 768px) {
  .hero { padding: 80px 48px 72px; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 80px 48px; }
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { min-height: 420px; }
  .process-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .process-step { border-right: none; }
  .contact-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (min-width: 1024px) {
  nav { padding: 0 48px; }
  .hero { padding: 100px 80px 80px; }
  .section { padding: 80px 80px; max-width: 1200px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { min-height: 480px; }
  .contact-section { padding: 80px 80px; }
}
/* ID-level override for services grid - highest specificity */
#services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
@media (max-width: 767px) { #services-grid { grid-template-columns: 1fr !important; } }
@media (min-width: 768px) and (max-width: 1023px) { #services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }

/* Hide WordPress theme header on this page */
.site-header,
header.site-header,
#masthead,
.header-main,
.main-navigation,
#site-navigation,
.wp-block-template-part[class*="header"] {
  display: none !important;
}/* End custom CSS */