/* Home Index Page Styles */

.home-hero-section.hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000033 0%, #1a0033 50%, #330033 100%);
}

.home-hero-section.hero .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-hero-section.hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: hero-orb-float 8s ease-in-out infinite;
}

.home-hero-section.hero .orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b6b, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.home-hero-section.hero .orb2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffd93d, transparent);
    top: 50%;
    right: -100px;
    animation-delay: 2s;
}

.home-hero-section.hero .orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4CAF50, transparent);
    bottom: -50px;
    left: 30%;
    animation-delay: 4s;
}

.home-hero-section.hero .orb4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #FF9800, transparent);
    top: 20%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes hero-orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.home-hero-section.hero .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-hero-section.hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: hero-particle-sparkle 3s infinite;
}

@keyframes hero-particle-sparkle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
    }
}

.checkmark {
    color: #4CAF50;
    font-size: 1.2rem;
}

.view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .view-all:hover {
        color: #764ba2;
    }
.home-card-hover {
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 20px;
}
   
    .home-card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.home-testimonial-carousel .carousel-item {
    min-height: 220px;
}

.home-testimonial-carousel .carousel-item > div {
    max-width: 520px;
    margin: 0 auto;
}

.home-hero-section {
    background: linear-gradient(135deg, #6f42c1 0%, #5a38a4 100%);
    background-size: cover;
    background-position: center;
    text-align:center;
}

/* Hero image and overlay for dynamic banner while keeping height same */
.home-hero-section .home-hero-img {
    width: 100%;
    height: 375px; /* keep existing visual height */
    object-fit: cover;
    display: block;
}

.home-hero-section .animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-hero-section .home-hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-menu-card-img {
    height: 240px;
    object-fit: cover;
}

.home-caterer-card-img {
    height: 210px;
    object-fit: cover;
}

.home-gallery-img {
    object-fit: cover;
}

.home-inquiry-form {
    position: sticky;
    top: 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}
.btn-primary {
    background: #ff6b6b;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
    margin-top:1%;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255,107,107,0.4);
        background: #ff6b6b;
    }
.card-body{
    text-align:center;
    padding:2rem 1rem;
}
.btn-brand {
    border-radius: 25px;
    padding: 0.3rem 1.3rem;
}
.price{
    color:blue;
}
.testimonial-section {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}


/* Right Column - Stats & Trust */
.stats-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.2rem;
}

/* Hero Section Tagline */
.home-hero-section h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logo Styling */
.home-hero-section h1 img {
    max-width: 100%;
    height: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Popular Services Base Styles */
.services .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services .text-muted.small {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.services .btn-sm {
    margin-top: auto;
}

/* Ensure 2x2 grid on mobile */
@media (max-width: 991px) {
    .services .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .services .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    /* Menu Highlights 2x2 grid */
    .menu-highlights {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .menu-highlights .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    /* Events and Offers single row */
    .events-offers {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .events-offers .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    /* Stats single row on mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 0.4rem !important;
    }
    
    .stat-card {
        padding: 0.8rem 0.3rem !important;
        min-height: 100px !important;
    }
    
    .stat-value {
        font-size: 0.9rem !important;
        line-height: 1 !important;
        margin-bottom: 0.2rem !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
        flex-direction: column !important;
        text-align: center !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .stat-icon {
        font-size: 0.8rem !important;
        margin-bottom: 0.1rem !important;
    }
}

/* Trust Section */
.trust-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 2.5rem;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(102,126,234,0.3);
    position: relative;
    overflow: hidden;
}

    .trust-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.trust-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 600;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.client-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    cursor: default;
}

    .client-badge:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* Floating Animation - Desktop Only */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
    .stat-card:nth-child(1),
    .stat-card:nth-child(2),
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        animation: none !important;
    }
    
    .stat-card:hover {
        transform: none !important;
    }
    
    .stat-card::before {
        display: none !important;
    }
    
    /* Disable all hover effects and transitions on mobile */
    .home-card-hover:hover {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    }
    
    .review-card:hover {
        transform: none !important;
    }
    
    .review-card .card:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    }
    
    .client-badge:hover {
        transform: none !important;
        background: rgba(255,255,255,0.2) !important;
        box-shadow: none !important;
    }
    
    .btn-primary:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(255,107,107,0.3) !important;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .carousel-inner {
        height: 380px;
    }
}

