:root {
    --navy: #2f2f2f;
    --charcoal: #3f3f3f;
    --accent: #f28122;
    --light: #f3f3f3;
    --page: #efefef;
    --text: #191919;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--page);
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    margin-top: 0;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.topbar {
    background: #f7f7f7;
    color: #111;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #dadada;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.menu-toggle {
    display: none;
    border: 1px solid #e7e7e7;
    background: #fff;
    width: 42px;
    height: 38px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #333;
    display: block;
}

.brand {
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand img {
    height: 58px;
    width: auto;
    display: block;
}

.top-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.top-contact .contact-link {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.animated-contact {
    animation: floatY 1.8s ease-in-out infinite;
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.nav {
    background: #ffffff;
    border-bottom: 1px solid #dedede;
}

.nav-inner {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.75rem 0;
    justify-content: center;
}

.nav a {
    color: #202020;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.hero {
    min-height: 82vh;
    background: url("assets/images/home-bg.jpg") center/cover no-repeat;
    position: relative;
    color: #fff;
    display: grid;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(30, 30, 30, 0.56) 20%, rgba(66, 66, 66, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 2rem 1.4rem;
    background: rgba(24, 30, 40, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #ffd4ad;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin: 0.5rem 0 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero p {
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subline {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-highlights {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-highlights span {
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.84rem;
    text-shadow: none;
}

.hero-price {
    margin: 1rem 0 0.2rem;
    font-weight: 600;
}

.hero-price-value {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffdcb7;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.44);
}

.typewriter-active {
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    animation: blinkCaret 0.7s step-end infinite;
}

.hero-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    border-radius: 4px;
    padding: 0.75rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    animation: floatY 2.2s ease-in-out infinite;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.section {
    padding: 4.5rem 0;
    background: #fff;
}

.offer-strip {
    background: #fff3e6;
    border-top: 1px solid #ffd7b3;
    border-bottom: 1px solid #ffd7b3;
    text-align: center;
    padding: 0.85rem 0;
}

.offer-strip p {
    margin: 0;
    font-weight: 700;
    color: #d85e00;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    animation: offerBlink 1s ease-in-out infinite;
}

.section h2 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.section-intro {
    max-width: 740px;
    line-height: 1.8;
    color: #37435a;
}

.overview-bullet-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    max-width: 780px;
    display: grid;
    gap: 0.45rem;
    line-height: 1.6;
}

.overview-bullet-list li::marker {
    color: #f28122;
}

.overview-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.4rem;
    align-items: start;
}

.overview-frame {
    background: #f3f4f6;
    border: 1px solid #d9dde3;
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 10px 24px rgba(58, 72, 92, 0.1);
}

.overview-side-card {
    background: #ffffff;
    border: 1px solid #dce2ea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(58, 72, 92, 0.08);
}

.overview-side-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.overview-side-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.8rem;
}

.overview-side-stats span {
    background: #fff;
    border: 1px solid #dfe4eb;
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2f3f55;
}

.grid {
    display: grid;
    gap: 1rem;
}

.cards {
    margin-top: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(12, 36, 68, 0.05);
}

.card ul {
    margin: 0;
    padding-left: 1.1rem;
    line-height: 1.7;
}

.overview-stack {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.overview-block {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
    gap: 1.25rem;
    align-items: center;
    background: #fafafa;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 1rem;
}

.overview-block img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 10px;
}

.overview-block h3 {
    margin-bottom: 0.55rem;
}

.overview-block p {
    margin: 0;
    line-height: 1.7;
}

.overview-block.reverse img {
    order: 2;
}

.center-gap {
    margin-top: 1.5rem;
}

.section-dark {
    background: var(--charcoal);
    color: #f5f5f5;
}

.section-dark .section-intro {
    color: #e6e6e6;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 1.5rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.4rem;
}

.pricing-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.pricing-table-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.pricing-table-card h3 {
    margin-bottom: 0.9rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: #222;
    border-radius: 8px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    border: 1px solid #d9d9d9;
    padding: 0.7rem 0.55rem;
    text-align: left;
    font-size: 0.93rem;
}

.price-table th {
    background: #ececec;
    font-weight: 700;
}

.price-table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

.mini-btn {
    border: none;
    background: #1ea5c6;
    color: #fff;
    padding: 0.45rem 0.65rem;
    border-radius: 4px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    animation: floatY 2.2s ease-in-out infinite;
}

.costing-card {
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 0.75rem;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.costing-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.plans-layouts {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.layout-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.layout-card h3 {
    margin-bottom: 0.8rem;
}

.layout-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex: 1;
}

.layout-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.layout-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(38, 38, 38, 0.66);
    color: #fff;
    padding: 0.7rem;
    font-size: 1.06rem;
}

.gallery-grid {
    margin-top: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gallery-grid img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-grid video {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
}

.interactive-image {
    cursor: pointer;
    transition: filter 0.35s ease, transform 0.35s ease;
}

.interactive-image:hover {
    filter: blur(2px) brightness(0.78);
    transform: scale(1.01);
}

.section-accent {
    background: linear-gradient(135deg, #ff8a1e 0%, #ffa041 52%, #ff7a00 100%);
}

.two-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.connectivity-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

.connectivity-head h2 {
    color: #fff6ec;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    flex: 1;
}

.connectivity-head .btn.btn-accent {
    background: #ffffff;
    color: #ff7a00;
    border: 1px solid #ffc58f;
    box-shadow: 0 8px 18px rgba(255, 122, 0, 0.22);
    align-self: flex-start;
    min-width: 150px;
}

.connectivity-layout {
    display: grid;
    grid-template-columns: minmax(360px, 1.05fr) minmax(520px, 1.55fr);
    gap: 1.2rem;
    align-items: stretch;
}

.map-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 235, 217, 0.85);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.2);
}

.map-card img {
    width: 100%;
    min-height: 0;
    height: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
}

.map-card-actions {
    padding: 0.85rem;
    display: flex;
    justify-content: center;
    background: #fffaf5;
    border-top: 1px solid #ffe3ce;
}

.map-overlay-btn {
    border: 1px solid #ffe7d4;
    background: rgba(255, 122, 0, 0.84);
    color: #fff;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.84rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    animation: floatY 2.2s ease-in-out infinite;
}

.distance-card {
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid #ffdcbc;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.16);
    overflow: hidden;
    height: 100%;
}

.connectivity-table {
    width: 100%;
    border-collapse: collapse;
}

.connectivity-table td {
    padding: 0.92rem 0.95rem;
    border-bottom: 1px solid #f3dcc7;
    font-size: 1rem;
    color: #6a3a14;
}

.connectivity-table tr:nth-child(odd) {
    background: #fff6ee;
}

.connectivity-table tr:nth-child(even) {
    background: #fffdfb;
}

.connectivity-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #ff7a00;
}

.conn-ic {
    display: inline-flex;
    width: 22px;
    height: 22px;
    justify-content: center;
    align-items: center;
    margin-right: 0.25rem;
    vertical-align: middle;
    color: #ff8a1e;
}

.conn-ic svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.developer-layout {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.developer-image-card {
    display: flex;
    border: 1px solid #f1cca9;
    background: #fff7ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(172, 96, 22, 0.15);
}

.developer-image-card img {
    width: 100%;
    display: block;
    height: auto;
    min-height: 100%;
    object-fit: cover;
}

.footer {
    background: linear-gradient(135deg, #df6f13 0%, #f28122 52%, #d86407 100%);
    color: #fff8ef;
    padding: 2.3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer a {
    color: #fff8ef;
    text-decoration: none;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.footer h3,
.footer h4 {
    margin-bottom: 0.65rem;
}

.footer-logo {
    width: 170px;
    max-width: 100%;
    display: block;
    margin-bottom: 0.65rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1.4;
}

.footer-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.footer-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-address {
    margin: 0 0 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.55;
}

.footer .btn.btn-accent {
    background: #fff;
    color: #ba4f00;
    font-weight: 700;
}

.footer-meta {
    margin: 0 0 0.45rem;
    line-height: 1.45;
}

.footer-meta a {
    text-decoration: underline;
}

.footer-visit-btn {
    margin: 0 0 0.8rem;
    width: 100%;
}

.footer-bottom {
    margin-top: 1.2rem;
    background: rgba(70, 27, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    text-align: center;
    padding: 0.85rem 0.6rem;
    font-size: 0.83rem;
    letter-spacing: 0.02em;
}

.footer-disclaimer {
    margin-top: 0.85rem;
    padding: 0.85rem 0.9rem;
    background: rgba(70, 27, 0, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    line-height: 1.55;
}

.footer-legal-links {
    text-align: center;
    font-size: 0.82rem;
    padding: 0.75rem 0.6rem 1rem;
    opacity: 0.98;
}

.footer-legal-links a {
    color: #fff8ef;
    text-decoration: underline;
    font-weight: 600;
}

.footer-credit {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    padding: 0.55rem 1rem;
    max-width: fit-content;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(70, 27, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(50, 18, 0, 0.2);
}

.footer-credit a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 800;
}

.footer-credit a:hover {
    color: #ffe8cc;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 50;
}

.modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 16, 0.72);
}

.modal-panel {
    position: relative;
    max-width: 480px;
    margin: 8vh auto;
    background: #fff;
    border-radius: 12px;
    padding: 1.4rem;
    z-index: 1;
}

.modal-close {
    position: absolute;
    right: 0.65rem;
    top: 0.65rem;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
}

form {
    display: grid;
    gap: 0.5rem;
}

input {
    border: 1px solid #c8cfdb;
    border-radius: 5px;
    padding: 0.65rem;
    font: inherit;
}

.full {
    width: 100%;
    margin-top: 0.5rem;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.float-cta {
    position: fixed;
    right: 14px;
    color: #fff;
    text-decoration: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-weight: 600;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.float-cta svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.float-cta.call {
    background: #3d3d3d;
    bottom: 75px;
    animation: callPulse 1.4s ease-in-out infinite;
}

.float-cta.whatsapp {
    background: #25d366;
    bottom: 20px;
    animation: whatsappPulse 1.6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .brand img {
        height: 44px;
    }
    .top-contact,
    .topbar-inner > .open-enquiry {
        display: none;
    }
    .hero {
        min-height: 78vh;
        align-items: flex-start;
        padding-top: 0.65rem;
    }
    .hero-content {
        max-width: 92%;
        width: 100%;
        padding: 1rem 0.85rem;
        margin: 0 auto;
    }
    .hero h1 {
        font-size: clamp(1.95rem, 8.6vw, 2.7rem);
        line-height: 1.15;
        margin: 0.45rem 0 0.65rem;
    }
    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
    .hero-subline {
        font-size: clamp(1rem, 4.9vw, 1.5rem);
        line-height: 1.3;
    }
    .hero-price {
        font-size: clamp(1.15rem, 5.1vw, 1.55rem);
        line-height: 1.35;
        margin-top: 0.8rem;
    }
    .hero-price-value {
        font-size: clamp(1.95rem, 8.3vw, 2.7rem);
        line-height: 1.1;
    }
    .hero-highlights {
        gap: 0.42rem;
        margin-top: 0.72rem;
    }
    .hero-highlights span {
        font-size: clamp(0.84rem, 3.6vw, 1rem);
        padding: 0.28rem 0.62rem;
        line-height: 1.2;
    }
    .hero-cta {
        gap: 0.65rem;
        margin-top: 0.95rem;
    }
    .hero-cta .btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 145px;
        text-align: center;
        padding: 0.68rem 0.75rem;
        font-size: 0.95rem;
    }
    .menu-toggle {
        display: inline-flex;
        animation: none;
    }
    .nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 0;
    }
    .nav.nav-open {
        max-height: 360px;
        border-bottom: 1px solid #dedede;
    }
    .nav-inner {
        justify-content: flex-start;
        flex-direction: column;
        gap: 0.85rem;
        padding: 0.9rem 0;
        align-items: flex-start;
    }
    .pricing-top {
        grid-template-columns: 1fr;
    }
    .plans-layouts {
        grid-template-columns: 1fr;
    }
    .overview-hero-layout {
        grid-template-columns: 1fr;
    }
    .overview-side-card img {
        height: 260px;
    }
    .connectivity-layout {
        grid-template-columns: 1fr;
    }
    .connectivity-head {
        flex-wrap: wrap;
    }
    .map-card img {
        min-height: 280px;
    }
    .overview-block,
    .overview-block.reverse {
        grid-template-columns: 1fr;
    }
    .developer-layout {
        grid-template-columns: 1fr;
    }
    .developer-image-card img {
        min-height: 260px;
    }
    .overview-block.reverse img {
        order: 0;
    }
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes blinkCaret {
    0%, 100% {
        border-right-color: rgba(255, 255, 255, 0.9);
    }
    50% {
        border-right-color: transparent;
    }
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(61, 61, 61, 0.45);
    }
    60% {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(61, 61, 61, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(61, 61, 61, 0);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42);
    }
    60% {
        transform: scale(1.06);
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes offerBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(216, 94, 0, 0);
    }
    50% {
        opacity: 0.28;
        text-shadow: 0 0 10px rgba(216, 94, 0, 0.4);
    }
}
