/* =====================================================================
   Elite Home Health Care — Figma-matched Stylesheet
   Brand pink: #d11f5d  ·  Faint pink bg: #fff3f7  ·  Card bg: #f4f4f4
   Footer black: #000  ·  Social tile bg: #2f2f2f  ·  Body text: #000
   Body font: Poppins (300/400/500/600/700)
   ===================================================================== */

:root {
    --pink: #d11f5d;
    --pink-glow: rgba(209, 31, 93, 0.5);
    --pink-bg: #fff3f7;
    --card-bg: #f4f4f4;
    --black: #000;
    --grey-tile: #2f2f2f;
    --border: #c8c8c8;
    --text-dark: #272727;
    --shadow-card: 0 4px 53.5px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    font-weight: 600;
    margin: 0;
}

a { color: var(--pink); text-decoration: none; transition: all 0.25s ease; }
a:hover { color: #a01749; }

img { max-width: 100%; height: auto; display: block; }

/* ====================  TOP BAR  ==================== */
.top-bar {
    background: var(--pink);
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.top-bar .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: #ffd9e7; }
.top-bar .contact-block { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.top-bar .contact-block span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.top-bar .contact-block i { font-size: 16px; }
.top-bar .social-block { display: flex; gap: 22px; align-items: center; }
.top-bar .social-block a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 4px;
    font-size: 16px;
}
.top-bar .social-block a:hover { background: rgba(255,255,255,0.2); }

/* ====================  MAIN NAV  ==================== */
.main-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid #e7e7e7;
    height: 92px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav .nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.main-nav .logo {
    height: 53px;
    width: auto;
    flex-shrink: 0;
}
.main-nav .nav-menu {
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}
.main-nav .nav-menu li a {
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
    padding: 10px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
}
.main-nav .nav-menu li a:hover,
.main-nav .nav-menu li a.active {
    color: var(--pink);
}
.main-nav .nav-menu li.dropdown { position: relative; }
.main-nav .nav-menu li.dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 4px;
}
.main-nav .nav-menu li.dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid var(--pink);
    border-radius: 0 0 10px 10px;
    min-width: 260px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
    margin: 0;
    z-index: 100;
}
.main-nav .nav-menu li.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .nav-menu li.dropdown .submenu li a {
    display: block;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.main-nav .nav-menu li.dropdown .submenu li a:hover {
    background: var(--pink-bg);
    color: var(--pink);
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
    color: var(--pink);
    margin-left: auto;
    cursor: pointer;
}

/* ====================  HOME PAGE HERO  ==================== */
.hero {
    padding: 70px 0 60px;
    background: #fff;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 35px;
    max-width: 550px;
}
.btn-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    color: #fff;
    border: 0;
    padding: 18px 50px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    font-family: inherit;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    cursor: pointer;
    box-shadow: 0 0 12px var(--pink-glow);
    transition: all 0.25s ease;
}
.btn-pink:hover {
    background: #a01749;
    color: #fff;
    box-shadow: 0 0 20px var(--pink-glow);
    transform: translateY(-2px);
}
.btn-pink.btn-sm { padding: 13px 36px; font-size: 16px; }

.hero-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
    height: 600px;
}
.hero-collage .img-tall {
    grid-row: span 2;
    border-radius: 30px;
    overflow: hidden;
    background: #d9d9d9;
}
.hero-collage .img-tall img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .img-box {
    border-radius: 30px;
    overflow: hidden;
    background: #d9d9d9;
}
.hero-collage .img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ====================  ABOUT US (home page section)  ==================== */
.about-section { padding: 60px 0 80px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    border-radius: 22px;
    overflow: hidden;
    height: 420px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.about-section p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--black);
    margin-bottom: 35px;
}

/* ====================  OUR SERVICES (home page grid)  ==================== */
.services-grid-section { padding: 30px 0 80px; }
.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: -1px;
}
.svc-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}
.svc-grid .svc {
    border-radius: 30px;
    overflow: hidden;
    background: #f6f6f6;
    position: relative;
}
.svc-grid .svc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.svc-grid .svc:hover img { transform: scale(1.05); }

