* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-dark: #1e4e3f;
    --primary-light: #21aa57;
    --accent: #f5a623;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: var(--radius);
}

.shadow-large {
    box-shadow: var(--shadow-large);
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-dark);
}

.text-white {
    color: var(--white);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4 {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--primary-light);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-2-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    display: block;
    box-sizing: border-box;
    /* Crucial to keep button inside card padding */
}

.btn-primary {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(33, 170, 87, 0.3);
}

.btn-primary:hover {
    background-color: #1a8a46;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33, 170, 87, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    backdrop-filter: blur(2px);
    /* Very subtle blur for better text readability */
}

header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

header.scrolled .logo img {
    filter: drop-shadow(0 2px 10px rgba(33, 170, 87, 0.2)) contrast(1.1);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    font-size: 1.05rem;
}

header.scrolled .nav-links a {
    color: var(--primary-dark);
}

.nav-links a:hover {
    color: var(--primary-light) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn {
    width: 45px;
    height: 45px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .menu-toggle {
    color: var(--primary-dark);
}

.badge {
    background-color: var(--primary-light);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1px;
    /* Increased for better spacing */
    display: inline-block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 135px;
    padding-bottom: 10px;
    /* Provides more space above than below while keeping it clear of the bottom indicators */
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 5.2rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.6;
}

.glass {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Animations for Slide Change */
.swiper-slide-active .animate-text {
    animation: fadeInUp 0.8s both 0.2s;
}

.swiper-slide-active .animate-text-delay {
    animation: fadeInUp 0.8s both 0.4s;
}

.swiper-slide-active .animate-btns {
    animation: fadeInUp 0.8s both 0.6s;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Custom Swiper Controls */
.hero-swiper .swiper-pagination {
    bottom: 30px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-light);
    width: 25px;
    border-radius: 6px;
}

.hero-navigation {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.hero-navigation div {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-top: 0;
    color: white;
}

.hero-navigation div:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-navigation div:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 70px;
    /* Moved up to avoid overlap with pagination */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.6;
}

.mouse-icon {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    margin-top: 10px;
    animation: scrollWheel 2s ease-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-navigation {
        display: none;
    }
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 20px;
    z-index: 5;
    min-width: 200px;
}

.hero-floating-card i {
    font-size: 1.8rem;
}

.hero-floating-card h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.hero-floating-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    font-size: 0.8rem !important;
    font-weight: 600;
}

.animate-float {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero-floating-card {
        display: none;
    }
}

/* Booking Bar */
.booking-wrap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.booking-bar {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-large);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: flex-end;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #a4b0be;
    text-transform: uppercase;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #fdfdfd;
    box-sizing: border-box;
}

/* Section Common */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Properly centers the button with the heading */
    margin-bottom: 50px;
}

.section-header-flex h2 {
    font-size: 2.8rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-large);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: 0.8s;
}

.card:hover::after {
    left: 150%;
}

.icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card .link {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Why Choose Us */
.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #fff;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(33, 170, 87, 0.1);
    color: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-muted);
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
    /* Keep text left aligned on desktop */
}

.benefit-item i {
    color: var(--primary-light);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-bullet {
    display: flex;
    gap: 15px;
    align-items: center;
    text-align: left;
}

.feature-bullet i {
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .benefit-item,
    .feature-bullet {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-item i,
    .feature-bullet i {
        margin-bottom: 10px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .feature-icon {
        margin-bottom: 15px;
    }
}

/* Experience Card */
.about-img {
    position: relative;
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-light);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(33, 170, 87, 0.4);
}

.experience-card h3 {
    font-size: 2.5rem;
    color: white;
}

/* Destination Cards */
.card-dest {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.card-dest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.card-dest:hover img {
    transform: scale(1.1);
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.dest-info h3 {
    color: white;
    margin-bottom: 5px;
}

/* Deals */
.deal-card {
    padding: 0;
}

.deal-header {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.deal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.deal-body {
    padding: 30px;
}

.deal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.deal-price {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #a4b0be;
    margin-right: 10px;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonial-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.client h5 {
    font-size: 1.1rem;
}

.client span {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 700;
}

/* Inquiry Form */
.inquiry-container {
    background: white;
    padding: 70px;
    border-radius: 40px;
    box-shadow: var(--shadow-large);
}

.contact-card-mini {
    display: flex;
    gap: 20px;
    background: #e9f7ef;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.contact-card-mini i {
    font-size: 2.5rem;
    color: #25d366;
}

.inquiry-form-card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f1f1f1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: white;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.full-width {
    grid-column: span 2;
}

/* Footer */
.footer {
    padding-top: 100px;
    background: #0c1c17;
    color: rgba(255, 255, 255, 0.8);
}

.footer h4 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.contact-details li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-details i {
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1.2s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .booking-form-grid {
        grid-template-columns: repeat(3, 1fr) 150px;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        color: var(--white);
    }

    header.scrolled .menu-toggle {
        color: var(--primary-dark);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 15px;
        box-shadow: var(--shadow-large);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--primary-dark);
    }

    .header-actions .btn {
        display: none;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2-center {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .grid-2-center>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .grid-2-center h2,
    .grid-2-center p {
        width: 100%;
    }

    .hero-slider {
        height: auto;
        min-height: 600px;
    }

    .hero-slide {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* Ensures text and buttons don't touch screen edges */
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 100%;
        /* Symmetrical full-width buttons */
        padding: 15px 20px;
        margin: 0;
        display: block;
        text-align: center;
    }

    .scroll-indicator,
    .hero-navigation {
        display: none !important;
    }

    .hero-slide {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero-swiper .swiper-pagination {
        bottom: 20px !important;
    }

    .booking-bar {
        padding: 25px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .dest-card {
        height: 300px;
    }

    .card {
        padding: 25px;
    }

    .inquiry-container {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* --- Final Critical Fixes & Layout Adjustments --- */

/* Merged with previous 768px query where appropriate, keeping unique rules here if necessary */
@media (max-width: 768px) {
    .deal-body .btn-full {
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
    }
}

.section-header-flex h2 {
    margin: 0;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2321aa57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    color: var(--text-main);
}

select option {
    font-family: 'Poppins', sans-serif;
    padding: 15px;
    background-color: #fff;
    color: var(--text-main);
}

select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(33, 170, 87, 0.1);
}

/* --- Global Layout Fixes --- */

.booking-bar input,
.booking-bar select,
.booking-bar button,
.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    height: 100%;
}

.feature-bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .inquiry-wrapper-grid {
        grid-template-columns: 1fr !important;
    }

    .inquiry-side-text {
        min-height: 300px;
        padding: 40px !important;
    }

    .inquiry-side-form {
        padding: 40px !important;
    }
}

@media (max-width: 768px) {
    .feature-bullets-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        margin: 0 !important;
    }
}