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

/* === GALT PLUMBING - Premium Clean White Design (Emerald/Navy) === */

:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-dark: #020617;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-light: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  --slate: #334155;
  --slate-light: #64748b;
  --slate-lighter: #94a3b8;
  --bg-color: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08);
  --shadow-md: 0 4px 12px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 30px -3px rgb(0 0 0 / 0.1);
  --shadow-hover: 0 20px 40px -5px rgb(0 0 0 / 0.12);
  --shadow-emerald: 0 8px 24px -4px rgb(16 185 129 / 0.3);
}

.gradient-text {
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-size: 16px;
  color: var(--slate);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--emerald); }

h1,h2,h3,h4,h5,h6 {
  font-family: "Outfit", sans-serif;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header-new {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.site-header-new.scrolled { box-shadow: var(--shadow-md); }
.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-family: "Outfit", sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.logo-text .tagline { font-size: 11px; font-weight: 600; color: var(--emerald); letter-spacing: 0.05em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links li a { padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 15px; color: var(--slate); transition: var(--transition); }
.nav-links li a:hover { color: var(--emerald-dark); background: var(--border-light); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone-new {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white) !important;
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 24px -4px rgba(15,23,42,0.3);
  transition: var(--transition);
}
.header-phone-new:hover { background: var(--emerald); color: var(--white) !important; transform: translateY(-1px); }
@keyframes ring {
  0%, 90%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
}
.header-phone-new .hp-icon { font-size: 18px; color: var(--emerald); animation: ring 2s infinite; }
.header-phone-new:hover .hp-icon { color: white; }
.mobile-menu-btn { display: none; background: none; border: 1px solid var(--border); padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 22px; color: var(--navy); transition: var(--transition); }
.mobile-menu-btn:hover { background: var(--border-light); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--gradient-emerald); color: var(--white) !important; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: var(--transition); border: none; cursor: pointer; font-family: "Inter", sans-serif; box-shadow: var(--shadow-emerald); }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 12px 28px -2px rgba(16,185,129,0.5); color: var(--white); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255, 255, 255, 0.1); color: var(--white); padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; border: 2px solid rgba(255, 255, 255, 0.8); transition: var(--transition); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.25); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* LABELS */
.sub-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.1); color: var(--emerald-dark); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid rgba(16,185,129,0.2); }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(15,23,42,0.06); color: var(--navy); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid rgba(15,23,42,0.1); margin-bottom: 16px; }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--slate-light); max-width: 600px; font-size: 17px; }

/* HERO */
.hero-premium { background: var(--gradient-hero); min-height: 100vh; display: flex; align-items: center; padding: 140px 0 100px; position: relative; overflow: hidden; }
.hero-premium::before { content: ""; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-premium-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-premium-text .sub-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); margin-bottom: 24px; }
.hero-premium-text h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; line-height: 1.1; }
.hero-premium-text .description { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.btn-part { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-premium-image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-premium-img { width: 100%; border-radius: var(--radius-xl); box-shadow: 0 30px 80px rgba(0,0,0,0.4); object-fit: cover; aspect-ratio: 4/3; }
.hero-glass-badge { position: absolute; bottom: 24px; left: -30px; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.8); }
.badge-icon { font-size: 32px; color: var(--emerald); }
.badge-text { display: flex; flex-direction: column; }
.bt-title { font-weight: 700; font-size: 16px; color: var(--navy); font-family: "Outfit", sans-serif; }
.bt-sub { font-size: 13px; color: var(--slate-light); }

/* TRUST CARDS */
.trust-cards-wrapper { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); margin: -60px auto 0; position: relative; z-index: 10; border: 1px solid var(--border); overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-card { display: flex; align-items: center; gap: 16px; padding: 28px 24px; border-right: 1px solid var(--border); transition: var(--transition); }
.trust-card:last-child { border-right: none; }
.trust-card:hover { background: var(--bg-color); }
.t-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(15,23,42,0.06); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--navy); flex-shrink: 0; }
.t-content h4 { font-size: 16px; margin-bottom: 2px; font-weight: 700; color: var(--navy); }
.t-content p { font-size: 13px; color: var(--slate-light); margin: 0; }

/* SERVICES */
.rs-services { padding: 100px 0; background: var(--white); }
.services-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-color); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; padding: 32px; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(16,185,129,0.3); background: var(--white); }
.s-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(16,185,129,0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--emerald-dark); margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .s-icon { background: var(--gradient-emerald); color: var(--white); }
.service-card h3 { margin-bottom: 12px; font-size: 20px; }
.service-card p { color: var(--slate-light); font-size: 15px; flex: 1; margin-bottom: 24px; }
.s-link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; font-size: 14px; transition: var(--transition); }
.service-card:hover .s-link { gap: 10px; color: var(--emerald-dark); }