/* Medium Mobile Devices */
@media (max-width: 768px) {
    .home-hero-section h1 {
        font-size: 1.5rem !important;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 1rem !important;
    }
    .home-hero-section .home-hero-img {
        height: 300px;
    }
    
    /* Logo adjustments for mobile */
    .home-hero-section h1 img {
        max-width: 120px !important;
        height: auto !important;
        margin-right: 0.5rem !important;
    }
    
    /* Hide hero description on mobile */
    .home-hero-section p[itemprop="description"] {
        display: none !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .trust-card {
        padding: 2.2rem 1.8rem;
    }
    
    .trust-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .client-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .client-badge {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Popular Services Mobile Layout */
    .services .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .services .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .services .card-body {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .services .display-6 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .services .h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .services .text-muted.small {
        font-size: 0.8rem;
        line-height: 1.4;
        flex-grow: 1;
        margin-bottom: 1rem;
    }
    
    .services .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        margin-top: auto;
    }
    
    /* Menu Highlights Mobile Layout */
    .menu-highlights {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .menu-highlights .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .menu-highlights .card-body {
        padding: 1rem 0.8rem;
    }
    
    .menu-highlights .h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-highlights .text-muted.small {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Events and Offers Mobile Layout */
    .events-offers {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .events-offers .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .events-offers .card-body {
        padding: 1rem 0.8rem;
    }
    
    .events-offers .h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .events-offers .text-muted.small {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .events-offers .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .home-hero-section h1 {
        font-size: 1.2rem !important;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 0.8rem !important;
    }
    .home-hero-section .home-hero-img {
        height: 260px;
    }
    
    /* Logo adjustments for small mobile */
    .home-hero-section h1 img {
        max-width: 90px !important;
        height: auto !important;
        margin-right: 0.4rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 0.3rem;
    }
    
    .stat-card {
        padding: 0.6rem 0.2rem;
        min-height: 90px;
    }
    
    .stat-value {
        font-size: 1rem;
        line-height: 1;
        margin-bottom: 0.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
        flex-direction: column;
        text-align: center;
        line-height: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .stat-icon {
        font-size: 0.7rem;
        margin-bottom: 0.05rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .carousel-inner {
        height: 420px;
    }

    .carousel-item {
        padding: 2rem 1.5rem;
    }
    
    /* Trust Section Mobile Layout */
    .trust-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .client-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        justify-items: center;
    }
    
    .client-badge {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Popular Services Small Mobile Layout */
    .services .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }
    
    .services .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .services .card-body {
        padding: 1.2rem 0.8rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .services .display-6 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .services .h5 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .services .text-muted.small {
        font-size: 0.75rem;
        line-height: 1.3;
        flex-grow: 1;
        margin-bottom: 0.8rem;
    }
    
    .services .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        margin-top: auto;
    }
    
    /* Menu Highlights Small Mobile Layout */
    .menu-highlights {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }
    
    .menu-highlights .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .menu-highlights .card-body {
        padding: 0.8rem 0.6rem;
    }
    
    .menu-highlights .h5 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .menu-highlights .text-muted.small {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    /* Events and Offers Small Mobile Layout */
    .events-offers {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }
    
    .events-offers .col-6 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .events-offers .card-body {
        padding: 0.8rem 0.6rem;
    }
    
    .events-offers .h5 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .events-offers .text-muted.small {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .events-offers .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.4rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .home-hero-section h1 {
        font-size: 1rem !important;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 0.5rem !important;
    }
    .home-hero-section .home-hero-img {
        height: 230px;
    }
    
    /* Logo adjustments for extra small mobile */
    .home-hero-section h1 img {
        max-width: 80px !important;
        height: auto !important;
        margin-right: 0.35rem !important;
    }
    
    /* Stats for extra small mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 0.2rem !important;
    }
    
    .stat-card {
        padding: 0.4rem 0.1rem !important;
        min-height: 80px !important;
    }
    
    .stat-value {
        font-size: 0.9rem !important;
        line-height: 1 !important;
        margin-bottom: 0.05rem !important;
    }
    
    .stat-label {
        font-size: 0.5rem !important;
        line-height: 1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .stat-icon {
        font-size: 0.6rem !important;
        margin-bottom: 0.02rem !important;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .home-hero-section h1 {
        font-size: 0.9rem !important;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 0.3rem !important;
    }
    .home-hero-section .home-hero-img {
        height: 210px;
    }
    
    /* Logo adjustments for very small mobile */
    .home-hero-section h1 img {
        max-width: 70px !important;
        height: auto !important;
        margin-right: 0.3rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 0.1rem !important;
    }
    
    .stat-card {
        padding: 0.3rem 0.05rem !important;
        min-height: 70px !important;
    }
    
    .stat-value {
        font-size: 0.8rem !important;
        line-height: 1 !important;
        margin-bottom: 0.02rem !important;
    }
    
    .stat-label {
        font-size: 0.45rem !important;
        line-height: 1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .stat-icon {
        font-size: 0.5rem !important;
        margin-bottom: 0.01rem !important;
    }
}

/* Review Cards Styles */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-card .card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.review-card .card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author strong {
    font-size: 0.95rem;
    color: #212529;
}

.review-author small {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Review Cards Responsive Design */
@media (max-width: 768px) {
    .review-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .review-rating {
        font-size: 1rem;
    }
}

/* Mobile-only: make all three review cards appear in a single horizontal row */
@media (max-width: 768px) {
    .reviews-section .row.g-4 {
        display: grid !important;
        grid-auto-flow: column !important; /* horizontal flow */
        grid-auto-columns: 80% !important; /* each card width */
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1rem !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .reviews-section .row.g-4 > [class*="col-"] {
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        scroll-snap-align: start;
    }
}

@media (max-width: 576px) {
    .review-card .card-body {
        padding: 1.2rem 0.8rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .review-rating {
        font-size: 0.9rem;
    }
    
    .review-author strong {
        font-size: 0.9rem;
    }
    
    .review-author small {
        font-size: 0.75rem;
    }
}
/* Why Choose Section */
.why-choose {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.why-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

    .why-item:hover {
        background: rgba(255,255,255,0.1);
        transform: translateX(10px);
    }

.why-icon {
    color: #ff6b6b;
    font-size: 1.5rem;
}

/* Reviews Section with Horizontal Scroll */
.reviews-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f0f0f0;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

.reviews-scroll-wrapper {
    width: 100%;
}

.reviews-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
    min-width: max-content;
}

.review-card-item {
    flex: 0 0 auto;
    width: 350px;
    min-width: 300px;
}

.review-card-item .card {
    height: 100%;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
}

.review-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 80px;
}

.review-author {
    margin-top: auto;
}

.review-author strong {
    color: #1a1a2e;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.review-author small {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .review-card-item {
        width: 300px;
        min-width: 280px;
    }
    
    .reviews-scroll {
        gap: 1rem;
    }
    
    .review-text {
        min-height: 60px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .review-card-item {
        width: 280px;
        min-width: 260px;
    }
    
    .reviews-scroll {
        gap: 0.75rem;
    }
}

/* Contact Form */
.contact {
    padding: 5rem 5%;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #1a1a2e;
        font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* Form Layout - 2x2 grid layout */
.home-inquiry-form .row.g-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-inquiry-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
}

.home-inquiry-form .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Mobile: Stack all fields vertically */
@media (max-width: 768px) {
    .home-inquiry-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
    
    /* Get Quick Quote Form - Hide labels and increase input width on mobile */
    .quote-card .form-label {
        display: none !important;
    }
    
    .quote-card input.form-control,
    .quote-card textarea.form-control {
        width: 100% !important;
        padding: 1rem !important;
    }
}