body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', 'Open Sans', Arial, sans-serif;
    background: #f8fafc;
    color: #222e3a;
}
h1, h2, h3 {
    font-family: 'Montserrat', Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px; /* Bigger bar */
    padding: 0 36px 0 56px; /* No vertical padding, more left padding */
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(34,46,58,0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}
.logo-area {
    display: flex;
    align-items: center;
    margin-left: 24px; /* Shift logo/text to right */
}
.logo {
    height: 82px; /* Bigger logo */
    margin-right: 22px;
}
.tagline {
    font-size: 1.15em;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1.2px;
}
nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 34px;
    list-style: none;
}
nav li a {
    font-weight: 700;
    font-size: 1.04em; /* Reduced font size */
    transition: color 0.2s;
    padding: 0 2px;
}
nav li a:hover { color: #ff8800; }
.btn-quote {
    background: #ff8800;
    padding: 0.5px 22px;
    border-radius: 26px;
    color: #fff;
    font-weight: 700;
    margin-left: 32px;
    transition: background 0.2s;
    border: none;
    font-size: 1.13em;
    height: 48px;
    display: flex;
    align-items: center;
}
.btn-quote:hover { background: #222e3a; color: #fff; }

.hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 28, 38, 0.55); /* dark overlay for text readability */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 16px 56px 16px;
}
.hero-content h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-content h1 span {
    color: #ff8800;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content p {
    font-size: 1.3em;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.btn-main {
    background: linear-gradient(90deg, #fd9116e4 0%, #fcda17e4 100%);
    color: #222e3a;
    padding: 14px 38px;
    border-radius: 28px;
    font-size: 1.15em;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 18px 0 rgba(255,136,0,0.13);
    transition: transform 0.18s, box-shadow 0.18s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-main:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(255,136,0,0.18);
}

.section {
    padding: 58px 18px 38px 18px;
    max-width: 1240px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(34,46,58,0.08);
    margin-bottom: 38px;
}
.section h2 {
    text-align: center;
    font-size: 2em;
    color: #222e3a;
    margin-bottom: 38px;
    letter-spacing: 1px;
    font-weight: 800;
}

/* Contact Section: Side-by-side layout */
.section.contact {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 22px 8px 16px 8px; /* Reduced vertical padding */
    max-width: 900px;           /* Slightly narrower container */
    margin: 0 auto 38px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(34,46,58,0.08);
}

.contact-title {
    width: 100%;
    text-align: center;
    font-size: 2em;
    color: #222e3a;
    margin-bottom: 18px; /* Less space below heading */
    letter-spacing: 1px;
    font-weight: 800;
}

.contact-columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 18px; /* Reduced gap between form and info */
    width: 100%;
}

.contact-form {
    align-self: flex-start; /* Align form to top */
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(255,200,0,0.10);
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 400px;               /* Increased width for both columns */
    min-width: 300px;
    max-width: 100%;
}

.contact-form input,
.contact-form textarea {
    border: 1.5px solid #ffd700;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 1.08em;
    background: #f8fafc;
    color: #222e3a;
    margin-bottom: 0;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff8800;
    outline: none;
}

.contact-form button.btn-main {
    margin-top: 8px;
    width: 100%;
    font-size: 1.13em;
    border-radius: 14px;
    padding: 14px 0;
    background: linear-gradient(90deg, #fd9116e4 0%, #fcda17e4 100%);
    color: #222e3a;
    font-weight: 800;
    box-shadow: 0 4px 18px 0 rgba(255,136,0,0.13);
    border: none;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
}

.contact-info {
    align-self: flex-start; /* Align info to top */
    width: 400px;               /* Increased width for both columns */
    min-width: 300px;
    max-width: 100%;
    padding: 32px 0 0 0;
    text-align: left;
    font-size: 1.08em;
    color: #222e3a;
    line-height: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    margin: 0 0 6px 0;
    font-size: 1.08em;
    word-break: break-word;
}

.contact-info strong {
    color: #222e3a;
    font-weight: 700;
}

.contact-info .location-address {
    line-height: 1.5;
    margin: 0;
    white-space: normal; /* Remove pre-line to avoid forced breaks */
}
.whatsapp-link {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    background: #25D366;
    padding: 10px 28px;
    border-radius: 22px;
    font-weight: bold;
    font-size: 1.08em;
    box-shadow: 0 2px 10px 0 rgba(34,46,58,0.07);
    text-decoration: none;
    transition: background 0.18s;
}

.whatsapp-link:hover {
    background: #1ebe57;
}

.packages .package-list {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: center;
}
.package-card {
    background: #f7f8fa;
    border-radius: 15px;
    padding: 22px 18px;
    text-align: center;
    width: 192px;
    box-shadow: 0 2px 14px 0 rgba(34,46,58,0.08);
    transition: transform 0.2s;
}
.package-card:hover {
    transform: translateY(-7px) scale(1.03);
    background: #fff6e0;
}
.package-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 12px;
}
.package-card.new-style {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(34,46,58,0.10);
    overflow: hidden;
    width: 320px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s;
}
.package-card.new-style:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(34,46,58,0.16);
}
.package-img-block {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: #f7f8fa;
}
.package-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.package-rating {
    position: absolute;
    top: 18px;
    right: 12px;
    background: #fff;
    color: #222e3a;
    font-weight: 700;
    font-size: 1.05em;
    border-radius: 22px;
    padding: 2px 8px 2px 4px;
    box-shadow: 0 2px 8px 0 rgba(34,46,58,0.10);
    display: flex;
    align-items: center;
    gap: 2.5px;
}
.package-rating .star {
    color: #ffcc55;
    font-size: 1.1em;
    margin-right: 2px;
}
.package-card-body {
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.package-card-body h3 {
    font-size: 1.35em;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #222e3a;
}
.package-info {
    display: flex;
    gap: 18px;
    font-size: 1em;
    color: #444;
    margin-bottom: 18px;
}
.btn-details {
    background: linear-gradient(90deg, #1769ff 0%, #19cfff 100%);
    color: #fff;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 1.08em;
    font-weight: 700;
    text-align: center;
    width: 100%;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.18s;
    display: inline-block;
    box-shadow: 0 2px 8px 0 rgba(34,46,58,0.07);
    border: none;
    cursor: pointer;
}
.btn-details:hover {
    background: linear-gradient(90deg, #19cfff 0%, #1769ff 100%);
}
.btn-details .arrow {
    font-size: 1.1em;
    margin-left: 6px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 44px;
    max-width: 900px;
    margin: 0 auto;
}
.about-container,
.about-container.wide-about {
    max-width: 1400px;
    width: 98%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 32px 0 18px 0;
}
.about-logo {
    width: 104px;
    border-radius: 24px;
    box-shadow: 0 4px 14px 0 rgba(255,204,85,0.08);
    background: #fff;
    min-width: 174px;
    height: 100px;
}
.about-text {
    flex: 1;
    max-width: 950px;
}
.about-text h2 {
    text-align: left;
    margin-bottom: 18px;
}
.about-text p {
    font-size: 1.18em;
    color: #444;
    line-height: 1.5;
    max-width: 100%;
}

/* About Us Modern Section */
.about-title {
    text-align: center;
    font-size: 2.4em;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222e3a;
}
.about-subtitle {
    text-align: center;
    font-size: 1.25em;
    color: #444;
    margin-bottom: 38px;
}
.about-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 56px;
    max-width: 1300px;
    margin: 0 auto 38px auto;
    flex-wrap: wrap;
}
.about-main-text {
    flex: 1.2;
    min-width: 320px;
    max-width: 540px;
}
.about-main-text h3 {
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 16px;
    color: #222e3a;
}
.about-main-text p {
    font-size: 1.08em;
    color: #444;
    margin-bottom: 14px;
    line-height: 1.6;
}
.about-highlights {
    margin-top: 18px;
    display: flex;
    gap: 30px; /* Increased spacing between items */
    color: #000000;
    font-weight: 900;
    font-size: 1.08em;
    flex-wrap: wrap;
}
.about-image-block {
    position: relative;
    min-width: 320px;
    max-width: 420px;
}
.about-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(34,46,58,0.13);
    display: block;
}
.about-years {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(34,46,58,0.10);
    padding: 18px 28px 12px 28px;
    text-align: center;
    min-width: 90px;
}
.years-number {
    font-size: 2em;
    font-weight: 800;
    color: #3366ff;
    display: block;
    line-height: 1;
}
.years-label {
    font-size: 1em;
    color: #222e3a;
    font-weight: 600;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 38px;
    flex-wrap: wrap;
}
.about-stat {
    text-align: center;
    min-width: 120px;
}
.about-stat-icon {
    font-size: 2.2em;
    margin-bottom: 8px;
    color: #3366ff;
}
.about-stat-number {
    font-size: 1.5em;
    font-weight: 800;
    color: #222e3a;
}
.about-stat-label {
    font-size: 1em;
    color: #444;
    margin-top: 2px;
}

.why-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.why-card {
    background: #fff5dd;
    border-radius: 22px;
    padding: 32px 28px 24px 28px;
    text-align: center;
    width: 260px;
    box-shadow: 0 2px 12px 0 rgba(255,204,85,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-card span {
    font-size: 2.4em;
    margin-bottom: 12px;
    display: block;
}

.why-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.18em;
    font-weight: 800;
    color: #222e3a;
}

.why-card p {
    font-size: 1em;
    color: #444;
    margin-bottom: 0;
}

.customers .testimonial-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-card {
    background: #f1f5fa;
    border-radius: 10px;
    padding: 30px 20px 24px 20px;
    max-width: 270px;
    box-shadow: 0 2px 10px 0 rgba(34,46,58,0.07);
    position: relative;
    text-align: center;
}
.testimonial-card:before {
    content: "❝";
    font-size: 2.2em;
    color: #ffcc55;
    position: absolute;
    left: 16px;
    top: 0;
}
.testimonial-card:after {
    content: "❞";
    font-size: 2.2em;
    color: #ffcc55;
    position: absolute;
    right: 16px;
    bottom: 0;
}
.customer-name {
    margin-top: 16px;
    font-weight: bold;
    color: #ff8800;
    font-size: 1em;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    align-items: flex-start;
    justify-content: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    width: 330px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px 0 rgba(255,204,85,0.12);
    gap: 18px;
}
.contact-form input,
.contact-form textarea {
    border: 2px solid #f7dd97;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 1em;
    resize: none;
    font-family: inherit;
}
.contact-form textarea {
    height: 92px;
}
.contact-form button {
    margin-top: 8px;
}
.contact-info {
    min-width: 250px;
    font-size: 1.08em;
    color: #222e3a;
    margin-top: 16px;
    line-height: 1.6;
}
.whatsapp-link {
    display: inline-block;
    margin-top: 6px;
    color: #fff;
    background: #25D366;
    padding: 8px 20px;
    border-radius: 18px;
    font-weight: bold;
    font-size: 1em;
}

footer {
    background: #222e3a;
    color: #fff;
    padding: 0;
    text-align: center;
}

.footer-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 50px;
    padding: 0;
}

.footer-logo {
    height: 38px;
    margin-bottom: 0;
}

.footer-rights {
    margin: 0;
    font-size: 1em;
    font-weight: 400;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: center;
    margin-top: 32px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px 22px 22px;
    text-align: left;
    width: 290px;
    box-shadow: 0 2px 14px 0 rgba(34,46,58,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 6px 24px 0 rgba(34,46,58,0.13);
}
.service-icon {
    font-size: 2.4em;
    margin-bottom: 12px;
    display: block;
}
.service-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.18em;
    font-weight: 800;
    color: #222e3a;
}
.service-card p {
    font-size: 1em;
    color: #444;
    margin-bottom: 12px;
}
.service-card ul {
    padding-left: 18px;
    margin: 0;
    color: #222e3a;
    font-size: 0.98em;
}
.service-card ul li {
    margin-bottom: 5px;
    list-style: disc;
}

.topbar-contact {
    font-weight: 700;
    color: #222e3a;
    font-size: 1.08em;
    margin-left: 32px;
    text-align: right;
    line-height: 1.3;
    min-width: 200px;
    background: #f7f8fa;
    padding: 10px 22px;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
    display: inline-block;
}
.topbar-contact a {
    color: #222e3a;
    font-weight: 700;
    text-decoration: none;
    font-size: 1em;
}
.topbar-contact a:hover {
    color: #ff8800;
    text-decoration: underline;
}
.contact-label {
    color: #000000;
    font-size: 1.08em;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: none; /* Ensure normal case, not uppercase */
    margin-bottom: 2px;
    display: inline-block;
}
.contact-phone {
    color: #222e3a;
    font-weight: 800;
    font-size: 1.08em;
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 2px;
}
.contact-phone:hover {
    color: #ff8800;
    text-decoration: underline;
}
.contact-icon {
    font-size: 1.15em;
    margin-right: 4px;
    vertical-align: middle;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(34,46,58,0.18);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.18s, transform 0.18s;
}
.floating-whatsapp:hover {
    box-shadow: 0 8px 32px rgba(34,46,58,0.28);
    transform: scale(1.08);
    background: #1aae53;
}
.floating-whatsapp svg {
    width: 38px;
    height: 38px;
    display: block;
}

/* Mobile-specific styles */
@media (max-width: 670px) {
    .topbar {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding: 12px 8px;
        box-sizing: border-box;
        transition: transform 0.3s;
    }
    .topbar.hide-on-scroll {
        transform: translateY(-100%);
    }
    .logo-area {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 12px 18px;
        width: 100%;
        padding: 0;
        margin: 12px 0 0 0;
        list-style: none;
    }
    nav ul li a {
        font-size: 1em;
        padding: 6px 10px;
        display: inline-block;
    }
    .topbar-contact {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .section,
    .hero {
        margin-top: 12px;
    }
    /* Sticky logo for mobile */
    .sticky-mobile-logo {
        position: sticky;
        top: 0;
        left: 0;
        width: 100vw;
        background: #fff;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0;
        box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
    }
    .sticky-mobile-logo .mini-logo {
        height: 38px;
    }
}

/* Hide sticky logo on desktop */
@media (min-width: 671px) {
    .sticky-mobile-logo {
        display: none !important;
    }
}

@media (max-width: 990px) {
    .about-container, .why-cards, .packages .package-list, .customers .testimonial-list, .contact {
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }
    .about-logo { margin-bottom: 18px; }
}
@media (max-width: 670px) {
    .topbar {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding: 12px 8px;
        box-sizing: border-box;
    }
    .logo-area {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 12px 18px; /* space between items */
        width: 100%;
        padding: 0;
        margin: 12px 0 0 0;
        list-style: none;
    }
    nav ul li {
        flex: 0 1 auto;
        margin: 0;
    }
    nav ul li a {
        font-size: 1em;
        padding: 6px 10px;
        display: inline-block;
    }
    .topbar-contact {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .section,
    .hero {
        margin-top: 12px; /* Add space below topbar */
    }
}
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .about-image-block {
        max-width: 98vw;
    }
    .about-main-text {
        max-width: 98vw;
    }
    .about-stats {
        gap: 32px;
    }
    .package-card.new-style {
        width: 98vw;
        max-width: 350px;
    }
    .package-list {
        gap: 18px;
    }
    .contact-columns {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}
@media (max-width: 600px) {
    .about-title { font-size: 1.4em; }
    .about-subtitle { font-size: 1em; }
    .about-years { padding: 10px 14px 6px 14px; min-width: 60px;}
    .about-stats { gap: 16px; }
    .about-stat { min-width: 80px; }
}
html {
    scroll-behavior: smooth;
}
@media (max-width: 670px) {
    .topbar.hide-on-scroll {
        transform: translateY(-100%);
        transition: transform 0.3s;
    }
    .topbar {
        transition: transform 0.3s;
    }
}
@media (max-width: 990px) and (min-width: 671px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 16px 12px;
        box-sizing: border-box;
        width: 100%;
    }
    .logo-area {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        width: 100%;
    }
    .logo {
        height: 48px;
        margin-right: 12px;
    }
    .tagline {
        font-size: 1.3em;
        font-weight: 700;
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px 18px;
        width: 100%;
        padding: 0;
        margin: 0 0 8px 0;
        list-style: none;
    }
    nav ul li {
        flex: 0 1 auto;
        margin: 0;
    }
    nav ul li a {
        font-size: 1em;
        padding: 6px 10px;
        display: inline-block;
        white-space: nowrap;
    }
    .topbar-contact {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        font-size: 1em;
        border-radius: 12px;
        padding: 8px 0;
    }
    .contact-columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        width: 100%;
    }
    .contact-form,
    .contact-info {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 1200px) and (min-width: 671px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 16px 12px;
        box-sizing: border-box;
        width: 100%;
    }
    .logo-area {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        width: 100%;
        gap: 8px; /* Reduce gap between logo and title */
    }
    .logo {
        height: 48px;
        margin-right: 0;
    }
    .site-title, .tagline {
        font-size: 2em;
        font-family: 'Pacifico', cursive;
        font-weight: 400;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px 18px;
        width: 100%;
        padding: 0;
        margin: 0 0 8px 0;
        list-style: none;
    }
    nav ul li {
        flex: 0 1 auto;
        margin: 0;
    }
    nav ul li a {
        font-size: 1em;
        padding: 6px 10px;
        white-space: nowrap;
    }
    .topbar-contact {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        font-size: 1em;
        border-radius: 12px;
        padding: 8px 0;
    }
    .contact-columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        width: 100%;
    }
    .contact-form,
    .contact-info {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 1300px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 12px 8px;
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
    }
    .logo-area {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        width: 100%;
        gap: 8px;
        min-width: 0;
    }
    .logo {
        height: 48px;
        margin-right: 0;
        min-width: 0;
        max-width: 100%;
    }
    .site-title, .tagline {
        font-size: 2em;
        font-family: 'Pacifico', cursive;
        font-weight: 400;
        letter-spacing: 1px;
        white-space: nowrap;
        min-width: 0;
        max-width: 100%;
    }
    nav {
        width: 100%;
        min-width: 0;
        overflow-x: auto;
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px 18px;
        width: 100%;
        padding: 0;
        margin: 0 0 8px 0;
        list-style: none;
        min-width: 0;
        max-width: 100%;
    }
    nav ul li {
        flex: 0 1 auto;
        margin: 0;
        min-width: 0;
        max-width: 100%;
    }
    nav ul li a {
        font-size: 1em;
        padding: 6px 10px;
        white-space: nowrap;
        min-width: 0;
        max-width: 100%;
    }
    .topbar-contact {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        font-size: 1em;
        border-radius: 12px;
        padding: 8px 0;
        min-width: 0;
        max-width: 100%;
    }
}

