/* ============================================================
   NetGuard Pro — style.css
   ============================================================ */

:root {
    --primary: #1a6fc4;
    --primary-dark: #1358a0;
    --primary-light: #e8f1fb;
    --accent: #f59e0b;
    --dark: #0a1628;
    --gray: #64748b;
    --light: #f7f9fc;
    --white: #fff;
    --green: #16a34a;
    --card-radius: 18px;
    --section-pad: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e2d3d;
    overflow-x: hidden;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
.brand-name,
.section-title,
.service-name,
.why-title,
.city-name {
    font-family: 'Nunito', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── PROGRESS BAR ── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    width: 0;
    transition: width .1s;
}

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-side-btn {
    display: flex;
    align-items: center;
    gap: 0;
    width: 42px;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
    padding: 11px 0 11px 13px;
    color: #fff;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    transition: width .3s cubic-bezier(.4,0,.2,1), background .2s;
    white-space: nowrap;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
}

.social-side-btn i {
    font-size: 1rem;
    min-width: 16px;
    text-align: center;
}

.social-side-label {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity .25s, max-width .3s;
    margin-left: 0;
}

.no-touch .social-side-btn:hover {
    width: 130px;
    padding-right: 14px;
}

.no-touch .social-side-btn:hover .social-side-label {
    opacity: 1;
    max-width: 100px;
    margin-left: 9px;
}

.social-side-btn.facebook  { background: #1877f2; }
.social-side-btn.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#515bd4); }
.social-side-btn.youtube   { background: #ff0000; }
.social-side-btn.whatsapp  { background: #25d366; }

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    box-shadow: 0 2px 24px rgba(26, 111, 196, .1);
    padding: .65rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(26, 111, 196, .35);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
}

.brand-name span {
    color: var(--primary);
}

.brand-tagline {
    font-size: .56rem;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .84rem;
    color: var(--dark) !important;
    padding: .5rem .85rem !important;
    letter-spacing: .2px;
    transition: color .2s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.nav-call-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border-radius: 50px;
    padding: .46rem 1.3rem !important;
    font-size: .81rem !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(26, 111, 196, .32);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

/* ── HERO ── */
.carousel-item {
    height: 625px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.4);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(10, 22, 40, .75) 0%, rgba(26, 111, 196, .3) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, .18);
    border: 1px solid rgba(245, 158, 11, .5);
    color: var(--accent);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 1.2px;
    padding: 5px 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
    max-width: 820px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}

.hero-title span {
    color: var(--accent);
}

.hero-sub {
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.82rem, 2vw, 1.02rem);
    max-width: 580px;
    margin-bottom: 1.8rem;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .72rem 1.7rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 22px rgba(26, 111, 196, .45);
    text-decoration: none;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
    border-radius: 50px;
    padding: .72rem 1.7rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    text-decoration: none;
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;
    padding: 7px 14px;
    color: #fff;
    font-size: .72rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.hero-pill i {
    color: var(--accent);
    font-size: .78rem;
}

/* Hero Social Icons */
.hero-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.hero-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .25s, transform .2s, border-color .25s;
}

.hero-social-link:hover {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.6);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

.hero-social-link.whatsapp-hero:hover {
    background: #25d366;
    border-color: #25d366;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 10;
}

.carousel-indicators {
    z-index: 10;
}

/* ── SECTION COMMONS ── */
section {
    padding: var(--section-pad) 0;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 1.8px;
    padding: 5px 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--primary);
}

.section-divider {
    width: 52px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 20px;
}

.section-divider.left {
    margin: 0 0 20px;
}

/* ── ABOUT ── */
#about {
    background: var(--light);
}

.about-img-wrap {
    position: relative;
    margin-bottom: 32px;
}

