:root {
    --primary-color: #00ADEF;
    --primary-light: #52cffe;
    --primary-dark: #008fcc;
    --secondary-color: #1a1a1a;
    --accent-color: #ffde59;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    max-width: 100%;
}

body.service-page-body {
    background:
        radial-gradient(circle at top left, rgba(0, 173, 239, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    padding-top: 0;
}

.site-header {
    position: relative;
    z-index: 1000;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

p {
    text-align: justify;
    text-justify: inter-word;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

nav .btn-primary {
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 173, 239, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-arrow-only {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-grid;
    place-items: center;
}

/* Footer */
.site-footer {
    background:
        radial-gradient(circle at top left, rgba(0, 173, 239, 0.16), transparent 30%),
        linear-gradient(180deg, #141414 0%, #101010 100%);
    color: rgba(255, 255, 255, 0.84);
    padding: 72px 0 26px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-brand img {
    width: 200px;
    max-height: 62px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 340px;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.footer-links,
.footer-contact,
.footer-services {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--white);
    transition: var(--transition);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-services a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-services a i {
    font-size: 0.82rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.footer-services a:hover i {
    transform: translateX(3px);
}

.footer-links a i {
    font-size: 0.82rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--white);
}

.footer-contact i {
    color: var(--white);
    margin-top: 4px;
}

.footer-contact a,
.contact-info a,
.service-list a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover,
.contact-info a:hover,
.service-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    position: relative;
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-note {
    max-width: 540px;
}

/* Navbar */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

nav.scrolled {
    padding: 5px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    display: block;
    width: 180px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(0, 173, 239, 0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary-color);
}

body.service-page-body nav {
    background: rgba(255, 255, 255, 0.98);
}

/* Hero Section */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    margin-top: 0;
    overflow: hidden;
    background: #0f1114;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.1s ease;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-arrows {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%) scale(1.04);
}

.hero-arrow i {
    font-size: 1.05rem;
}

.hero-arrow-prev {
    left: 22px;
}

.hero-arrow-next {
    right: 22px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
    padding: 40px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
    max-width: 620px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Service Pages */
.service-hero {
    padding: 40px 0 70px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 173, 239, 0.12);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
    margin-bottom: 18px;
}

.service-hero p {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.service-hero-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
    min-height: 420px;
}

.service-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.02));
}

.service-badge-chip {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.service-page-section {
    padding: 35px 0 50px;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

.service-panel,
.service-aside,
.service-faq-box,
.service-cta-box {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 173, 239, 0.08);
}

.service-panel {
    padding: 34px;
}

.service-panel h2,
.service-aside h2,
.service-faq-box h2,
.service-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-hero-grid p {
    font-size: 1rem;
}

.service-panel p,
.service-aside p,
.service-faq-box p,
.service-cta-box p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.highlight-card {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff, #f4fbfe);
    border: 1px solid rgba(0, 173, 239, 0.08);
}

.highlight-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.highlight-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-aside {
    padding: 28px;
}

.service-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.service-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fbfd;
}

.service-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.service-faq-box {
    padding: 30px;
    margin-top: 28px;
}

.service-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.service-faq-item {
    padding: 18px;
    border-radius: 18px;
    background: #f8fbfd;
    border: 1px solid rgba(0, 173, 239, 0.08);
}

.service-faq-item h3 {
    font-size: 1.03rem;
    margin-bottom: 8px;
}

.service-cta-box {
    padding: 30px;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.service-cta-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Stats */
.stats {
    padding: 20px 0;
    background:
        radial-gradient(circle at top, rgba(0, 173, 239, 0.09), transparent 34%),
        linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 30px 24px 28px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.98) 100%);
    border: 1px solid rgba(0, 173, 239, 0.11);
    box-shadow: 0 18px 50px rgba(15, 34, 58, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    pointer-events: none;
}

.stat-item h3 {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 10px;
    border-radius: 0;
    font-size: 2.5rem;
    background: none;
    box-shadow: none;
    overflow: visible;
}

.stat-item h3 span {
    position: relative;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    display: block;
    text-align: center;
    width: 100%;
}

.stat-item p {
    position: relative;
    margin-top: 0;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(15, 34, 58, 0.1);
}

.stat-item:hover h3 {
    transform: translateY(-1px);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Process */
.process-section {
    background:
        radial-gradient(circle at top right, rgba(0, 173, 239, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.process-intro {
    max-width: 860px;
    margin: -28px auto 40px;
    text-align: center;
}

.process-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
}

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

.process-card {
    position: relative;
    background: var(--white);
    border-radius: 26px;
    padding: 30px 26px 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 173, 239, 0.09);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: auto -24px -24px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 173, 239, 0.06);
    pointer-events: none;
}

.process-number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.process-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.why-choose-us {
    background:
        radial-gradient(circle at top left, rgba(0, 173, 239, 0.09), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.why-copy {
    background: var(--white);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.why-copy p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.why-points {
    display: grid;
    gap: 18px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 22px 24px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.why-point i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 173, 239, 0.12);
    color: var(--primary-color);
    flex: 0 0 auto;
    margin-top: 2px;
}

.why-point h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.why-point p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.faq-intro {
    text-align: center;
    margin: -28px auto 40px;
    max-width: 760px;
}

.faq-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 173, 239, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.11);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: #111111;
    font-size: 1.03rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(0, 173, 239, 0.12);
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '–';
    background: var(--primary-color);
    color: var(--white);
}

.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.service-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 173, 239, 0.12), rgba(26, 26, 26, 0.04));
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-media-icon-only {
    background: linear-gradient(135deg, rgba(0, 173, 239, 0.12), rgba(0, 173, 239, 0.02));
}

.service-badge {
    position: relative;
    z-index: 2;
    margin: -30px 0 0 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 0 0 7px var(--white);
}

.service-badge i {
    font-size: 1.35rem;
}

.service-content {
    padding: 16px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.service-content h3 {
    font-size: 1.55rem;
    color: #111111;
    line-height: 1.15;
}

.service-content h3 a {
    color: inherit;
    text-decoration: none;
}

.service-content h3 a:hover {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    min-height: 5.1em;
}

.service-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    padding: 0;
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.service-btn span:first-child {
    font-size: 0.95rem;
}

.btn-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 14px 26px rgba(0, 173, 239, 0.28);
    transition: var(--transition);
}

.service-btn:hover .btn-arrow {
    transform: translateX(4px);
    background: var(--primary-dark);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(0, 173, 239, 0.12), rgba(26, 26, 26, 0.04));
    transform: translateZ(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 45%, rgba(15, 15, 15, 0.22) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px;
}

.contact-form {
    padding: 60px;
}

.contact-info > div {
    min-width: 0;
    flex-wrap: wrap;
}

.contact-info p,
.contact-info span,
.contact-info a,
.service-list span,
.service-list a {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sticky-contact-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 22px;
    pointer-events: none;
}

.sticky-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    pointer-events: auto;
}

.sticky-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.sticky-contact-btn.call {
    background: linear-gradient(135deg, #0b7a3e, #11a34d);
}

.sticky-contact-btn.whatsapp {
    background: linear-gradient(135deg, #1faa59, #25d366);
}

.sticky-contact-btn i {
    font-size: 1.15rem;
    line-height: 1;
}

.sticky-contact-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-hero-grid {
        grid-template-columns: 1fr;
    }
    .service-page-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-info > div {
        align-items: flex-start;
    }
    .service-highlights,
    .service-faq-grid {
        grid-template-columns: 1fr;
    }

    nav .container {
        position: relative;
        align-items: center;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 0 6px;
        order: 3;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 84vh;
    }

    .hero-content {
        padding: 24px 0 28px;
    }

    .hero-arrow {
        width: 46px;
        height: 46px;
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: none;
    }

    .stat-item {
        padding: 26px 18px 24px;
        border-radius: 24px;
    }

    .stat-item::before {
        height: 5px;
    }

    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-hero {
        padding: 24px 0 48px;
    }

    .contact-info,
    .contact-form {
        padding: 28px 22px;
    }

    .service-panel,
    .service-aside,
    .service-faq-box,
    .service-cta-box {
        padding: 22px;
        border-radius: 22px;
    }

    .service-hero-visual {
        min-height: 280px;
        border-radius: 22px;
    }

    .logo img {
        width: 92px;
        max-height: 63px;
    }

    .service-badge {
        width: 50px;
        height: 50px;
        margin-left: 22px;
    }

    .service-badge i {
        font-size: 1.15rem;
    }

    .service-content {
        padding: 14px 22px 28px;
    }

    .service-content h3 {
        font-size: 1.35rem;
    }

    .service-card p {
        min-height: auto;
    }

    .service-btn {
        width: 100%;
    }

    .why-copy {
        padding: 28px 22px;
    }

    .why-point {
        padding: 18px 18px;
    }

    .faq-item summary {
        padding: 18px 18px;
        font-size: 0.98rem;
    }

    .faq-item p {
        padding: 0 18px 18px;
    }

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

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

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

    .footer-brand img {
        width: 160px;
    }

    .sticky-contact-actions {
        left: 0;
        right: 0;
        bottom: 14px;
        padding: 0 14px;
    }

    .sticky-contact-btn {
        width: 54px;
        height: 54px;
    }
}