/* --- Topbar Responsive Fix for 1200px - 1300px --- */
@media (max-width: 1300px) and (min-width: 1100px) {
    .topbar {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        padding: 0 24px 0 24px;
        flex-wrap: wrap;
    }
    .logo-area {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 0;
        margin-bottom: 0;
        width: auto;
        min-width: 320px;
    }
    .logo {
        height: 48px;
        margin-right: 8px;
    }
    .site-title {
        font-size: 1.7em;
        margin-right: 24px;
        white-space: nowrap;
    }
    nav {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 24px;
    }
    nav ul {
        gap: 24px;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
    nav ul li {
        margin: 0;
    }
    nav ul li a {
        font-size: 1.08em;
        padding: 4px 8px;
        white-space: nowrap;
    }
    .topbar-contact {
        margin-left: 32px;
        font-size: 1em;
        width: 220px;
        padding: 10px 18px;
        border-radius: 14px;
        text-align: right;
        background: #f7f8fa;
        box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
        display: inline-block;
        min-width: 180px;
    }
}

/* --- Topbar Responsive Layout: Prevent menu wrap, center logo/title if menu wraps --- */
@media (max-width: 1300px) and (min-width: 1050px) {
    .topbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 0 24px;
        height: 80px;
        min-width: 0;
    }
    .logo-area {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
        margin-left: 0;
        width: auto;
        min-width: 320px;
    }
    nav {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 32px;
    }
    nav ul {
        display: flex;
        flex-direction: row;
        gap: 24px;
        flex-wrap: nowrap;
        width: auto;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
    nav ul li {
        margin: 0;
    }
    nav ul li a {
        font-size: 1.08em;
        padding: 4px 8px;
        white-space: nowrap;
    }
    .topbar-contact {
        margin-left: 32px;
        font-size: 1em;
        width: 220px;
        padding: 10px 18px;
        border-radius: 14px;
        text-align: right;
        background: #f7f8fa;
        box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
        display: inline-block;
        min-width: 180px;
    }
}

/* --- If menu wraps, center logo/title and stack menu below --- */
@media (max-width: 1050px) {
    .topbar {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 8px;
        height: auto;
    }
    .logo-area {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
        margin-left: 0;
        width: 100%;
    }
    nav {
        width: 100%;
        margin-left: 0;
    }
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px 24px;
        justify-content: center;
        width: 100%;
        margin: 0 0 8px 0;
        padding: 0;
    }
    nav ul li {
        margin: 0;
    }
    nav ul li a {
        font-size: 1em;
        padding: 6px 10px;
        white-space: nowrap;
    }
    .topbar-contact {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: center;
        font-size: 1em;
        border-radius: 12px;
        padding: 8px 0;
        background: #f7f8fa;
        box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
        display: block;
    }
}