/* WHY US */
.rs-why-us { padding: 100px 0; background: var(--bg-color); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.why-card { padding: 48px 32px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-emerald); transform: scaleX(0); transition: transform 0.3s ease; }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 80px; height: 80px; border-radius: 20px; background: rgba(15,23,42,0.05); display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--navy); margin: 0 auto 24px; transition: var(--transition); }
.why-card:hover .why-icon { background: var(--gradient-emerald); color: var(--white); }
.why-card h3 { font-size: 22px; margin-bottom: 16px; }
.why-card p { color: var(--slate-light); font-size: 16px; }

/* PROCESS */
.rs-process { padding: 100px 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.process-step { text-align: center; padding: 40px 32px; background: var(--bg-color); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); }
.process-step:hover { box-shadow: var(--shadow-md); background: var(--white); }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-emerald); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; font-family: "Outfit", sans-serif; margin: 0 auto 24px; box-shadow: var(--shadow-emerald); }
.process-step h3 { font-size: 22px; margin-bottom: 16px; }
.process-step p { color: var(--slate-light); font-size: 16px; }

/* REVIEWS */
.rs-reviews { padding: 100px 0; background: var(--bg-color); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card { padding: 40px 32px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: 20px; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { color: var(--slate); font-size: 16px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 16px; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-family: "Outfit", sans-serif; font-size: 18px; }
.reviewer-name { font-weight: 700; font-size: 16px; color: var(--navy); }
.reviewer-loc { font-size: 14px; color: var(--slate-light); }

/* FAQ */
.rs-faq { padding: 100px 0; background: var(--white); }
.faq-wrapper { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.acc-item { background: var(--bg-color); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.acc-item.open { border-color: var(--emerald); box-shadow: var(--shadow-md); background: var(--white); }
.acc-question { width: 100%; text-align: left; padding: 24px 32px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 18px; font-weight: 600; color: var(--navy); font-family: "Outfit", sans-serif; transition: var(--transition); }
.acc-question i { font-size: 20px; color: var(--emerald); transition: transform 0.3s; flex-shrink: 0; }
.acc-item.open .acc-question i { transform: rotate(180deg); }
.acc-item.open .acc-question { color: var(--emerald-dark); }
.acc-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-item.open .acc-answer { max-height: 500px; }
.acc-answer p { padding: 0 32px 24px; color: var(--slate-light); font-size: 16px; line-height: 1.7; }

/* CTA BANNER */
.rs-cta { padding: 120px 0; background: var(--gradient-hero); position: relative; overflow: hidden; text-align: center; }
.rs-cta::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); border-radius: 50%; }
.rs-cta h2 { color: var(--white); margin-bottom: 20px; font-size: 40px; }
.rs-cta p { color: rgba(255,255,255,0.85); font-size: 20px; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* BREADCRUMB */
.breadcrumb-bar { background: var(--bg-color); border-bottom: 1px solid var(--border); padding: 14px 0; margin-top: 80px; position: relative; z-index: 100; }
.bc-inner { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--slate-light); }
.bc-inner a { color: var(--slate-light); font-weight: 500; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.bc-inner a:hover { color: var(--navy); }
.bc-sep { color: var(--slate-lighter); margin: 0 4px; }

/* INNER PAGE BANNER */
.page-inner-banner { background: var(--gradient-hero); padding: 100px 0; text-align: center; position: relative; overflow: hidden; margin-top: 0; }
.page-inner-banner::before { content: ""; position: absolute; top: -30%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%); border-radius: 50%; }
.page-inner-banner h1 { color: var(--white); margin-bottom: 20px; font-size: 48px; }
.page-inner-banner p { color: rgba(255,255,255,0.85); font-size: 20px; max-width: 800px; margin: 0 auto; }

/* SERVICE SINGLE LAYOUT */
.service-layout-wrap { padding: 100px 0; background: var(--white); }
.service-layout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.service-content h2 { margin-top: 48px; font-size: 32px; }
.service-content p { font-size: 18px; color: var(--slate); margin-bottom: 24px; line-height: 1.8; }
.service-content ul { list-style: none; padding-left: 0; margin: 32px 0; }
.service-content ul li { margin-bottom: 16px; position: relative; padding-left: 32px; font-size: 18px; color: var(--slate); }
.service-content ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--emerald); font-weight: bold; font-size: 18px; }

