/* Font Face */
@font-face {
    font-family: 'Grift';
    src: url('../font/Grift-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Grift';
    src: url('../font/Grift-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Grift';
    src: url('../font/Grift-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc3545;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
}

body {
    font-family: 'Grift', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: var(--dark-bg);
}

html {
    scroll-behavior: smooth;
}

/* Blur Reveal Effect */
.blur-reveal > * {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blur-reveal.revealed > * {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


/* Navigation */
.navbar {
    background-color: #000000;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent;
}

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

.navbar-toggler-icon {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    position: relative;
    transition: background 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../assets/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(0, 0, 0, 0.7));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    background: rgba(255, 0, 0, 0.2);
    display: inline-block;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    padding-bottom: 2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-danger {
    background-color: var(--primary-color);
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    border: 1px solid rgba(220, 53, 69, 0.15);
    transition: all 0.3s ease;
}

.service-icon svg {
    height: 40px;
    width: 40px;
}

.service-card:hover .service-icon {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.25);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 300;
}

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

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card .btn {
    font-weight: 700;
}

.service-card .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.btn-outline-danger {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-danger:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.gallery-section .section-title {
    color: var(--text-dark);
}

.gallery-section .section-subtitle {
    color: #000000;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-overlay {
    display: none;
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.gallery-icon i {
    font-size: 1.2rem;
    color: white;
}

.gallery-item:hover .gallery-icon {
    animation: zoomPulse 0.6s ease-in-out;
}

/* Reviews Section */
.reviews-section-wrapper {
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 0;
    border-radius: 24px;
    background: #fcebec;
    position: relative;
    overflow: hidden;
    display: flex;
    max-height: 800px;
    flex-direction: column;
}

.reviews-copy {
    padding: 12px 0;
    text-align: center;
}

.reviews-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.reviews-link {
    font-weight: 600;
    color: #dc3545;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.reviews-link:hover {
    color: #c82333;
}

.reviews-grid-wrapper {
    flex: 1.5;
    position: relative;
    height: 420px;
    overflow: hidden;
}

/* Gradient handled by .reviews-section::after */
.reviews-grid-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, #fcebec 35%, rgba(248,249,250,0));
    pointer-events: none;
    z-index: 1;
}

.reviews-grid {
    height: 100%;
    overflow: hidden;
    column-gap: 24px;
    column-count: 3;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
    break-inside: avoid-column;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-stars {
    color: #dc3545;
    letter-spacing: 1px;
    font-size: 14px;
}

.review-icon {
    width: 24px;
    height: 24px;
    background: #f1f3f5;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.review-icon::before {
    content: '';
    width: 0; height: 0;
    border-left: 6px solid #9aa4af;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.review-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2a44;
    margin: 0 0 4px 0;
}

.review-card span {
    font-size: 12px;
    color: #6c757d;
    display: block;
    margin-bottom: 8px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #344055;
    margin: 0;
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .reviews-section-wrapper {
        padding: 60px 0;
        background-color: #1a1a1a;
    }

    .reviews-section {
        padding: 40px 0;
        max-height: none;
        background: #fcebec !important;
        border-radius: 24px;
        margin: 0 20px;
    }

    .reviews-title {
        font-size: 28px;
        color: #1a1a1a !important;
    }

    .reviews-copy {
        margin-bottom: 20px;
    }

    .reviews-link {
        color: #dc3545 !important;
    }

    .reviews-grid-wrapper {
        height: auto;
        overflow: hidden;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .reviews-grid-wrapper::after {
        display: none;
    }

    /* CSS-only fallback - horizontal scroll */
    .reviews-grid {
        column-count: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        height: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    /* When JavaScript creates carousel rows */
    .reviews-grid.carousel-active {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        overflow: hidden;
    }

    .reviews-carousel-row {
        display: flex !important;
        gap: 12px;
        margin-bottom: 12px;
        animation: scrollLeft 40s linear infinite;
        will-change: transform;
        flex-wrap: nowrap !important;
        width: max-content;
        -webkit-overflow-scrolling: touch;
    }

    .reviews-carousel-row:nth-child(2) {
        animation: scrollRight 40s linear infinite;
    }

    .reviews-carousel-row:hover,
    .reviews-carousel-row:active {
        animation-play-state: paused;
    }

    .review-card {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        width: 280px !important;
        margin-bottom: 0 !important;
        display: block !important;
        background: #fff !important;
        border-radius: 20px !important;
        padding: 24px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important;
        break-inside: auto;
        page-break-inside: auto;
        -webkit-column-break-inside: auto;
    }

    .review-card h4 {
        color: #1f2a44 !important;
    }

    .review-card span {
        color: #6c757d !important;
    }

    .review-card p {
        color: #344055 !important;
    }

    .review-stars {
        color: #dc3545 !important;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Gallery Modal */
#galleryModal .modal-content {
    background: var(--dark-bg);
    border: none;
    border-radius: 15px;
}

#galleryModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

#galleryModal .modal-title {
    color: white;
    font-weight: 600;
}

#galleryModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#galleryModal .btn-close:hover {
    opacity: 1;
}

#galleryModal .modal-body {
    padding: 2rem;
}

#galleryModal img,
#galleryModal video {
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#modalDescription {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Booking Section */
.booking-section {
    background: #000000;
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 40px,
            rgba(255, 255, 255, 0.03) 41px
        );
    pointer-events: none;
    z-index: 1;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.booking-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.booking-icon i {
    font-size: 3rem;
    color: white;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-box a {
    text-decoration: none;
    color: var(--text-dark);
}

.contact-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-info-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.business-hours-box {
    background: rgba(220, 53, 69, 0.05);
    display: block;
}

.business-hours-box .contact-info-content {
    width: 100%;
}

.business-hours-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form-card .btn {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

textarea {
    resize: none;
}

/* Footer */
.footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    height: 60px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .booking-card {
        padding: 2rem 1.5rem;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .gallery-section .row.g-4 {
        row-gap: 1.5rem !important;
    }
    
    .gallery-section .col-lg-4,
    .gallery-section .col-lg-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