/* --- Force topbar to stack vertically between 1600px and 1120px --- */
@media (max-width: 1700px) and (min-width: 1000px) {
    .topbar {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: auto !important;
        padding: 18px 12px !important;
        box-sizing: border-box;
        width: 100%;
    }
    .logo-area {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    .logo {
        height: 56px !important;
        margin-right: 16px !important;
    }
    .site-title {
        font-size: 2.2em !important;
        white-space: nowrap !important;
    }
    nav {
        width: 100% !important;
        margin-left: 0 !important;
    }
    nav ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 22px 32px !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }
    nav ul li {
        margin: 0 !important;
    }
    nav ul li a {
        font-size: 1.15em !important;
        padding: 8px 12px !important;
        white-space: nowrap !important;
    }
    .topbar-contact {
        margin-left: 0 !important;
        margin-top: 12px !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 1.08em !important;
        border-radius: 14px !important;
        padding: 10px 0 !important;
        background: #f7f8fa !important;
        box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07) !important;
        display: block !important;
    }
}

/* Hide menu bar on scroll for stacked topbar (below 1731px) */
@media (max-width: 1730px) {
    .topbar.hide-menu nav,
    .topbar.hide-menu .topbar-contact {
        display: none !important;
    }
    .topbar.hide-menu .logo-area {
        margin-bottom: 0 !important;
    }
}

