/* ============================================
   ZANTA INTERNATIONAL TOURISM - CUSTOM STYLES
   Brand Colors & Modern Design
   ============================================ */

:root {
    /* Brand Colors - Updated Blend */
    --zanta-red: #9f272c;
    --zanta-blue: #424b6e;
    --zanta-dark-blue: #2C3548;
    --zanta-light-blue: #5A6A8F;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #212529;

    /* Gradients - Updated to Balanced Blend */
    --gradient-zanta: linear-gradient(135deg, #b11925 25%, #3c4971 75%);
    --gradient-red: linear-gradient(135deg, #b11925 0%, #7d1f23 100%);
    --gradient-blue: linear-gradient(135deg, #3c4971 0%, #2C3548 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(177, 25, 37, 0.85) 25%, rgba(60, 73, 113, 0.85) 75%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--dark);
    overflow-wrap: break-word;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}



/* ============================================
   NAVBAR REDESIGN
   ============================================ */

.navbar-modern {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar-modern.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none !important;
}

.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%28159, 39, 44, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 70px;
    width: 250px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.navbar-brand-logo:hover .logo-img {
    transform: scale(1.05);
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-zanta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-link-modern {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-zanta);
    transition: var(--transition-normal);
}

.nav-link-modern:hover::after,
.nav-link-modern.active::after {
    width: 80%;
}

.nav-link-modern:hover {
    color: var(--zanta-red) !important;
}

.btn-book-now {
    background: linear-gradient(135deg, #b11925 25%, #3c4971 75%);
    color: var(--white) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION REDESIGN
   ============================================ */

.hero-modern {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay),
        url('../img/dubai.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(177, 25, 37, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-highlight {
    background: var(--gradient-zanta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(159, 39, 44, 0.5);
    font-weight: 900;
}


.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--zanta-red) !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--zanta-red) !important;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white) !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--zanta-blue) !important;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-modern {
    padding: 5rem 0;
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--zanta-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-zanta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-modern {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem auto;
    background: rgba(159, 39, 44, 0.1);
    color: var(--zanta-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-normal);
}

.service-card-modern:hover .service-image {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card-modern:hover .service-image::after {
    opacity: 0.8;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-service {
    color: var(--zanta-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-service:hover {
    color: var(--zanta-dark-blue);
}

.btn-service i {
    transition: var(--transition-fast);
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* Services List Styles */
.services-modern {
    background: white;
    padding: 5rem 0;
}

.services-image-wrapper {
    position: relative;
}

.services-image-wrapper img {
    border-radius: 20px;
}

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

@media (max-width: 991px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-list {
        grid-template-columns: 1fr;
    }
}


.service-list-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-list-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-zanta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.service-list-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-list-item span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #212529;
    line-height: 1.4;
    flex: 1;
}

.btn-services-view {
    background: var(--gradient-zanta);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(159, 39, 44, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-services-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(159, 39, 44, 0.4);
    color: white;
}

/* Fleet Section Styles */
.fleet-modern {
    background: #f8f9fa;
    padding: 5rem 0;
}

/* New Dynamic Fleet Cards for Home */
.fleet-card-home {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    height: 100%;
}

.fleet-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1) !important;
}

.fleet-img-home {
    height: 180px;
    overflow: hidden;
}

.fleet-img-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card-home:hover .fleet-img-home img {
    transform: scale(1.1);
}

.fleet-info-home h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
}


/* ============================================
   CTA SECTION
   ============================================ */

.cta-modern {
    padding: 5rem 0;
    background: var(--gradient-zanta);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: var(--white);
    color: var(--zanta-red) !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   FOOTER REDESIGN
   ============================================ */

.footer-modern {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-zanta);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .navbar-modern {
        background: white !important;
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        text-align: center;
        gap: 0.5rem;
    }

    .nav-item.ms-3 {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .btn-book-now {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .container,
    .container-fluid {
        width: 100% !important;
        overflow: hidden !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
        word-break: break-word;
        hyphens: none !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
        word-break: break-word;
        hyphens: none !important;
        position: relative;
    }

    .section-title::before,
    .section-title::after {
        display: none !important;
        content: none !important;
    }


    .cta-title {
        font-size: 1.8rem !important;
        word-break: break-word;
        hyphens: none !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .logo-img {
        height: 45px !important;
        width: auto !important;
        max-width: 150px !important;
    }
}


@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-red {
    background: var(--gradient-red);
}

.bg-gradient-blue {
    background: var(--gradient-blue);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-breadcrumb {
    background: linear-gradient(135deg, rgba(177, 25, 37, 0.85) 25%, rgba(60, 73, 113, 0.85) 75%),
        url('../img/img/28.jpeg') center/cover no-repeat;
    padding: 100px 0 50px 0;
}

.contact-modern {
    background: #f8f9fa;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map-card {
    background: white;
    border-radius: 20px;
    padding: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-zanta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.contact-details p {
    margin: 0;
    color: #6c757d;
}

.contact-details a {
    color: #b11925;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #3c4971;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link-contact {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #b11925 25%, #3c4971 75%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(177, 25, 37, 0.3);
    color: white;
}

.form-floating>.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus {
    border-color: #b11925;
    box-shadow: 0 0 0 0.25rem rgba(177, 25, 37, 0.1);
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.form-floating>textarea.form-control {
    height: auto;
}

.btn-contact-submit {
    background: var(--gradient-zanta);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(177, 25, 37, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(177, 25, 37, 0.4);
    color: white;
}

.success-message {
    border-radius: 15px;
    border-left: 5px solid #28a745;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Contact */
@media (max-width: 991px) {
    .contact-info-card {
        height: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-breadcrumb {
        padding: 60px 0 30px 0;
    }

    .contact-breadcrumb h3 {
        font-size: 2.2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-details h5 {
        font-size: 1rem;
    }

    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }

    .btn-contact-submit {
        width: 100%;
        padding: 0.8rem 2rem;
    }

    .contact-map-card {
        padding: 0.5rem;
    }

    .contact-map-card iframe {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
}