:root {
    --primary-color: #2d8fc4;
    --primary-dark: #226d96;
    --secondary-color: #213142;
    --secondary-soft: #31485f;
    --accent-color: #f3d124;
    --accent-dark: #c99f08;
    --danger-color: #d5382e;
    --success-color: #51a246;
    --text-color: #425466;
    --light-text: #6f8192;
    --bg-color: #ffffff;
    --bg-light: #f5f8fb;
    --white: #ffffff;
    --border-color: #dde6ee;
    --shadow-soft: 0 22px 55px rgba(33, 49, 66, 0.08);
    --shadow-card: 0 16px 35px rgba(33, 49, 66, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --section-padding: 6rem 0;
    --container-width: 1180px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(45, 143, 196, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(243, 209, 36, 0.14), transparent 20%),
        linear-gradient(180deg, #f8fbfe 0%, #ffffff 18%, #ffffff 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.15;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.4rem;
    width: 100%;
}

header,
main,
section,
.header-container,
.hero-container,
.hero-content,
.hero-image,
.image-wrapper,
.contact-wrapper,
.quick-grid,
.services-grid,
.audience-grid,
.gallery-grid,
.faq-grid,
.link-cards,
.footer-container {
    max-width: 100%;
}

.section {
    padding: var(--section-padding);
}

.section-tight {
    padding: 0 0 4rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background:
        linear-gradient(135deg, #203040 0%, #162330 100%);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.55rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(45, 143, 196, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(45, 143, 196, 0.28);
}

.btn-outline {
    border-color: rgba(33, 49, 66, 0.18);
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.7);
}

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

.btn-block {
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(221, 230, 238, 0.7);
    box-shadow: 0 8px 30px rgba(33, 49, 66, 0.05);
    padding: 0.55rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.brand-mark {
    width: 208px;
    max-width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    min-width: 0;
}

.header-pay-mobile {
    display: none;
    background-color: var(--accent-color);
    color: #231f08;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(243, 209, 36, 0.24);
    flex-shrink: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-soft);
    font-size: 0.96rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.btn-nav {
    background-color: var(--accent-color);
    color: #231f08;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(243, 209, 36, 0.28);
}

.nav-link.btn-nav:hover {
    background-color: #f8de50;
    color: #231f08;
}

.nav-toggle,
.nav-close {
    display: none;
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.nav-toggle {
    align-items: center;
    gap: 0.45rem;
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(45, 143, 196, 0.08);
    border: 1px solid rgba(45, 143, 196, 0.14);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-toggle i {
    font-size: 0.8rem;
}

.hero {
    padding: 9.2rem 0 4.5rem;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.hero-subtitle,
.section-subtitle {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background-color: rgba(45, 143, 196, 0.12);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.65rem);
    margin-bottom: 1.3rem;
}

.hero-break {
    display: block;
    height: 0.4em;
}

.hero-title .highlight {
    position: relative;
    color: var(--primary-color);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.2rem;
    width: 100%;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(243, 209, 36, 0.42);
    z-index: -1;
}

.hero-description,
.section-desc,
.about-text,
.service-card p,
.audience-card p,
.timeline-content p,
.faq-item p,
.contact-info p,
.footer-col p {
    color: var(--light-text);
}

.hero-description {
    max-width: 650px;
    font-size: 1.08rem;
    margin-bottom: 1.8rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
    justify-content: center;
}

.hero-meta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.hero-meta span {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(221, 230, 238, 0.9);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
    color: var(--secondary-soft);
    box-shadow: 0 8px 18px rgba(33, 49, 66, 0.05);
}

.hero-stats {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    min-width: 160px;
    padding: 1rem 1.15rem;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(221, 230, 238, 0.9);
    border-radius: 20px;
    box-shadow: 0 16px 28px rgba(33, 49, 66, 0.06);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--light-text);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding: 0.75rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(45, 143, 196, 0.15), rgba(243, 209, 36, 0.2));
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(221, 230, 238, 0.9);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-card);
    font-weight: 700;
    color: var(--secondary-soft);
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.15rem;
}

.card-1 {
    left: 0;
    top: 3rem;
}

.card-2 {
    right: 0;
    bottom: 3rem;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: -1rem;
}

.quick-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.45rem;
    border-radius: 24px;
    color: var(--white);
    box-shadow: var(--shadow-card);
    transform: translateY(0);
    text-align: center;
}

.quick-card:hover {
    transform: translateY(-6px);
}

.quick-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.quick-card span {
    display: block;
    opacity: 0.92;
}

.quick-danger {
    background: linear-gradient(135deg, #dd5148, var(--danger-color));
}

.quick-primary {
    background: linear-gradient(135deg, #4bb0df, var(--primary-color));
}

.quick-success {
    background: linear-gradient(135deg, #68b85d, var(--success-color));
}

.upcoming-banner {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ffe17e, #ffd54f);
    color: #342b06;
    border-radius: 24px;
    padding: 1rem 1.2rem;
    box-shadow: 0 16px 30px rgba(243, 209, 36, 0.24);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.upcoming-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: banner-shine 2.8s linear infinite;
}

.upcoming-banner>* {
    position: relative;
    z-index: 1;
}

.upcoming-banner .tag {
    flex-shrink: 0;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(35, 31, 8, 0.1);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.upcoming-banner p {
    font-weight: 600;
}

@keyframes banner-shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3.4rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.1rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.02rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 26px;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 40px rgba(33, 49, 66, 0.06);
    transition: var(--transition);
}

.service-card:hover,
.audience-card:hover,
.gallery-item:hover,
.faq-item:hover,
.link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(45, 143, 196, 0.15), rgba(45, 143, 196, 0.06));
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.service-pill {
    display: inline-flex;
    align-self: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background-color: rgba(45, 143, 196, 0.1);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.service-card h3 {
    font-size: 1.48rem;
}

.service-list {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    justify-items: center;
}

.service-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.94rem;
}

.service-list i {
    color: var(--success-color);
    margin-top: 0.28rem;
    font-size: 0.82rem;
}

.service-price {
    margin-top: auto;
    padding: 1rem 0 0.2rem;
    border-top: 1px solid var(--border-color);
}

.service-price strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.service-price span {
    display: block;
    font-size: 0.88rem;
    color: var(--light-text);
    margin-top: 0.25rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.audience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 2rem;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(33, 49, 66, 0.05);
    transition: var(--transition);
}

.audience-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(45, 143, 196, 0.15), rgba(45, 143, 196, 0.06));
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.audience-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    text-align: center;
}

.audience-card p,
.audiences .section-header {
    text-align: center;
}

.about-container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 4rem;
    align-items: center;
}