.sidebar-cta { background: var(--gradient-hero); color: var(--white); padding: 40px; border-radius: var(--radius-xl); text-align: center; margin-bottom: 32px; }
.sidebar-cta h3 { color: var(--white); margin-bottom: 12px; font-size: 24px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 16px; }
.sidebar-nav { background: var(--bg-color); border: 1px solid var(--border); padding: 32px; border-radius: var(--radius-xl); }
.sidebar-nav h4 { margin-bottom: 20px; font-size: 20px; }
.sidebar-nav ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-nav ul li a { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-radius: 10px; font-weight: 600; font-size: 16px; color: var(--navy); transition: var(--transition); border: 1px solid transparent; }
.sidebar-nav ul li a:hover { background: var(--white); border-color: var(--border); color: var(--emerald-dark); box-shadow: var(--shadow-sm); }
.sidebar-nav ul li a.active { background: var(--white); border-color: var(--emerald); color: var(--emerald-dark); box-shadow: var(--shadow-sm); }

/* FOOTER */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding-top: 80px; position: relative; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { font-size: 26px; font-weight: 800; color: var(--white); font-family: "Outfit", sans-serif; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.footer-brand p { font-size: 16px; line-height: 1.7; max-width: 400px; }
.f-col h4 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.f-col ul { display: flex; flex-direction: column; gap: 12px; }
.f-col ul li a { color: rgba(255,255,255,0.7); font-size: 16px; transition: var(--transition); }
.f-col ul li a:hover { color: var(--emerald); padding-left: 6px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.c-item i { font-size: 24px; color: var(--emerald); }
.c-item p { font-size: 16px; line-height: 1.6; margin: 0; color: rgba(255,255,255,0.9); }
.c-item a { color: rgba(255,255,255,0.9); font-weight: 600; }
.c-item a:hover { color: var(--emerald); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 32px 0; font-size: 15px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 24px; }
.footer-bottom a:hover { color: var(--emerald); }

/* DRAWER */
.mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1998; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.mobile-drawer-overlay.show { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; right: -320px; width: 320px; height: 100%; background: var(--white); z-index: 1999; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.2); }
.mobile-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.close-drawer { background: none; border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; cursor: pointer; font-size: 20px; color: var(--navy); transition: var(--transition); }
.close-drawer:hover { background: var(--bg-color); }
.drawer-links { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 32px 24px; overflow-y: auto; }
.drawer-links a { padding: 16px; border-radius: 12px; font-weight: 600; font-size: 18px; color: var(--navy); transition: var(--transition); border: 1px solid transparent; }
.drawer-links a:hover { background: var(--bg-color); border-color: var(--border); color: var(--emerald-dark); }
.drawer-footer { padding: 32px 24px; border-top: 1px solid var(--border); }

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-emerald);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-emerald);
  z-index: 999;
  transition: var(--transition);
}
.floating-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px -4px rgba(16,185,129,0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trust-grid, .why-grid, .process-steps, .reviews-grid, .services-row { grid-template-columns: repeat(2, 1fr); }
  .trust-card:nth-child(2) { border-right: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-layout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header-phone-new { display: none !important; }
  .hero-premium-container { grid-template-columns: 1fr; text-align: center; }
  .hero-premium-image-wrapper { display: none; }
  .btn-part, .cta-buttons { flex-direction: column; width: 100%; gap: 16px; align-items: stretch; justify-content: center; }
  .btn-part a, .cta-buttons a { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-card { padding: 24px 20px; }
  .services-row, .why-grid, .process-steps, .reviews-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
  .hero-premium { padding: 120px 0 80px; }
  .rs-services, .rs-why-us, .rs-process, .rs-reviews, .rs-faq, .rs-cta, .service-layout-wrap { padding: 80px 0; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-card:last-child { border-bottom: none; }
}

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.about-content h2 { font-size: 36px; margin-bottom: 24px; color: var(--navy); }
.about-content p { font-size: 18px; color: var(--slate); line-height: 1.8; margin-bottom: 24px; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: var(--bg-color); border: 1px solid var(--border); padding: 32px 24px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(16,185,129,0.3); }
.stat-num { display: block; font-size: 36px; font-weight: 800; color: var(--emerald-dark); font-family: 'Outfit', sans-serif; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: var(--slate-light); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 36px; margin-bottom: 24px; color: var(--navy); }
.contact-info p { font-size: 18px; color: var(--slate); line-height: 1.8; }
.contact-form-box { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 48px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px 20px; background: var(--bg-color); border: 1px solid var(--border); border-radius: var(--radius); font-size: 16px; color: var(--navy); transition: var(--transition); font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); background: var(--white); }

/* PAGES RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-inner-banner .container { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 768px) {
  .about-content h2, .contact-info h2 { font-size: 28px; }
  .contact-form-box { padding: 32px 24px; }
  .page-inner-banner h1 { font-size: 40px !important; line-height: 1.15 !important; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}
