    /* ── CSS Variables ── */
    :root {
        --navy: #0d1b3e;
        --navy-mid: #162451;
        --navy-light: #1e3166;
        --gold: #b8962e;
        --gold-light: #d4af5a;
        --gold-pale: #f0dfa0;
        --white: #ffffff;
        --off-white: #f7f5f0;
        --text-muted: #8a9bbf;
        --border: rgba(184, 150, 46, 0.18);
        --shadow-gold: 0 8px 40px rgba(184, 150, 46, 0.15);
        --shadow-navy: 0 8px 40px rgba(13, 27, 62, 0.25);
        --radius: 16px;
        --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* ── Reset & Base ── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Cairo', sans-serif;
        background: var(--off-white);
        color: var(--navy);
        overflow-x: hidden;
        direction: rtl;
    }

    /* ── Scroll Animation Base States ── */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered delays */
    .delay-1 {
        transition-delay: 0.1s;
    }

    .delay-2 {
        transition-delay: 0.2s;
    }

    .delay-3 {
        transition-delay: 0.3s;
    }

    .delay-4 {
        transition-delay: 0.4s;
    }

    .delay-5 {
        transition-delay: 0.5s;
    }

    /* ── Shared Section Styles ── */
    section {
        padding: 60px 0;
    }

    .section-label {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        color: var(--gold);
        background: rgba(184, 150, 46, 0.1);
        border: 1px solid var(--border);
        border-radius: 100px;
    }

    .section-label p{
        color:rgba(255,255,255,0.6);
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        color: var(--navy);
        line-height: 1.25;
    }

    .section-title span {
        color: var(--gold);
    }

    .section-sub {
        font-size: 1.05rem;
        color: #4a5a7a;
        line-height: 1.8;
        max-width: 560px;
    }

    /* ── Gold Divider ── */
    .gold-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        border-radius: 100px;
    }

    /* ── Buttons ── */
    .btn-gold {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: var(--navy);
        padding: 14px 34px;
        border-radius: 100px;
        box-shadow: 0 4px 20px rgba(184, 150, 46, 0.35);
        transition: var(--transition);
    }

    .btn-gold::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .btn-gold:hover::after {
        transform: translateX(0);
    }

    .btn-gold:hover {
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(184, 150, 46, 0.45);
    }

    .btn-outline-gold {
        background: transparent;
        color: var(--gold-light);
        padding: 13px 34px;
        border: 2px solid var(--gold);
        border-radius: 100px;
        transition: var(--transition);
    }

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
    }

    /* SECTION 1 — NAVBAR */
    #navbar {
        z-index: 1000;
        padding: 18px 0;
        transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }

    #navbar.scrolled {
        background: rgba(13, 27, 62, 0.97);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        padding: 10px 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-brand-text {
        color: var(--white) !important;
        letter-spacing: 0.02em;
    }

    .navbar-brand-text .brand-en {
        font-size: 0.75rem;
        color: var(--gold-light);
        letter-spacing: 0.15em;
        margin-top: -4px;
    }

    .brand-dot {
        width: 8px;
        height: 8px;
        background: var(--gold);
        margin-left: 6px;
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.5);
            opacity: 0.6;
        }
    }

    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.95rem;
        padding: 6px 16px !important;
        border-radius: 8px;
        transition: var(--transition);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        right: 16px;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .navbar-nav .nav-link:hover {
        color: var(--gold-light) !important;
    }

    .navbar-nav .nav-link:hover::after {
        width: calc(100% - 32px);
    }

    .navbar-toggler {
        border: 1px solid rgba(184, 150, 46, 0.4);
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28184%2C150%2C46%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* SECTION 2 — HERO */
    #hero {
        min-height: 100vh;
        background:
            linear-gradient(135deg, rgba(13, 27, 62, 0.96) 0%, rgba(22, 36, 81, 0.93) 50%, rgba(30, 49, 102, 0.9) 100%),
            url('../images/hero-sec-bg.jfif') center/cover no-repeat;
        padding-top: 80px;
    }

    /* Grid lines decoration */
    .hero-badge {
        background: rgba(184, 150, 46, 0.12);
        border: 1px solid rgba(184, 150, 46, 0.3);
        color: var(--gold-light);
        font-size: 0.82rem;
        padding: 8px 20px;
        border-radius: 100px;
        letter-spacing: 0.05em;
        animation: fade-down 0.8s ease 0.3s both;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 20px;
        animation: fade-up 0.9s ease 0.5s both;
    }

    .hero-title .highlight {
        color: transparent;
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .hero-sub {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.9;
        max-width: 560px;
        margin-bottom: 36px;
        animation: fade-up 0.9s ease 0.7s both;
    }

    .hero-actions {
        animation: fade-up 0.9s ease 0.9s both;
    }

    .hero-stats {
        gap: 40px;
        margin-top: 56px;
        animation: fade-up 0.9s ease 1.1s both;
    }

    .hero-stat-num {
        color: var(--gold-light);
        line-height: 1;
    }

    .hero-stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.55);
    }

    .hero-stat-divider {
        width: 1px;
        background: rgba(184, 150, 46, 0.25);
        align-self: stretch;
    }

    .hero-stat-stars {
        gap: 2px;
        color: var(--gold);
        font-size: 0.8rem;
        margin: 4px 0 2px;
    }

    .hero-stat-rating {
        font-size: 1.8rem !important;
    }

    /* Hero image card */
    .hero-image-wrap {
        animation: fade-left 1s ease 0.6s both;
    }

    .hero-img-card {
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(184, 150, 46, 0.15);
    }

    .hero-img-card img {
        height: 420px;
        object-fit: cover;
    }

    .hero-img-overlay {
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 62, 0.7) 100%);
    }

    /* Floating badge on hero image */
    .hero-float-badge {
        bottom: 24px;
        right: 24px;
        background: rgba(13, 27, 62, 0.95);
        border: 1px solid rgba(184, 150, 46, 0.3);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 12px 20px;
        gap: 12px;
    }

    .hero-float-badge .icon-wrap {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        border-radius: 10px;
        color: var(--navy);
        font-size: 1.1rem;
    }

    .hero-float-badge .badge-title {
        font-size: 0.95rem;
        color: white;
        line-height: 1;
    }

    .hero-float-badge .badge-sub {
        font-size: 0.75rem;
        color: var(--gold-light);
        margin-top: 3px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.75rem;
        animation: fade-in 1s ease 1.5s both;
    }

    .scroll-mouse {
        width: 24px;
        height: 36px;
        border: 2px solid rgba(255, 255, 255, 0.25);
        border-radius: 12px;
        position: relative;
    }

    .scroll-mouse::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 6px;
        background: var(--gold-light);
        border-radius: 3px;
        animation: scroll-anim 2s infinite;
    }

    @keyframes scroll-anim {
        0% {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        100% {
            opacity: 0;
            transform: translateX(-50%) translateY(12px);
        }
    }

    /* Keyframes */
    @keyframes fade-up {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fade-down {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fade-left {
        from {
            opacity: 0;
            transform: translateX(40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fade-in {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* SECTION 3 — ABOUT */
    #about {
        background: var(--white);
    }

    .about-bg-pattern {
        background-image: radial-gradient(rgba(13, 27, 62, 0.04) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
    }

    .about-img-main {
        border-radius: 24px;
        box-shadow: var(--shadow-navy);
        object-fit: cover;
        height: 480px;
    }

    .about-badge-float {
        top: -20px;
        left: -20px;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--navy);
        border-radius: 20px;
        padding: 20px 28px;
        box-shadow: var(--shadow-gold);
    }

    .about-badge-float .num {
        font-size: 2.5rem;
        line-height: 1;
    }

    .about-badge-float .lbl {
        font-size: 0.85rem;
    }

    .about-feature-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, rgba(184, 150, 46, 0.12), rgba(184, 150, 46, 0.06));
        border: 1px solid rgba(184, 150, 46, 0.2);
        border-radius: 14px;
        color: var(--gold);
        font-size: 1.2rem;
    }

    .about-feature-title {
        color: var(--navy);
    }

    .about-feature-text {
        font-size: 0.9rem;
        color: #5a6a88;
        line-height: 1.7;
    }

    /* SECTION 4 — SERVICES*/
    #services {
        background: var(--off-white);
    }

    .services-header {
        margin-bottom: 60px;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 40px 32px;
        border: 1px solid rgba(13, 27, 62, 0.06);
        box-shadow: 0 4px 24px rgba(13, 27, 62, 0.06);
        transition: var(--transition);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(13, 27, 62, 0.12);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon-wrap {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--navy), var(--navy-light));
        border-radius: 20px;
        margin-bottom: 28px;
        font-size: 1.8rem;
        color: var(--gold-light);
        box-shadow: 0 8px 24px rgba(13, 27, 62, 0.25);
        transition: var(--transition);
    }

    .service-card:hover .service-icon-wrap {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--navy);
        transform: scale(1.05) rotate(-3deg);
    }

    .service-title {
        color: var(--navy);
        margin-bottom: 14px;
    }

    .service-text {
        font-size: 0.93rem;
        color: #5a6a88;
        line-height: 1.8;
    }

    .service-features {
        margin: 0 0 28px;
    }

    .service-features li {
        gap: 10px;
        font-size: 0.88rem;
        color: #4a5a78;
        margin-bottom: 10px;
    }

    .service-features li i {
        color: var(--gold);
        font-size: 0.85rem;
    }

    .service-link {
        color: var(--gold);
        font-size: 0.9rem;
        gap: 6px;
        transition: gap 0.3s ease;
    }

    .service-link:hover {
        gap: 12px;
        color: var(--gold);
    }

    /* Card number watermark */
    .service-num {
        top: 20px;
        left: 28px;
        font-size: 5rem;
        color: rgba(13, 27, 62, 0.04);
        line-height: 1;
        pointer-events: none;
    }

    /* SECTION 5 — WHY US (bonus) */
    #why-us {
        background: var(--navy);
    }

    .why-bg {
        inset: 0;
        background:
            radial-gradient(circle at 80% 20%, rgba(184, 150, 46, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(184, 150, 46, 0.08) 0%, transparent 40%);
        pointer-events: none;
    }

    #why-us .section-title {
        color: var(--white);
    }

    #why-us .section-sub {
        color: rgba(255, 255, 255, 0.6);
    }

    .why-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(184, 150, 46, 0.15);
        border-radius: var(--radius);
        padding: 32px 28px;
        transition: var(--transition);
    }

    .why-card:hover {
        background: rgba(184, 150, 46, 0.08);
        border-color: rgba(184, 150, 46, 0.35);
        transform: translateY(-6px);
    }

    .why-icon {
        font-size: 2.2rem;
        color: var(--gold-light);
    }

    .why-title {
        font-size: 1.05rem;
        color: var(--white);
        margin-bottom: 10px;
    }

    .why-text {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.7;
    }

    /* SECTION 6 — CONTACT */
    #contact {
        background: var(--white);
    }

    .contact-info-wrap {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        border-radius: 24px;
        padding: 48px 40px;

    }

    .contact-info-wrap::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(184, 150, 46, 0.08);
        pointer-events: none;
        z-index: 0;
    }

    .contact-info-title {
        font-size: 1.8rem;
        color: var(--white);
    }

    .contact-info-sub {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 36px;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        background: rgba(184, 150, 46, 0.15);
        border: 1px solid rgba(184, 150, 46, 0.25);
        border-radius: 12px;
        color: var(--gold-light);
    }

    .contact-item-label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 2px;
    }

    .contact-item-value {
        font-size: 0.95rem;
        color: var(--white);
    }

    /* Form styles */
    .contact-form-wrap {
        background: var(--off-white);
        border-radius: 24px;
        padding: 48px 40px;
        border: 1px solid rgba(13, 27, 62, 0.07);
    }

    .contact-form-wrap h3{
        color:var(--navy);
        margin-bottom:28px !important;
    }
    .form-label {
        font-size: 0.88rem;
        color: var(--navy);
    }

    .invalid-feedback {
        font-size: 0.75rem;
    }

    .form-control,
    .form-select {
        background: var(--white);
        border: 1.5px solid rgba(13, 27, 62, 0.1);
        border-radius: 12px;
        padding: 12px 16px;
        font-size: 0.95rem;
        color: var(--navy);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.12);
        outline: none;
        background: var(--white);
    }

    .form-control::placeholder {
        color: #aab0c0;
    }

    textarea.form-control {
        resize: none;
    }

    /* Form success */
    .form-success {
        display: none;
        padding: 32px;
    }

    .form-success i {
        font-size: 3rem;
        color: var(--gold);
    }

    .form-success h4 {
        color: var(--navy);
    }

    .form-success p {
        color: #5a6a88;
    }

    /* FOOTER */
    #footer {
        background: var(--navy);
        padding: 60px 0 0;
    }

    .footer-top-line {
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .footer-brand {
        font-size: 1.6rem;
        color: var(--white);
    }

    .footer-brand span {
        color: var(--gold);
    }

    .footer-tagline {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.7;
    }

    .footer-heading {
        font-size: 0.95rem;
        color: var(--gold-light);
        margin-bottom: 20px;
        letter-spacing: 0.05em;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.9rem;
        transition: color 0.3s ease;
        gap: 6px;
    }

    .footer-links a:hover {
        color: var(--gold-light);
    }

    .footer-links a i {
        font-size: 0.75rem;
    }

    .social-links {
        gap: 10px;
        margin-top: 20px;
        z-index: 5;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(184, 150, 46, 0.2);
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.6);
        transition: var(--transition);
    }

    .social-link:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        margin-top: 50px;
        padding: 20px 0;
    }

    .footer-copy {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-copy span {
        color: var(--gold-light);
    }

    .footer-link {
        color:var(--text-muted);
        transition: color 0.25s ease;
    }
    
    .footer-link:hover {
        color: var(--gold-light);
    }

    /* BACK TO TOP BUTTON */
    #backToTop {
        bottom: 32px;
        left: 32px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--navy);
        border-radius: 14px;
        font-size: 1.2rem;
        box-shadow: 0 6px 24px rgba(184, 150, 46, 0.4);
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        z-index: 999;
    }

    #backToTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #backToTop:hover {
        transform: translateY(-4px);
    }

    /* RESPONSIVE */
    @media (max-width: 1199px) {
        .hero-stats {
            gap: 28px;
        }
    }

    @media (max-width: 991px) {
        section {
            padding: 70px 0;
        }

        .hero-stats {
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-image-wrap {
            margin-top: 50px;
        }

        .about-img-main {
            height: 340px;
        }

        .about-badge-float {
            display: none;
        }

        .contact-info-wrap {
            margin-bottom: 24px;
        }

        .why-card {
            padding: 24px 20px;
        }

        .service-card {
            padding: 32px 24px;
        }
    }

    @media (max-width: 767px) {
        section {
            padding: 56px 0;
        }

        .hero-title {
            font-size: 1.9rem;
        }

        .hero-sub {
            font-size: 0.95rem;
        }

        .hero-stat-divider {
            display: none;
        }

        .hero-stats {
            gap: 16px;
            justify-content: center;
            text-align: center;
        }

        .hero-stat-item {
            min-width: 80px;
        }

        .hero-stat-num {
            font-size: 1.6rem;
        }

        .hero-stat-rating {
            font-size: 1.5rem !important;
        }

        .hero-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .btn-gold,
        .btn-outline-gold {
            width: 100%;
            text-align: center;
            padding: 13px 24px;
        }

        .contact-form-wrap,
        .contact-info-wrap {
            padding: 28px 20px;
        }

        #backToTop {
            bottom: 20px;
            left: 20px;
        }

        .hero-img-card img {
            height: 260px;
        }

        .service-card {
            padding: 28px 20px;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .contact-info-title {
            font-size: 1.4rem;
        }

        .footer-brand {
            font-size: 1.3rem;
        }

        .hero-float-badge {
            padding: 10px 14px;
            gap: 8px;
        }

        .hero-float-badge .icon-wrap {
            width: 34px;
            height: 34px;
            font-size: 0.95rem;
        }

        .hero-float-badge .badge-title {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .hero-stats {
            gap: 12px;
        }

        .hero-stat-num {
            font-size: 1.4rem;
        }

        .hero-stat-label {
            font-size: 0.75rem;
        }

        .hero-stat-stars {
            font-size: 0.7rem;
        }

        .hero-title {
            font-size: 1.65rem;
        }

        .hero-badge {
            font-size: 0.74rem;
            padding: 6px 14px;
        }

        .navbar-brand-text {
            font-size: 1.2rem;
        }

        .section-label {
            font-size: 0.72rem;
        }

        .section-title {
            font-size: 1.55rem;
        }

        .contact-form-wrap,
        .contact-info-wrap {
            padding: 24px 16px;
        }

        .service-card {
            padding: 24px 18px;
        }

        .why-card {
            padding: 22px 18px;
        }

        .hero-img-card img {
            height: 220px;
        }

        #backToTop {
            width: 44px;
            height: 44px;
            font-size: 1rem;
        }
    }