.about-img-wrap img {
    border-radius: 20px;
    width: 100%;
    height: 340px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(26, 111, 196, .16);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 16px;
    padding: 13px 20px;
    box-shadow: 0 12px 32px rgba(26, 111, 196, .4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge-num {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-text {
    font-size: .68rem;
    line-height: 1.4;
    opacity: .92;
    font-family: 'Inter', sans-serif;
}

.about-content {
    padding-top: 32px;
}

.about-content p {
    color: #4a5568;
    line-height: 1.82;
    margin-bottom: 13px;
    font-size: .94rem;
}

.about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.about-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: .8rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.about-chip i {
    color: var(--green);
    font-size: .82rem;
}

/* ── SERVICES ── */
#services {
    background: #fff;
}

.service-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1.5px solid #e8edf5;
    height: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    position: relative;
}

.service-card-img-wrap {
    width: 100%;
    height: 185px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, .55) 0%, transparent 60%);
}

.service-img-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .6rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
}

.service-img-fallback {
    width: 100%;
    height: 185px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    background: var(--primary-light);
    color: var(--primary);
}

.service-card-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.service-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--primary-light), #cce0f8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: background .3s, transform .3s;
}

.service-icon i {
    color: var(--primary);
    transition: color .3s;
}

.service-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: var(--dark);
    line-height: 1.3;
}

.service-desc {
    font-size: .77rem;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 5px;
    flex: 1;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: .72rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: var(--primary);
    text-decoration: none;
}

.service-cta i {
    font-size: .65rem;
    transition: transform .2s;
}

/* ── Desktop hover (no-touch) ── */
.no-touch .service-card {
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.no-touch .service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(26, 111, 196, .16);
    border-color: var(--primary);
}

.no-touch .service-card:hover .service-card-img {
    transform: scale(1.07);
}

.no-touch .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scale(1.1);
}

.no-touch .service-card:hover .service-icon i {
    color: #fff !important;
}

.no-touch .service-card:hover .service-cta i {
    transform: translateX(3px);
}

/* ── SAFETY SHOWCASE ── */
.safety-strip {
    background: linear-gradient(135deg, var(--dark) 0%, #0d2144 100%);
    padding: 60px 0;
}

.safety-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: #fff;
    margin-bottom: 8px;
}

.safety-title span {
    color: var(--accent);
}

.safety-sub {
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
    margin-bottom: 28px;
    line-height: 1.65;
}

.safety-img-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
}

.safety-img-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.safety-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, .9) 0%, transparent 100%);
    padding: 14px;
}

.safety-img-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.safety-img-label i {
    color: var(--accent);
    font-size: .75rem;
}

.safety-img-sub {
    font-size: .67rem;
    color: rgba(255, 255, 255, .68);
    margin-top: 2px;
}

.no-touch .safety-img-card:hover img {
    transform: scale(1.06);
}

.safety-stat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
}

.safety-stat strong {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.safety-stat span {
    font-size: .7rem;
    color: rgba(255, 255, 255, .65);
}

/* ── INVISIBLE GRILL ── */
#invisible-grill {
    background: var(--light);
}

.grill-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
}

.grill-gallery img {
    width: 100%;
    border-radius: 13px;
    object-fit: cover;
    height: 175px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .1);
}

.grill-gallery img:first-child {
    grid-column: 1 / -1;
    height: 225px;
}

.no-touch .grill-gallery img {
    transition: transform .3s;
}

.no-touch .grill-gallery img:hover {
    transform: scale(1.02);
}

.grill-feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.grill-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
}

.grill-feature h5 {
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: 3px;
    color: var(--dark);
}

.grill-feature p {
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.55;
    margin: 0;
}

.grill-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.grill-box h5 {
    font-size: .88rem;
    font-weight: 800;
    margin-bottom: 11px;
    color: var(--dark);
}

.grill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grill-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: .8rem;
    color: #4a5568;
    line-height: 1.5;
}

.grill-list li i {
    margin-top: 2px;
    font-size: .76rem;
}

/* ── WHY US ── */
#why-us {
    background: #fff;
}

.why-card {
    background: var(--light);
    border-radius: var(--card-radius);
    padding: 24px 18px;
    text-align: center;
    height: 100%;
}

.no-touch .why-card {
    transition: transform .3s, box-shadow .3s, background .3s;
}

