@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #0F172A;
    /* Midnight Blue */
    --accent: #C5A059;
    /* Soft Gold */
    --light: #F8FAFC;
    /* Ice White */
    --text: #334155;
    /* Slate Gray */
    --white: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --container: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 500;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* Cinematic Header */
header {
    position: absolute;
    width: 100%;
    z-index: 50;
    padding: 30px 0;
    transition: 0.4s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.logo-text span {
    color: var(--accent);
}

.contact-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-pill:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* Immersive Hero */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 40px;
    text-align: center;
}

.exp-badge span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.exp-card {
    background: white;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.exp-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.exp-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.exp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.exp-card p {
    font-size: 0.9rem;
    color: #64748b;
}

.exp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: 0.3s;
}

.exp-card:hover::after {
    width: 100%;
}

/* FAQ Section */
.faq-sec {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-row {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-family: var(--font-heading);
}

.faq-question i {
    color: var(--accent);
    transition: 0.3s;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #64748b;
    line-height: 1.6;
    display: none;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.faq-row.active .faq-answer {
    display: block;
}

.faq-row.active .faq-question i {
    transform: rotate(180deg);
}

/* Video Gallery (Bento Grid) */
.gallery {
    padding: 120px 0;
    background: var(--primary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    color: white;
    font-size: 3rem;
}

.section-title p {
    color: #94a3b8;
    margin-top: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vid-card {
    background: #1e293b;
    padding: 10px;
    border-radius: 8px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vid-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.vid-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: black;
    border-radius: 4px;
    overflow: hidden;
}

.vid-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact & Info */
.contact-section {
    padding: 120px 0;
    position: relative;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.info-box {
    background: var(--light);
    padding: 50px;
    height: 100%;
}

.info-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.info-item:last-child {
    border: none;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item h4 i {
    color: var(--accent);
}

.info-item p,
.info-item a {
    color: #64748b;
    font-size: 1.1rem;
    text-decoration: none;
    line-height: 1.8;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #020617;
    color: #94a3b8;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-socials a {
    color: white;
    font-size: 1.4rem;
    margin-right: 20px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--accent);
}

/* Mobile */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 20px;
    }

    .about-grid,
    .video-grid,
    .contact-grid,
    .footer-row,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .exp-badge {
        display: none;
    }

    .info-box {
        padding: 30px;
    }

    .map-container {
        min-height: 300px;
    }

    .contact-pill span {
        display: none;
    }

    /* Hide text on mobile */
    .contact-pill {
        padding: 10px 15px;
    }

    /* Compact button */
}

/* Reviews Section - Modern */
.reviews-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8fafc;
}

.review-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 5px 0;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1e293b;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #1e293b;
    color: #fff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 300px;
        padding: 25px;
    }

    .nav-btn {
        display: none;
    }
}

.reviews-btn-container {
    text-align: center;
    margin-top: 40px;
}

.reviews-btn-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-btn-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.4);
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

.section-title p {
    color: #64748b;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Modern Hero Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-btns .btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-btns .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #b89146 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    border: none;
}

.hero-btns .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
    background: linear-gradient(135deg, #b89146 0%, var(--accent) 100%);
}

.hero-btns .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btns .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Enhanced Section Title Subtitle Overwrite */
.section-title p {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-top: 5px;
}