/* === VARIABLES === */
:root {
  --coral: #FF7043;
  --coral-dark: #E64A19;
  --coral-light: #FFCCBC;
  --coral-bg: #FFF3EE;
  --yellow: #FFD54F;
  --yellow-dark: #FFA000;
  --dark: #2C2C2C;
  --medium: #5A5A5A;
  --light: #909090;
  --bg: #FFF8F4;
  --white: #FFFFFF;
  --border: #F0D9D0;
  --shadow: 0 4px 16px rgba(230, 74, 25, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.09);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--bg); }
h1, h2, h3, h4 { font-family: 'Baloo 2', sans-serif; font-weight: 700; line-height: 1.2; }
.handwritten { font-family: 'Caveat', cursive; font-size: 1.25em; font-weight: 700; }
a { color: var(--coral); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--coral-dark); }
img { max-width: 100%; height: auto; display: block; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: 0 4px 16px rgba(255,112,67,0.35); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(255,112,67,0.45); }
.btn-outline { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--coral); border-color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.btn-white:hover { background: var(--coral-light); border-color: var(--coral-light); color: var(--coral-dark); transform: translateY(-2px); }
.btn-lg { padding: 15px 36px; font-size: 17px; }

/* === NAVBAR === */
.navbar { position: sticky; top: 0; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.07); z-index: 1000; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 40px; height: 40px; background: var(--coral); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 17px; color: var(--dark); }
.nav-logo-sub { font-size: 11px; color: var(--coral); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--medium); font-weight: 600; font-size: 15px; padding: 7px 13px; border-radius: 8px; }
.nav-links a:hover, .nav-links a.active { color: var(--coral); background: var(--coral-bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 16px; color: var(--medium); font-weight: 600; border-radius: 8px; font-size: 16px; }
.mobile-menu a:hover { background: var(--coral-bg); color: var(--coral); }
.mobile-menu .btn { display: flex; width: 100%; justify-content: center; margin-top: 12px; }

/* === HERO === */
.hero { background: linear-gradient(135deg, #FF7043 0%, #FF8A65 45%, #FFD54F 100%); padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -90px; left: -80px; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.hero-paw { position: absolute; opacity: 0.08; user-select: none; pointer-events: none; }
.hero-paw-1 { font-size: 90px; top: 10px; right: 12%; transform: rotate(15deg); }
.hero-paw-2 { font-size: 55px; bottom: 30px; right: 4%; transform: rotate(-20deg); }
.hero-paw-3 { font-size: 65px; top: 55%; left: 4%; transform: rotate(30deg); }
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.22); backdrop-filter: blur(4px); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.28); }
.hero h1 { font-size: clamp(36px, 5vw, 58px); color: #fff; font-weight: 800; margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.hero h1 span { display: block; color: var(--yellow); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.91); margin-bottom: 36px; font-weight: 500; max-width: 510px; line-height: 1.65; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* === TRUST BAR === */
.trust-bar { background: #fff; padding: 26px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--medium); font-size: 14px; }
.trust-item i { color: var(--coral); font-size: 17px; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; background: var(--coral-bg); color: var(--coral); padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--dark); margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--medium); max-width: 540px; margin: 0 auto; }

/* === SERVICES SECTION === */
.services-section { padding: 80px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow-lg); transition: var(--transition); border: 2px solid transparent; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--yellow)); }
.service-card:hover { transform: translateY(-6px); border-color: var(--coral-light); box-shadow: 0 16px 48px rgba(255,112,67,0.18); }
.service-icon { width: 62px; height: 62px; background: var(--coral-bg); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; }
.service-card h3 { font-size: 21px; color: var(--dark); margin-bottom: 11px; }
.service-card p { color: var(--medium); font-size: 15px; margin-bottom: 18px; line-height: 1.65; }
.service-price { display: inline-block; background: var(--coral-bg); color: var(--coral-dark); padding: 4px 12px; border-radius: 50px; font-size: 13px; font-weight: 800; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--coral); font-weight: 700; font-size: 14px; }
.service-link:hover { gap: 10px; }