.no-touch .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(26, 111, 196, .13);
    background: #fff;
}

.why-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 111, 196, .3);
}

.why-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.why-desc {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.55;
}

/* ── STATS ── */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 10px 0;
}

.stat-num {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    height: 60px;
    margin: auto;
}

/* ── SEO ── */
#seo-content {
    background: var(--light);
}

.seo-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border-left: 4px solid var(--primary);
}

.seo-card h4 {
    font-size: .94rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.seo-card p {
    font-size: .84rem;
    color: #4a5568;
    line-height: 1.78;
}

.seo-stats-bar {
    background: var(--dark);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.seo-stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.seo-stat-num {
    font-family: 'Nunito', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--accent);
}

.seo-stat-label {
    font-size: .73rem;
    color: rgba(255, 255, 255, .72);
    margin-top: 2px;
}

.cities-tag {
    background: var(--primary);
    color: #fff;
    padding: 15px 22px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .84rem;
    text-align: center;
    margin-top: 22px;
    line-height: 1.85;
}

/* ── COVERAGE ── */
#coverage {
    background: #fff;
}

.city-card {
    background: var(--light);
    border-radius: 16px;
    padding: 24px 14px;
    text-align: center;
}

.no-touch .city-card {
    transition: transform .3s, box-shadow .3s, background .3s;
}

.no-touch .city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(26, 111, 196, .13);
    background: linear-gradient(135deg, var(--primary-light), #cce0f8);
}

.city-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.city-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.city-region {
    font-size: .7rem;
    color: var(--gray);
}

.coverage-note {
    background: var(--primary-light);
    border: 1.5px solid rgba(26, 111, 196, .2);
    border-radius: 13px;
    padding: 15px 22px;
    text-align: center;
    font-size: .88rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 28px;
}

/* ── CONTACT ── */
#contact {
    background: var(--light);
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.no-touch .contact-card {
    transition: transform .3s;
}

.no-touch .contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: #fff;
}

.contact-card h5 {
    font-weight: 800;
    font-size: .82rem;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-card a {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    word-break: break-all;
}

.contact-note {
    font-size: .73rem;
    color: var(--gray);
    margin-top: 7px;
}

.contact-form {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.form-control,
.form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 11px;
    padding: 12px 15px;
    font-size: .9rem;
    transition: border-color .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 111, 196, .1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .94rem;
    width: 100%;
    transition: transform .2s, box-shadow .2s;
}

.no-touch .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 111, 196, .38);
    color: #fff;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    padding: 60px 0 0;
}

.footer-brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 11px;
}

.footer-brand-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
}

.footer-brand-name span {
    color: var(--primary);
}

.footer-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.72;
    margin-top: 10px;
    margin-bottom: 18px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    text-decoration: none;
    transition: transform .22s, opacity .22s, box-shadow .22s;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
}