.svc-grid .svc-1 { grid-column: span 6; height: 480px; }
.svc-grid .svc-2 { grid-column: span 4; height: 230px; }
.svc-grid .svc-3 { grid-column: span 2; height: 230px; grid-row: span 2; }
.svc-grid .svc-4 { grid-column: span 4; height: 230px; }
.svc-grid .svc-5 { grid-column: span 4; height: 210px; }
.svc-grid .svc-6 { grid-column: span 4; height: 210px; }
.svc-grid .svc-7 { grid-column: span 4; height: 210px; }

/* ====================  COUNTERS (stats strip)  ==================== */
.stats {
    background: var(--card-bg);
    padding: 50px 0;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stats-grid .stat-number {
    font-family: 'Lexend Exa', 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    color: var(--black);
    letter-spacing: -4px;
    margin-bottom: 12px;
}
.stats-grid .stat-label {
    font-size: 22px;
    color: var(--black);
    letter-spacing: -0.5px;
}

/* ====================  TESTIMONIALS (video card)  ==================== */
.testimonial-section {
    text-align: center;
    padding: 60px 0;
}
.testimonial-section h2 {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -1px;
}
.video-card {
    border-radius: 47px;
    overflow: hidden;
    position: relative;
    height: 580px;
    background: #d9d9d9;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}
.video-card .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    border: 0;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(209,31,93,0.7);
    animation: pulse 2s infinite;
    padding-left: 6px;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(209,31,93,0.7); }
    70% { box-shadow: 0 0 0 25px rgba(209,31,93,0); }
    100% { box-shadow: 0 0 0 0 rgba(209,31,93,0); }
}

/* ====================  FAQ ACCORDION  ==================== */
.faq-section {
    text-align: center;
    padding: 50px 0 80px;
}
.faq-section h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -1px;
    line-height: 1.2;
}
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
}
.faq-question {
    width: 100%;
    background: none;
    border: 0;
    padding: 25px 70px 25px 35px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    position: relative;
    letter-spacing: -0.5px;
}
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 35px;
    font-size: 17px;
    color: var(--black);
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}

/* ====================  FOOTER  ==================== */
.footer {
    background: var(--black);
    color: #fff;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.2fr 1.4fr;
    gap: 40px;
}
.footer-logo img { max-height: 90px; background: #fff; padding: 6px 10px; border-radius: 10px; }
.footer-grid p {
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
    margin: 18px 0 0;
    opacity: 0.9;
}
.footer h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 8px 0; }
.footer ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}
.footer ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--pink);
    font-size: 13px;
}
.footer ul li a:hover { color: var(--pink); }