.about-content-col {
    text-align: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
}

.about-img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.experience-badge {
    position: absolute;
    right: 0;
    bottom: 1.4rem;
    max-width: 220px;
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--secondary-color), #304559);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.experience-badge .years {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.timeline {
    margin-top: 2rem;
    padding-left: 0;
    border-left: 0;
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 0;
    padding-top: 1.35rem;
    text-align: center;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(45, 143, 196, 0.15);
    transform: translateX(-50%);
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    min-height: 240px;
    box-shadow: 0 14px 28px rgba(33, 49, 66, 0.08);
    transition: var(--transition);
}

.gallery-item-lg {
    grid-row: span 2;
    min-height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.faq-item {
    padding: 1.35rem 1.4rem;
    border-radius: 22px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 14px 28px rgba(33, 49, 66, 0.05);
    transition: var(--transition);
    text-align: center;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding-right: 2rem;
    position: relative;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: -0.15rem;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 0.9rem;
    font-size: 0.95rem;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
    text-align: center;
}

.link-card-blue {
    background: linear-gradient(135deg, #4bb0df, var(--primary-color));
    border-color: rgba(255, 255, 255, 0.12);
}

.link-card-green {
    background: linear-gradient(135deg, #68b85d, var(--success-color));
    border-color: rgba(255, 255, 255, 0.12);
}

.link-card-red {
    background: linear-gradient(135deg, #dd5148, var(--danger-color));
    border-color: rgba(255, 255, 255, 0.12);
}

.link-card i {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.2rem;
}

.link-card h3 {
    color: var(--white);
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

.link-card p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
}

.link-card-gold {
    background: linear-gradient(135deg, #ffe17e, #ffd54f);
    border-color: rgba(243, 209, 36, 0.22);
    color: #342b06;
}

.link-card-gold h3,
.link-card-gold p,
.link-card-gold i {
    color: #342b06;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-info,
.contact-form-wrapper {
    text-align: center;
}

.contact-form-title {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.contact-info>.section-title {
    margin-bottom: 1.2rem;
}

.contact-info>p {
    margin-bottom: 2.1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
    text-align: center;
}

.info-item .icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: rgba(45, 143, 196, 0.1);
    color: var(--primary-color);
}

.info-item h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    gap: 0.85rem;
    margin-top: 2.3rem;
    justify-content: center;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background-color: rgba(45, 143, 196, 0.08);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary-soft);
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--secondary-soft);
    background-color: #fbfdff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 143, 196, 0.12);
}

.footer {
    background: linear-gradient(180deg, #182533 0%, #111a24 100%);
    color: var(--white);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo-img {
    width: 170px;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    filter: brightness(1.04);
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
    text-align: center;
}

.footer-col,
.footer-col p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo-img {
    margin-left: auto;
    margin-right: auto;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
}

.whatsapp-float img {
    width: 82px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
    transition: var(--transition);
}

.whatsapp-float:hover img {
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 1100px) {
    .services-grid,
    .link-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .gallery-item-lg {
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .hero-container,
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns,
    .hero-meta,
    .hero-stats {
        justify-content: center;
    }

    .quick-grid,
    .audience-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .experience-badge {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.42rem 0;
    }

    .brand-mark {
        width: 158px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(86vw, 360px);
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        padding: 5rem 1.7rem 2rem;
        box-shadow: -15px 0 40px rgba(33, 49, 66, 0.12);
        transition: var(--transition);
    }

    .header-pay-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-link.btn-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0.35rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero-title {
        font-size: 2.45rem;
        overflow-wrap: anywhere;
    }

    .image-wrapper {
        padding: 0.5rem 0.4rem 1.4rem;
    }

    .image-wrapper::before {
        inset: 0;
    }

    .hero-img,
    .about-img {
        min-height: 420px;
    }

    .floating-card {
        position: absolute;
        left: 1rem;
        right: 1rem;
        max-width: none;
        padding: 0.85rem 1rem;
        border-radius: 16px;
        font-size: 0.95rem;
    }

    .card-1 {
        top: auto;
        bottom: 5.6rem;
    }

    .card-2 {
        right: 1rem;
        bottom: 1rem;
    }

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

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

@media (max-width: 520px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .header-container {
        gap: 0.4rem;
    }

    .brand-mark {
        width: 122px;
    }

    .header-actions {
        gap: 0.35rem;
    }

    .header-pay-mobile {
        padding: 0.48rem 0.62rem;
        font-size: 0.68rem;
        letter-spacing: -0.01em;
    }

    .nav-toggle {
        padding: 0.48rem 0.62rem;
        font-size: 0.74rem;
        gap: 0.32rem;
    }

    .nav-toggle i {
        font-size: 0.66rem;
    }

    .floating-card {
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .floating-card i {
        font-size: 1rem;
    }

    .card-1 {
        bottom: 5.1rem;
    }

    .card-2 {
        bottom: 0.75rem;
    }

    .hero-description,
    .section-desc {
        font-size: 0.98rem;
    }

    .whatsapp-float {
        right: 10px;
        bottom: 12px;
    }

    .whatsapp-float img {
        width: 64px;
    }

    .quick-card,
    .service-card,
    .audience-card,
    .link-card,
    .contact-wrapper {
        border-radius: 20px;
    }

    .whatsapp-float img {
        width: 72px;
    }
}