.footer-social-icon.fb  { background: #1877f2; }
.footer-social-icon.ig  { background: linear-gradient(135deg,#f58529,#dd2a7b,#515bd4); }
.footer-social-icon.yt  { background: #ff0000; }
.footer-social-icon.wa  { background: #25d366; }
.footer-social-icon.tw  { background: #000; }

.no-touch .footer-social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
    opacity: .92;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-size: .83rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .83rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a i {
    color: var(--primary);
    font-size: .7rem;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 13px;
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-bottom-socials a {
    color: rgba(255,255,255,.4);
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s, transform .2s;
    display: inline-flex;
}

.footer-bottom-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ── FLOATING BUTTONS ── */
.floating-btns {
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 12px 18px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
    color: #fff;
}

.no-touch .float-btn {
    transition: transform .2s, box-shadow .2s;
}

.no-touch .float-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .32);
    color: #fff;
}

.float-wa {
    background: #25d366;
}

.float-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.float-btn i {
    font-size: 1rem;
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .carousel-item {
        height: 520px;
    }

    :root {
        --section-pad: 65px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 450px;
    }

    :root {
        --section-pad: 54px;
    }

    .about-img-wrap img {
        height: 270px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 18px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .grill-gallery img:first-child {
        height: 195px;
    }

    .grill-gallery img {
        height: 145px;
    }

    .seo-stats-bar {
        gap: 14px;
    }

    .safety-img-card img {
        height: 175px;
    }

    .service-card-img-wrap,
    .service-img-fallback {
        height: 160px;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Hide social sidebar on mobile — use floating buttons instead */
    .social-sidebar {
        display: none;
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {

    /* Force services to full width */
    #services .row>[class*="col-"] {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .carousel-item {
        height: 450px;
    }

    :root {
        --section-pad: 46px;
    }

    .navbar-brand .brand-tagline {
        /* display: none; */
        font-size:10px
    }

    .hero-badge {
        font-size: .62rem;
        padding: 4px 13px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 6.5vw, 1.65rem);
    }

    .hero-sub {
        font-size: .78rem;
        margin-bottom: 1.3rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: .65rem 1.2rem;
        font-size: .8rem;
    }

    .hero-pill {
        font-size: .65rem;
        padding: 5px 11px;
    }

    .hero-socials {
        gap: 8px;
    }

    .hero-social-link {
        width: 34px;
        height: 34px;
        font-size: .85rem;
    }

    .about-img-wrap img {
        height: 230px;
    }

    .about-badge-num {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: .88rem;
    }

    .about-chip {
        font-size: .76rem;
    }

    .service-card {
        flex-direction: column;
        border-radius: 16px;
        height: auto;
        box-shadow: 0 3px 16px rgba(0, 0, 0, .08);
    }

    .service-card-img-wrap {
        width: 100%;
        height: 200px;
    }

    .service-img-fallback {
        width: 100%;
        height: 200px;
    }

    .service-card-body {
        padding: 14px 16px 18px;
    }

    .service-name {
        font-size: .92rem;
    }

    .service-desc {
        font-size: .8rem;
    }

    .safety-strip {
        padding: 44px 0;
    }

    .safety-img-card img {
        height: 155px;
    }

    .grill-gallery {
        grid-template-columns: 1fr;
    }

    .grill-gallery img:first-child {
        grid-column: 1;
        height: 200px;
    }

    .grill-gallery img {
        height: 185px;
    }

    .why-card {
        padding: 18px 13px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
    }

    .why-title {
        font-size: .84rem;
    }

    .stats-bar {
        padding: 38px 0;
    }

    .stat-num {
        font-size: 2rem;
    }

    .stat-item {
        padding: 12px 0;
    }

    .seo-card {
        padding: 20px;
    }

    .seo-card h4 {
        font-size: .9rem;
    }

    .seo-stat-num {
        font-size: 1.65rem;
    }

    .city-card {
        padding: 18px 10px;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .footer-bottom {
        font-size: .73rem;
    }

    .floating-btns {
        bottom: 15px;
        right: 13px;
        gap: 8px;
    }

    .float-btn {
        padding: 10px 15px;
        font-size: .75rem;
    }
}

@media (max-width: 360px) {
    .carousel-item {
        height: 450px;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .float-btn span.btn-text {
        display: none;
    }

    .float-btn {
        padding: 13px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .float-btn i {
        font-size: 1.15rem;
        margin: 0;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 14px;
        margin-top: 10px;
        padding: 10px 0;
        box-shadow: 0 8px 32px rgba(26, 111, 196, .12);
    }

    .navbar-nav .nav-link {
        padding: .65rem 1.3rem !important;
        border-radius: 9px;
        margin: 2px 8px;
    }

    .navbar-nav .nav-link:hover {
        background: var(--primary-light);
    }

    .nav-call-btn {
        margin: 10px 16px 6px;
        justify-content: center;
    }
}



/* ── OWNER CARD ── */
.owner-card {
    display: flex;
    gap: 0;
    background: var(--light);
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid #e8edf5;
    box-shadow: 0 12px 48px rgba(26, 111, 196, .1);
}

.owner-photo-col {
    flex: 0 0 280px;
    min-width: 0;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    position: relative;
}

.owner-photo-wrap {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.owner-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .3);
    display: block;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
}

.owner-avatar-fallback {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, .7);
}

.owner-exp-badge {
    position: absolute;
    bottom: -6px;
    right: -10px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    padding: 7px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    box-shadow: 0 6px 20px rgba(245, 158, 11, .45);
}

.owner-exp-num {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
}

.owner-exp-text {
    font-size: .58rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    opacity: .9;
    letter-spacing: .5px;
}

.owner-info-col {
    flex: 1;
    padding: 36px 36px 34px;
    min-width: 0;
}

.owner-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.owner-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.1;
}

.owner-role {
    font-size: .82rem;
    color: var(--gray);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.owner-role i {
    color: var(--primary);
    font-size: .78rem;
}

.owner-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 111, 196, .1);
    border: 1px solid rgba(26, 111, 196, .25);
    color: var(--primary);
    border-radius: 50px;
    font-size: .68rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    padding: 5px 12px;
    white-space: nowrap;
    letter-spacing: .5px;
}

.owner-verified i {
    font-size: .7rem;
}

.owner-divider {
    height: 1.5px;
    background: linear-gradient(90deg, #e0e8f5 0%, transparent 100%);
    margin-bottom: 16px;
}

.owner-bio {
    font-size: .9rem;
    color: #4a5568;
    line-height: 1.82;
    margin-bottom: 20px;
}

.owner-bio strong {
    color: var(--primary-dark);
}

.owner-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8edf5;
    margin-bottom: 20px;
    overflow: hidden;
}

.owner-stat {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
}

.owner-stat-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 3px;
}

.owner-stat-label {
    font-size: .68rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.owner-stat-sep {
    width: 1px;
    height: 44px;
    background: #e8edf5;
    flex-shrink: 0;
}

.owner-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.owner-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    border-radius: 50px;
    padding: 6px 13px;
    font-size: .76rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: var(--primary-dark);
}

.owner-chip i {
    color: var(--green);
    font-size: .75rem;
}

.owner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.owner-wa-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: .65rem 1.3rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
    .owner-card {
        flex-direction: column;
    }

    .owner-photo-col {
        flex: none;
        width: 100%;
        padding: 36px 24px 30px;
    }

    .owner-photo-wrap {
        width: 160px;
    }

    .owner-photo,
    .owner-avatar-fallback {
        width: 160px;
        height: 160px;
    }

    .owner-exp-badge {
        right: -8px;
    }

    .owner-info-col {
        padding: 28px 24px 30px;
    }

    .owner-name {
        font-size: 1.35rem;
    }
}

/* ── Responsive: mobile ── */
@media (max-width: 576px) {
    .owner-card {
        border-radius: 18px;
    }

    .owner-photo-col {
        padding: 28px 20px 24px;
    }

    .owner-photo-wrap {
        width: 130px;
    }

    .owner-photo,
    .owner-avatar-fallback {
        width: 130px;
        height: 130px;
        font-size: 3.5rem;
    }

    .owner-exp-badge {
        bottom: -8px;
        right: -12px;
        padding: 6px 11px;
    }

    .owner-exp-num {
        font-size: 1rem;
    }

    .owner-info-col {
        padding: 22px 18px 26px;
    }

    .owner-name {
        font-size: 1.2rem;
    }

    .owner-verified {
        font-size: .62rem;
        padding: 4px 10px;
    }

    .owner-bio {
        font-size: .85rem;
    }

    .owner-stat-num {
        font-size: 1.15rem;
    }

    .owner-chip {
        font-size: .72rem;
        padding: 5px 11px;
    }

    .owner-actions {
        gap: 9px;
    }

    .owner-wa-btn,
    .owner-actions .btn-hero-primary {
        font-size: .8rem;
        padding: .6rem 1.1rem;
    }
}

/* ── Responsive: very small ── */
@media (max-width: 360px) {
    .owner-header {
        flex-direction: column;
        gap: 8px;
    }

    .owner-actions {
        flex-direction: column;
    }

    .owner-wa-btn,
    .owner-actions .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
}