/* Hide mini-topbar by default */
.mini-topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    opacity: 0;
    transform: translateY(-100%);
    gap: 12px;
}
.mini-topbar.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.mini-logo {
    height: 40px;
}
.mini-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.5em;
    color: #22323a;
}

/* Hide main topbar when scrolled */
@media (max-width: 1730px) {
    .topbar.hide-on-scroll {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    }
}

/* Make topbar fixed and full width for smooth transition */
@media (max-width: 1730px) {
    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .topbar.hide-on-scroll {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
    /* Add margin-top to body so content doesn't hide under topbar */
    body {
        margin-top: 110px; /* Adjust to your topbar height */
    }
    .mini-topbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 101;
        display: none;
        align-items: center;
        justify-content: center;
        background: #fff;
        box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
        padding: 8px 0;
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
        opacity: 0;
        transform: translateY(-100%);
        gap: 12px;
    }
    .mini-topbar.visible {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add top margin to body for fixed topbar at tablet/desktop breakpoints */
@media (max-width: 1730px) {
    body {
        margin-top: 190px; /* Adjust this value to match your topbar height */
    }
}

/* Hide sticky-mobile-logo for all resolutions */
.sticky-mobile-logo {
    display: none !important;
}

/* Set margin-top: 200px for screens between 400px and 900px width, and 600px to 900px height */
@media (min-width: 360px) and (max-width: 900px) and (min-height: 600px) and (max-height: 900px) {
    body {
        margin-top: 215px !important;
    }
}