.footer-info-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
}
.footer-info-line i {
    color: var(--pink);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-info-line a { color: #fff; }
.footer-info-line a:hover { color: var(--pink); }

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.footer-socials a {
    width: 44px;
    height: 44px;
    background: var(--grey-tile);
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s;
}
.footer-socials a:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-3px);
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 10px;
    filter: grayscale(0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #fff;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: var(--pink); }

/* ====================  WHATSAPP FLOATING BUTTON  ==================== */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s;
}
.float-whatsapp:hover { color: #fff; transform: scale(1.08); }

/* ====================  PAGE HEADER (banner for inner pages)  ==================== */
.page-banner {
    height: 700px;
    position: relative;
    background: #d9d9d9;
    margin-bottom: 0;
}
.page-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.page-banner .crumb {
    position: absolute;
    top: 30px; left: 50px;
    color: #fff;
    z-index: 2;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
}
.page-banner .crumb a { color: #fff; }
.page-banner .crumb .current { color: var(--pink); margin-left: 4px; }
.page-banner .banner-title {
    position: absolute;
    bottom: 70px;
    left: 0; right: 0;
    text-align: center;
    color: #fff;
    z-index: 2;
}
.page-banner .banner-title h1 {
    color: #fff;
    font-size: 110px;
    font-weight: 500;
    letter-spacing: -4px;
    line-height: 1;
}
.page-banner.about-banner .banner-title h1 { font-size: 90px; }
.page-banner.svc-banner {
    height: 520px;
    background: #fff;
}
.page-banner.svc-banner::after { display: none; }
.page-banner.svc-banner .crumb { color: #000; }
.page-banner.svc-banner .crumb a { color: #000; }
.page-banner.svc-banner > img { display: none; }
.page-banner.svc-banner .banner-title {
    position: static;
    margin-top: 130px;
}
.page-banner.svc-banner .banner-title h1 {
    color: var(--black);
    font-size: 56px;
    letter-spacing: -2px;
    font-weight: 500;
}
.page-banner.svc-banner .banner-title h1 .accent { color: var(--black); }

/* ====================  ABOUT PAGE — content section  ==================== */
.about-page .intro {
    padding: 60px 0 50px;
}
.about-page .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}
.about-page .intro h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.about-page .intro p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--black);
    margin-bottom: 0;
}
.about-page .intro .img-wrap {
    border-radius: 38px;
    overflow: hidden;
    height: 470px;
}
.about-page .intro .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* About page big "Elite Home Health Care" hero strip */
.about-page .hero-strip {
    background: #fff;
    padding: 0 30px;
    text-align: center;
    margin: 30px 0;
}
.about-page .hero-strip h2 {
    font-size: 90px;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: -3px;
    line-height: 1.1;
}

/* About page team cards */
.about-page .teams {
    background: var(--pink-bg);
    padding: 70px 0;
}
.team-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.team-row.row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
    margin: 25px auto 0;
}
.team-card {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    height: 480px;
}
.team-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
}
.team-card .label {
    position: absolute;
    left: 30px; bottom: 35px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
    z-index: 2;
    line-height: 1.25;
    max-width: 80%;
}

/* ====================  SERVICES PAGE  ==================== */
.svc-page { padding-top: 0; }
.svc-page .three-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 30px;
    margin-bottom: 50px;
}
.svc-page .three-banners > div {
    height: 480px;
    overflow: hidden;
    background: #d9d9d9;
}
.svc-page .three-banners > div img { width: 100%; height: 100%; object-fit: cover; }
.svc-page .three-banners > div:first-child { border-top-left-radius: 30px; border-bottom-left-radius: 30px; }
.svc-page .three-banners > div:last-child  { border-top-right-radius: 30px; border-bottom-right-radius: 30px; }

.svc-page .know-more-row { text-align: center; margin-bottom: 70px; }
.svc-page .know-more-btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    padding: 16px 50px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
    box-shadow: 0 0 12px var(--pink-glow);
    transition: all 0.25s;
}
.svc-page .know-more-btn:hover { background: #a01749; color: #fff; transform: translateY(-2px); }

.svc-page .examples-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -0.8px;
    color: var(--black);
}

.svc-page .examples-row {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.7fr;
    gap: 22px;
    margin-bottom: 60px;
    align-items: stretch;
}
.svc-page .examples-list {
    background: var(--card-bg);
    border-radius: 50px;
    padding: 45px 55px;
}
.svc-page .examples-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.svc-page .examples-list ul li {
    position: relative;
    padding-left: 32px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--black);
}
.svc-page .examples-list ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 12px; height: 12px;
    background: var(--black);
    border-radius: 50%;
}
.svc-page .examples-list .btn-row { margin-top: 25px; }
.svc-page .side-img {
    border-radius: 50px;
    overflow: hidden;
    background: #d9d9d9;
}
.svc-page .side-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-page .stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.svc-page .stack > .side-img:first-child { flex: 1.6; }
.svc-page .stack > .side-img:last-child  { flex: 1; }