/* === ABOUT PREVIEW === */
.about-section { padding: 80px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-box { width: 100%; padding-top: 110%; background: linear-gradient(135deg, var(--coral-light) 0%, var(--yellow) 100%); border-radius: var(--radius-xl); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.about-image-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,0.75); text-align: center; padding: 24px; }
.about-image-placeholder .ph-icon { font-size: 56px; }
.about-image-placeholder p { font-size: 14px; font-weight: 700; }
.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--coral); color: #fff; border-radius: var(--radius); padding: 14px 18px; text-align: center; box-shadow: var(--shadow); }
.about-badge .num { font-family: 'Baloo 2', sans-serif; font-size: 30px; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 11px; font-weight: 700; opacity: 0.88; }
.about-content h2 { font-size: clamp(24px, 3vw, 36px); color: var(--dark); margin-bottom: 14px; }
.about-content p { color: var(--medium); font-size: 16px; margin-bottom: 14px; line-height: 1.72; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.highlight-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--dark); font-size: 15px; }
.highlight-icon { width: 36px; height: 36px; background: var(--coral-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--coral); flex-shrink: 0; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 80px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 14px; right: 22px; font-size: 72px; font-family: Georgia, serif; color: var(--coral-light); line-height: 1; }
.stars { color: var(--yellow-dark); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { color: var(--medium); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--coral-light), var(--yellow)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--dark); font-size: 15px; }
.author-loc { font-size: 13px; color: var(--light); }
.reviews-note { text-align: center; margin-top: 20px; font-size: 13px; color: #bbb; font-style: italic; }

/* === SERVICE AREA === */
.area-section { padding: 80px 0; background: linear-gradient(135deg, #FF7043 0%, #FF8A65 55%, #FFD54F 100%); }
.area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.area-content h2 { font-size: clamp(26px, 3.5vw, 40px); color: #fff; margin-bottom: 14px; }
.area-content > p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 30px; line-height: 1.6; }
.area-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-list li { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: 16px; }
.area-list li i { color: var(--yellow); font-size: 14px; }
.area-card { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: var(--radius-xl); padding: 36px 28px; text-align: center; border: 1px solid rgba(255,255,255,0.22); }
.area-card .map-icon { font-size: 60px; margin-bottom: 14px; }
.area-card h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.area-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 22px; }

/* === CTA SECTION === */
.cta-section { padding: 80px 0; background: #fff; }
.cta-box { background: linear-gradient(135deg, var(--bg), var(--coral-bg)); border-radius: var(--radius-xl); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; border: 2px solid var(--coral-light); }
.cta-box::before { content: '🐾'; position: absolute; top: -10px; left: 36px; font-size: 120px; opacity: 0.06; }
.cta-box::after { content: '🐾'; position: absolute; bottom: -20px; right: 36px; font-size: 100px; opacity: 0.06; transform: scaleX(-1); }
.cta-box .section-tag { margin-bottom: 16px; }
.cta-box h2 { font-size: clamp(24px, 3.5vw, 40px); color: var(--dark); margin-bottom: 14px; }
.cta-box p { color: var(--medium); font-size: 17px; max-width: 500px; margin: 0 auto 34px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === FOOTER === */
footer { background: #242424; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo-name { color: #fff; font-size: 20px; }
.footer-brand .nav-logo-sub { color: var(--coral); }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 250px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); }
.social-link:hover { background: var(--coral); color: #fff; }
.footer-col h4 { font-family: 'Baloo 2', sans-serif; font-size: 15px; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500; }
.footer-col ul li a:hover { color: var(--coral); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; }
.footer-contact-item i { color: var(--coral); margin-top: 2px; font-size: 13px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.footer-contact-item a:hover { color: var(--coral); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding-top: 22px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* === PAGE HERO === */
.page-hero { background: linear-gradient(135deg, var(--coral) 0%, #FF8A65 55%, var(--yellow) 100%); padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 520px; margin: 0 auto; }
.breadcrumb { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

/* === SERVICES DETAIL PAGE === */
.service-detail { padding: 80px 0; }
.service-detail:nth-child(even) { background: #fff; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-visual { background: linear-gradient(135deg, var(--coral-light), var(--yellow)); border-radius: var(--radius-xl); padding: 56px 40px; text-align: center; font-size: 90px; box-shadow: var(--shadow-lg); }
.service-detail-content .section-tag { margin-bottom: 14px; }
.service-detail-content h2 { font-size: clamp(24px, 3vw, 34px); color: var(--dark); margin-bottom: 14px; }
.service-detail-content p { color: var(--medium); font-size: 16px; line-height: 1.72; margin-bottom: 14px; }
.service-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 18px 0 24px; }
.service-includes li { display: flex; align-items: center; gap: 9px; color: var(--dark); font-weight: 600; font-size: 15px; }
.service-includes li i { color: var(--coral); font-size: 13px; width: 16px; }
.price-callout { background: var(--coral-bg); border: 2px solid var(--coral-light); border-radius: var(--radius); padding: 16px 20px; display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.price-callout .price { font-family: 'Baloo 2', sans-serif; font-size: 26px; font-weight: 800; color: var(--coral); line-height: 1; }
.price-callout .price-lbl { font-size: 13px; color: var(--medium); font-weight: 600; }

/* === FAQ === */
.faq-section { padding: 80px 0; background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 2px solid transparent; transition: var(--transition); }
.faq-item.open { border-color: var(--coral-light); }
.faq-question { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 700; color: var(--dark); font-size: 16px; gap: 14px; }
.faq-question:hover { color: var(--coral); }
.faq-question i { color: var(--coral); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 18px; color: var(--medium); font-size: 15px; line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }

/* === ABOUT PAGE === */
.about-page { padding: 80px 0; background: #fff; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.about-full-img { position: sticky; top: 86px; }
.about-full-img-box { width: 100%; padding-top: 125%; background: linear-gradient(135deg, var(--coral-light), var(--yellow)); border-radius: var(--radius-xl); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-full-img-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,0.75); text-align: center; padding: 24px; }
.about-img-placeholder .ph-icon { font-size: 72px; }
.about-img-placeholder p { font-size: 14px; font-weight: 700; }
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { font-size: clamp(26px, 3vw, 38px); color: var(--dark); margin-bottom: 22px; }
.about-text p { color: var(--medium); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.value-card { background: var(--bg); border-radius: var(--radius); padding: 20px 18px; text-align: center; border: 2px solid var(--border); transition: var(--transition); }
.value-card:hover { border-color: var(--coral-light); }
.value-card .vc-icon { font-size: 30px; margin-bottom: 9px; }
.value-card h4 { font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--medium); margin: 0; }

/* === CONTACT PAGE === */
.contact-page { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.contact-form-box { background: var(--bg); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form-box h2 { font-size: 26px; color: var(--dark); margin-bottom: 6px; }
.contact-form-box > p { color: var(--medium); font-size: 15px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 13px; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--dark);
  background: #fff; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,112,67,0.1); }
.form-group textarea { height: 118px; resize: vertical; }
.form-submit-note { font-size: 13px; color: var(--light); margin-top: 10px; text-align: center; }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-info-col h2 { font-size: 26px; color: var(--dark); margin-bottom: 0; }
.contact-info-col > p { color: var(--medium); font-size: 15px; margin-top: -4px; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; background: var(--bg); border-radius: var(--radius); padding: 18px; border: 2px solid var(--border); transition: var(--transition); }
.contact-card:hover { border-color: var(--coral-light); }
.contact-card-icon { width: 46px; height: 46px; background: var(--coral-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--coral); font-size: 19px; flex-shrink: 0; }
.contact-card h4 { font-size: 14px; color: var(--dark); margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--medium); margin: 0; font-weight: 600; }
.contact-card a { color: var(--coral); }
.contact-card a:hover { color: var(--coral-dark); }
.hours-box { background: var(--coral-bg); border-radius: var(--radius); padding: 22px; border: 2px solid var(--coral-light); }
.hours-box h4 { font-size: 16px; color: var(--dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; color: var(--dark); }
.hours-row .time { color: var(--medium); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .area-inner, .contact-grid, .about-page-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .about-full-img { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav .btn { display: none; }
  .hamburger { display: flex !important; }
  .nav-links { display: none !important; }
}
@media (max-width: 600px) {
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 72px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .trust-items { gap: 16px; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .values-grid, .area-list, .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-box { padding: 48px 24px; }
}
