:root {
    --primary: #173743;
    --primary-dark: #0E2730;
    --secondary: #7FC7D4;
    --accent: #F4C76A;
    --ink: #102A33;
    --bg: #FFFFFF;
    --light: #F3F8F9;
    --text: #1C3037;
    --muted: #5F747B;
    --border: rgba(15, 23, 42, 0.09);
    --shadow: 0 28px 90px rgba(15, 23, 42, 0.14);
    --soft-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
    --radius: 28px;
    --radius-sm: 16px;
    --container: 1180px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(90deg, rgba(23, 55, 67, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 55, 67, 0.035) 1px, transparent 1px),
        var(--bg);
    background-size: 72px 72px;
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    box-shadow: 0 0 18px rgba(127, 199, 212, 0.35);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 14px;
    transition: 0.25s ease;
}

.site-header.scrolled {
    padding-top: 8px;
    background: transparent;
}

.site-header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(23, 55, 67, 0.1);
    box-shadow: 0 18px 50px rgba(16, 42, 51, 0.11);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    transition: 0.25s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--text);
}

.logo-brand {
    flex: 0 0 auto;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: var(--primary);
    box-shadow:
        0 16px 34px rgba(16, 42, 51, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand-logo {
    width: clamp(210px, 22vw, 285px);
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.brand-icon {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 28px rgba(16, 42, 51, 0.22);
}

.brand-icon .fa-snowflake {
    position: absolute;
    left: 10px;
    font-size: 1.55rem;
}

.brand-icon .fa-sun {
    position: absolute;
    right: 10px;
    color: var(--accent);
    font-size: 1.35rem;
}

.brand-text {
    display: grid;
    gap: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.brand-text > span {
    font-size: 1.02rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.94rem;
    transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(127, 199, 212, 0.16);
}

.nav-menu .nav-cta {
    color: #fff;
    background: var(--ink);
    margin-left: 6px;
}

.nav-menu .nav-cta:hover {
    color: #fff;
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--text);
    transition: 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 96vh;
    padding: 148px 0 96px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.05) 0 34%, transparent 34% 70%, rgba(127, 199, 212, 0.12) 70%),
        linear-gradient(180deg, #173743 0%, #0E2730 78%, #FFFFFF 78%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: 0.38;
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: min(1180px, calc(100% - 40px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: rgba(127, 199, 212, 0.14);
    border: 1px solid rgba(127, 199, 212, 0.24);
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 800;
    font-size: 0.82rem;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    margin-top: 22px;
    font-size: clamp(2.85rem, 5.6vw, 4.9rem);
    max-width: 100%;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.hero h1 {
    color: #fff;
}

h1::after {
    content: "";
    display: block;
    width: 86px;
    height: 6px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff, var(--secondary), var(--accent));
}

.hero-subtitle {
    margin-top: 18px;
    color: var(--secondary);
    font-weight: 800;
    font-size: clamp(1rem, 1.7vw, 1.28rem);
    line-height: 1.45;
    max-width: 680px;
}

.hero-copy {
    max-width: 640px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 590px;
    margin-top: 26px;
}

.hero-mini-grid div {
    position: relative;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(7, 21, 27, 0.24);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.hero-mini-grid div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
}

.hero-mini-grid strong,
.hero-mini-grid span {
    display: block;
}

.hero-mini-grid strong {
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 1.18rem;
}

.hero-mini-grid span {
    margin-top: 2px;
    color: var(--text);
    font-weight: 700;
    font-size: 0.86rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #245363);
    box-shadow: 0 18px 36px rgba(16, 42, 51, 0.3);
}

.btn-whatsapp {
    color: #fff;
    background: #25D366;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.24);
}

.btn-google {
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.btn-light {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.hero-trust i {
    color: var(--accent);
}

.hero-card {
    position: relative;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 38px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(140deg, rgba(127, 199, 212, 0.6), rgba(255, 255, 255, 0.26), rgba(244, 199, 106, 0.48)) border-box;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 4 / 4.8;
    object-fit: cover;
    border-radius: 30px;
    filter: saturate(1.06) contrast(1.02);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 30px;
    background: linear-gradient(180deg, transparent 42%, rgba(14, 39, 48, 0.5));
    pointer-events: none;
}

.hero-status-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 238px;
    max-width: min(300px, calc(100% - 40px));
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
}

.hero-status-card.top {
    top: 34px;
    right: 24px;
}

.hero-status-card.bottom {
    right: 26px;
    bottom: 34px;
    color: #fff;
    background: rgba(14, 39, 48, 0.78);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-status-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.hero-status-card strong,
.hero-status-card small {
    display: block;
}

.hero-status-card strong {
    font-weight: 900;
    line-height: 1.15;
}

.hero-status-card small {
    margin-top: 3px;
    color: var(--muted);
    font-weight: 700;
}

.hero-status-card.bottom small {
    color: rgba(255, 255, 255, 0.72);
}

.service-badge {
    position: absolute;
    left: 24px;
    top: 52%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 230px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: var(--soft-shadow);
    font-weight: 800;
    z-index: 2;
}

.service-badge i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: #fff;
    background: var(--primary);
}

.section {
    padding: 104px 0;
}

.seo-strip {
    padding: 28px 0;
    background: #fff;
}

.seo-strip-inner {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 249, 0.94)),
        linear-gradient(115deg, transparent 0 58%, rgba(127, 199, 212, 0.16) 58% 100%);
    box-shadow: var(--soft-shadow);
}

.seo-strip h2 {
    margin-top: 14px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.seo-strip p {
    max-width: 760px;
    margin-top: 10px;
    color: var(--muted);
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.seo-tags span {
    padding: 10px 13px;
    border: 1px solid rgba(23, 55, 67, 0.13);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(127, 199, 212, 0.12);
    font-weight: 900;
    font-size: 0.9rem;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading.left {
    margin: 0;
    text-align: left;
}

.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.03rem;
}

.services,
.process,
.faq {
    background: var(--light);
}

.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    inset: 44px auto auto 5%;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(23, 55, 67, 0.12);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127, 199, 212, 0.12), transparent);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card,
.why-item,
.timeline-item,
.contact-panel,
.map-panel {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.service-card {
    min-height: 250px;
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(127, 199, 212, 0.13), transparent 42%);
    opacity: 0;
    transition: 0.25s ease;
}

.service-card::after {
    content: "Servis";
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(127, 199, 212, 0.13);
    font-size: 0.72rem;
    font-weight: 900;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23, 55, 67, 0.26);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i,
.why-item i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 28px rgba(23, 55, 67, 0.18);
    font-size: 1.25rem;
}

.service-card h3 {
    margin-top: 22px;
    font-size: 1.28rem;
}

.service-card p,
.why-item p,
.timeline-item p,
.review span {
    margin-top: 10px;
    color: var(--muted);
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.why-list {
    display: grid;
    gap: 16px;
}

.why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius);
    transition: 0.25s ease;
}

.why-item:hover {
    transform: translateX(6px);
    border-color: rgba(127, 199, 212, 0.38);
}

.stats {
    padding: 58px 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 18%, transparent 18% 100%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    padding: 26px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.stat strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.timeline-item {
    position: relative;
    z-index: 1;
    padding: 28px;
    border-radius: var(--radius);
    overflow: hidden;
}

.timeline-item::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: rgba(127, 199, 212, 0.14);
}

.timeline-item span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(23, 55, 67, 0.24);
}

.slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.review-track {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 28px;
}

.review {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 249, 0.94)),
        linear-gradient(115deg, transparent 0 62%, rgba(127, 199, 212, 0.16) 62% 100%);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    transform: translateX(24px) scale(0.98);
    transition: 0.35s ease;
}

.review::before {
    content: "\f10d";
    position: absolute;
    top: 30px;
    right: 36px;
    color: rgba(23, 55, 67, 0.1);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 4rem;
}

.review.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.review p {
    color: var(--text);
    font-size: clamp(1.08rem, 2.2vw, 1.45rem);
    font-weight: 700;
}

.review h3 {
    margin-top: 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    background: #fff;
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    transition: 0.25s ease;
}

.slider-btn:hover {
    color: #fff;
    background: var(--primary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #CBD5E1;
    cursor: pointer;
    transition: 0.25s ease;
}

.slider-dots button.active {
    width: 30px;
    background: var(--primary);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.brand-grid span {
    display: grid;
    min-height: 82px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    color: var(--text);
    font-weight: 900;
    transition: 0.25s ease;
}

.brand-grid span:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.brand-grid span:nth-child(3n + 1) {
    background: linear-gradient(180deg, #fff, #F8FCFF);
}

.campaign {
    padding: 88px 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(14, 39, 48, 0.94), rgba(23, 55, 67, 0.88)),
        url("https://images.unsplash.com/photo-1599566150163-29194dcaad36?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.campaign-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.campaign .eyebrow {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.16);
}

.campaign h2 {
    max-width: 780px;
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.campaign p {
    max-width: 650px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.86);
}

.accordion {
    display: grid;
    gap: 14px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: 0.25s ease;
}

.accordion-item.active {
    border-color: rgba(23, 55, 67, 0.24);
    box-shadow: 0 18px 38px rgba(23, 55, 67, 0.1);
}

.accordion-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.accordion-item i {
    color: var(--primary);
    transition: 0.25s ease;
}

.accordion-item p {
    max-height: 0;
    padding: 0 22px;
    color: var(--muted);
    overflow: hidden;
    transition: 0.28s ease;
}

.accordion-item.active p {
    max-height: 180px;
    padding-bottom: 20px;
}

.accordion-item.active i {
    transform: rotate(45deg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.contact-panel,
.map-panel {
    border-radius: 30px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
        linear-gradient(120deg, transparent 0 62%, rgba(127, 199, 212, 0.16) 62% 100%);
    backdrop-filter: blur(14px);
}

.contact-panel h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-panel > p {
    margin: 14px 0 28px;
    color: var(--muted);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group.full,
.contact-form .full {
    grid-column: 1 / -1;
}

label {
    color: var(--text);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 15px;
    outline: 0;
    color: var(--text);
    background: #fff;
    transition: 0.25s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(23, 55, 67, 0.55);
    box-shadow: 0 0 0 4px rgba(127, 199, 212, 0.16);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #EF4444;
}

.form-group small {
    min-height: 18px;
    color: #EF4444;
    font-size: 0.82rem;
    font-weight: 700;
}

.form-success {
    display: none;
    grid-column: 1 / -1;
    padding: 14px 16px;
    border-radius: 16px;
    color: #166534;
    background: #DCFCE7;
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.map-panel {
    display: grid;
    gap: 18px;
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-info div,
.contact-info a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-weight: 800;
}

.contact-info i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--primary);
}

.business-link {
    padding: 12px 14px;
    border: 1px solid rgba(23, 55, 67, 0.12);
    border-radius: 18px;
    background: rgba(127, 199, 212, 0.12);
    transition: 0.25s ease;
}

.business-link:hover {
    color: var(--primary);
    border-color: rgba(23, 55, 67, 0.28);
    transform: translateY(-2px);
}

iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 22px;
    filter: saturate(0.95);
}

.footer {
    padding: 70px 0 26px;
    color: #CBD5E1;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 20%, transparent 20%),
        var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
}

.footer .brand {
    color: #fff;
}

.footer .logo-brand {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.footer .brand-logo {
    width: min(100%, 300px);
    max-height: none;
}

.footer .brand-text small {
    color: rgba(255, 255, 255, 0.66);
}

.footer p {
    max-width: 330px;
    margin-top: 16px;
}

.footer h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.05rem;
}

.footer a:not(.brand) {
    display: block;
    margin-top: 10px;
    color: #CBD5E1;
    transition: 0.25s ease;
}

.footer a:hover {
    color: #fff;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: grid !important;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 900;
    display: grid;
    gap: 12px;
}

.float-btn,
.scroll-top {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
    cursor: pointer;
    transition: 0.25s ease;
}

.float-btn:hover,
.scroll-top:hover {
    transform: translateY(-4px);
}

.float-btn.whatsapp {
    background: var(--accent);
}

.float-btn.google {
    background: #fff;
    color: var(--primary);
}

.float-btn.phone,
.scroll-top {
    background: var(--primary);
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .hero-grid,
    .split-layout,
    .contact-grid,
    .seo-strip-inner {
        grid-template-columns: 1fr;
    }

    .seo-tags {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
    }

    .hero-card {
        max-width: 620px;
        margin-inline: auto;
    }

    .hero-status-card.top {
        right: 24px;
    }

    .cards-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .brand-grid,
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 74px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        border-radius: 14px;
    }

    .nav-menu .nav-cta {
        margin-left: 0;
        justify-content: center;
    }

    .hero {
        padding-top: 120px;
    }

    .campaign-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .slider {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }

    .review-track {
        min-height: 310px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .navbar {
        gap: 12px;
        padding-inline: 12px;
    }

    .brand {
        gap: 8px;
        min-width: 0;
    }

    .logo-brand {
        min-width: 0;
        padding: 6px 10px;
        border-radius: 15px;
    }

    .brand-logo {
        width: clamp(170px, 52vw, 220px);
        max-height: 44px;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .brand-icon .fa-snowflake {
        left: 8px;
        font-size: 1.25rem;
    }

    .brand-icon .fa-sun {
        right: 8px;
        font-size: 1.05rem;
    }

    .brand-text > span {
        font-size: 0.88rem;
    }

    .brand-text small {
        font-size: 0.5rem;
        letter-spacing: 0.16em;
    }

    .section {
        padding: 76px 0;
    }

    .hero {
        padding-bottom: 70px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        border-radius: 24px;
        padding: 10px;
    }

    .hero-card img {
        aspect-ratio: 4 / 3.9;
        border-radius: 18px;
    }

    .service-badge {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .hero-status-card {
        position: static;
        min-width: 0;
        margin-top: 12px;
    }

    .cards-grid,
    .timeline,
    .brand-grid,
    .stats-grid,
    .footer-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .full,
    .form-group.full {
        grid-column: auto;
    }

    .contact-panel,
    .map-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .brand-grid span {
        min-height: 66px;
    }

    .review {
        padding: 28px;
    }

    .floating-actions {
        right: 14px;
        bottom: 84px;
    }

    .scroll-top {
        right: 14px;
        bottom: 18px;
    }
}