/* Circle cards */
.svc-page .circles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 70px;
}
.svc-page .circle-card {
    height: 520px;
    border-radius: 260px;
    overflow: hidden;
    background: #d9d9d9;
    position: relative;
}
.svc-page .circle-card img { width: 100%; height: 100%; object-fit: cover; }
.svc-page .circle-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    border-radius: inherit;
}

/* Title + body two-column */
.svc-page .copy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.svc-page .copy-row .img-wrap {
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
}
.svc-page .copy-row .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.svc-page .copy-row h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.svc-page .copy-row p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--black);
}

/* ====================  CONTACT PAGE  ==================== */
.contact-page .contact-banner {
    height: 720px;
    position: relative;
    overflow: hidden;
    background: #d9d9d9;
}
.contact-page .contact-banner > img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.contact-page .contact-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
}
.contact-page .contact-banner .crumb {
    position: absolute; top: 30px; left: 50px;
    color: #fff; z-index: 2;
    font-size: 18px; font-weight: 500;
}
.contact-page .contact-banner .crumb a { color: #fff; }
.contact-page .contact-banner h1 {
    position: absolute;
    bottom: 90px;
    left: 0; right: 0;
    text-align: center;
    color: #fff;
    font-size: 110px;
    font-weight: 500;
    letter-spacing: -5px;
    z-index: 2;
}

.contact-page .map-wrap {
    margin: 50px auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    max-width: 1640px;
}
.contact-page .map-wrap iframe {
    width: 100%; height: 540px; border: 0; display: block;
}

.contact-form-section {
    padding: 50px 0 80px;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
.contact-form-grid .left-info h2 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -2px;
}
.contact-form-grid .info-line {
    display: flex; gap: 22px;
    align-items: flex-start;
    margin-bottom: 35px;
}
.contact-form-grid .info-line .icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--pink-bg);
    color: var(--pink);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-form-grid .info-line h5 {
    color: var(--pink);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    text-transform: capitalize;
}
.contact-form-grid .info-line p,
.contact-form-grid .info-line a {
    margin: 0;
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form-grid .info-socials {
    display: flex; gap: 14px;
    margin-top: 30px;
}
.contact-form-grid .info-socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: var(--pink);
    font-size: 16px;
    transition: all 0.25s;
}
.contact-form-grid .info-socials a:hover {
    background: var(--pink); color: #fff; border-color: var(--pink);
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 45px;
}
.contact-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}
.contact-card label {
    display: block;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--black);
    letter-spacing: -0.5px;
}
.contact-card label .req { color: red; }
.contact-card input,
.contact-card textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    color: var(--black);
    transition: border-color 0.2s;
}
.contact-card input:focus,
.contact-card textarea:focus {
    outline: 0;
    border-color: var(--pink);
}
.contact-card textarea { min-height: 140px; resize: vertical; }
.contact-card .form-full { margin-bottom: 22px; }
.contact-card .btn-submit {
    background: var(--pink);
    color: #fff;
    border: 0;
    width: 100%;
    padding: 18px 0;
    border-radius: 999px;
    font-size: 22px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 1px 8px var(--pink-glow);
    transition: all 0.25s;
}
.contact-card .btn-submit:hover {
    background: #a01749;
    transform: translateY(-2px);
}
.alert {
    padding: 14px 22px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}
.alert-success { background: #d1f7d3; color: #1f6f25; border: 1px solid #1f6f25; }
.alert-error { background: #fde0e0; color: #9a1414; border: 1px solid #9a1414; }

/* ====================  CONTAINER UTILITY  ==================== */
.container {
    max-width: 1740px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}
.container-narrow {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ====================  RESPONSIVE  ==================== */
@media (max-width: 991.98px) {
    .top-bar { font-size: 12px; height: auto; padding: 10px 0; }
    .top-bar .social-block { display: none; }
    .top-bar .contact-block { gap: 14px; }

    .main-nav { height: auto; padding: 14px 0; }
    .main-nav .nav-menu {
        position: absolute;
        top: 100%; right: 0; left: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .main-nav.open .nav-menu { max-height: 700px; }
    .main-nav .nav-menu li { width: 100%; }
    .main-nav .nav-menu li a { padding: 12px 0; display: block; width: 100%; }
    .main-nav .nav-menu li.dropdown .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        padding: 0 0 0 20px;
        border-top: 0;
    }
    .main-nav .nav-menu li.dropdown.open .submenu { max-height: 600px; }
    .nav-toggle { display: block; }

    .hero { padding: 40px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 35px; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .hero-collage { height: 450px; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image { height: 320px; }
    .about-section h2,
    .section-heading,
    .testimonial-section h2 { font-size: 28px; }

    .svc-grid .svc-1, .svc-grid .svc-2, .svc-grid .svc-3,
    .svc-grid .svc-4, .svc-grid .svc-5, .svc-grid .svc-6, .svc-grid .svc-7 {
        grid-column: span 6;
        height: 220px;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stats-grid .stat-number { font-size: 56px; letter-spacing: -2px; }
    .stats-grid .stat-label { font-size: 18px; }

    .video-card { height: 360px; }
    .video-card .play-btn { width: 70px; height: 70px; font-size: 26px; }

    .faq-section h2 { font-size: 28px; }
    .faq-question { font-size: 17px; padding: 20px 60px 20px 22px; }
    .faq-answer { padding: 0 22px; font-size: 15px; }

    .footer { padding-top: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .page-banner { height: 380px; }
    .page-banner .banner-title h1 { font-size: 48px; letter-spacing: -2px; }
    .page-banner.about-banner .banner-title h1 { font-size: 44px; }
    .page-banner.svc-banner { height: auto; padding-bottom: 50px; }
    .page-banner.svc-banner .banner-title { margin-top: 70px; }
    .page-banner.svc-banner .banner-title h1 { font-size: 32px; }

    .about-page .intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-page .intro .img-wrap { height: 280px; }
    .about-page .intro h2 { font-size: 26px; }
    .about-page .hero-strip h2 { font-size: 40px; letter-spacing: -1px; }
    .team-row, .team-row.row-2 { grid-template-columns: 1fr 1fr; }
    .team-card { height: 280px; border-radius: 22px; }
    .team-card .label { font-size: 17px; left: 20px; bottom: 22px; }

    .svc-page .three-banners { grid-template-columns: 1fr; }
    .svc-page .three-banners > div { height: 280px; border-radius: 22px; }
    .svc-page .three-banners > div:first-child,
    .svc-page .three-banners > div:last-child { border-radius: 22px; }
    .svc-page .examples-row { grid-template-columns: 1fr; }
    .svc-page .side-img, .svc-page .stack > .side-img { height: 220px; }
    .svc-page .circles-row { grid-template-columns: 1fr; max-width: 320px; }
    .svc-page .circle-card { height: 380px; border-radius: 190px; }
    .svc-page .copy-row { grid-template-columns: 1fr; gap: 25px; }
    .svc-page .copy-row .img-wrap { height: 280px; }
    .svc-page .copy-row h2 { font-size: 26px; }

    .contact-page .contact-banner { height: 380px; }
    .contact-page .contact-banner h1 { font-size: 48px; letter-spacing: -1.5px; bottom: 60px; }
    .contact-form-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-card { padding: 25px; }
    .contact-card .form-row { grid-template-columns: 1fr; }
    .contact-form-grid .left-info h2 { font-size: 36px; }
}

@media (max-width: 575.98px) {
    .top-bar .contact-block { font-size: 12px; gap: 12px; }
    .top-bar .contact-block span { font-size: 12px; }
    .hero-content h1 { font-size: 28px; }
    .hero-collage { height: 360px; gap: 12px; }
    .btn-pink { padding: 14px 32px; font-size: 16px; }
    .stats-grid .stat-number { font-size: 42px; }
    .float-whatsapp { width: 56px; height: 56px; font-size: 28px; bottom: 20px; right: 20px; }
}
