@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
    --bg-color: #ffffff;
    --surface-color: #fcfcfc;
    --surface-accent: #f5f5f5;
    --primary-color: #ff9800;
    --primary-hover: #f57c00;
    --gradient-start: #ffd600;
    --gradient-end: #ff5722;
    --secondary-color: #121212;
    --text-primary: #121212;
    --text-secondary: #4a4a4a;
    --text-muted: #777777;
    --border-color: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Background.png');
    background-size: 1200px;
    /* Wider pattern */
    background-repeat: repeat;
    opacity: 0.05;
    /* Lighter visibility */
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 50px 0;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Rotating Text */
.rotating-text-wrapper {
    display: inline-grid;
    position: relative;
    white-space: nowrap;
    text-align: left;
}

@media (max-width: 767px) {
    .rotating-text-wrapper {
        text-align: center;
        display: block;
    }
    .rotating-text-wrapper::after {
        display: none;
    }
}

.rotating-text-wrapper::after {
    content: "Consultants.";
    visibility: hidden;
    grid-area: 1 / 1;
}

#rotating-text {
    grid-area: 1 / 1;
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#rotating-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

#rotating-text.fade-in {
    opacity: 0;
    transform: translateY(10px);
}

.text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .nowrap-desktop {
        white-space: nowrap;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition-slow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.btn-outline {
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.4rem 0;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 0.2rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 4%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-only-btn {
    display: none;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 30vw, 40rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 152, 0, 0.03);
    z-index: -1;
    pointer-events: none;
    letter-spacing: -0.05em;
    user-select: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 99px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-title-secondary {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    display: inline-block;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.trust-banner {
    margin-top: 5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Problem Section */
.problem {
    background: #fdfdfd;
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    align-items: stretch;
}

.problem h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.problem p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Process Section */
.process .container {
    max-width: 1400px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 3.5rem 2.5rem;
    transition: var(--transition-slow);
    position: relative;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 152, 0, 0.3);
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 25px -5px rgba(255, 152, 0, 0.1),
        0 10px 10px -5px rgba(255, 152, 0, 0.04);
}

.step-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.bento-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    transition: var(--transition-slow);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 152, 0, 0.3);
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 25px -5px rgba(255, 152, 0, 0.1),
        0 10px 10px -5px rgba(255, 152, 0, 0.04);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    transition: var(--transition-base);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 152, 0, 0.3);
}

.service-icon i {
    font-size: 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Loader Spinner */
.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.video-loader.active {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pricing Section Redesign */
.pricing {
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.pricing .container {
    max-width: 1400px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.pricing-card {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:first-child {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.pricing-card:last-child {
    border-right: none;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.pricing-card.popular {
    background: rgba(255, 152, 0, 0.03);
    border-top: 4px solid var(--primary-color);
}

.pricing-card.popular:hover {
    background: rgba(255, 152, 0, 0.06);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.card-action {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.card-action .btn {
    width: 100%;
}

.pricing-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 2.5rem 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    min-height: 85px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--text-primary);
    min-height: 115px;
}

.price span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 5px;
}

.price.custom-price {
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0 1rem;
}

.price.custom-price span {
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #4caf50;
    flex-shrink: 0;
}

.pricing .btn {
    width: 100%;
    justify-content: center;
}

/* Results Section */
.results {
    background: var(--secondary-color);
    color: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.result-item h4 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 1.25rem;
    padding: 1.5rem 2rem;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(255, 152, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    color: var(--text-secondary);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 1.5rem;
}

.faq-item i {
    transition: transform var(--transition-base);
}

.faq-item.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Comparison Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.comparison-box {
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    background: #fff;
}

.comparison-box.negative {
    background: #fffafa;
    border-color: rgba(244, 67, 54, 0.1);
}

.comparison-box.positive {
    background: #f7fff7;
    border-color: rgba(76, 175, 80, 0.1);
}

.comparison-box h4 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.comparison-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.comparison-list li i {
    flex-shrink: 0;
}

.negative-icon {
    color: #f44336;
}

.positive-icon {
    color: #4caf50;
}

/* Tools Box */
.tool-box {
    text-align: left;
}

.tool-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
footer {
    background: #f9f9f9;
    padding: 100px 0 50px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 2rem 0;
    max-width: 350px;
    font-size: 1.1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Grid Utilities */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    will-change: opacity, transform;
}

.revealed {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Staggering delays for children */
.stagger>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Booking Modal Base */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity var(--transition-base);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow: hidden;
    /* Only body scrolls now */
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all var(--transition-slow);
    z-index: 10;
    text-align: center;
    position: relative;
    padding: 0;
    /* Padding moved to body */
}

.modal-body {
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 3rem 2.5rem;
}

/* Hide Scrollbar for Chrome, Safari and Opera */
.modal-body::-webkit-scrollbar {
    display: none;
}




.modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
    z-index: 20;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Booking Form Styling */
.booking-form {
    text-align: left;
    margin-top: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--surface-accent);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.1);
}

/* Modal Success State */
.modal-success {
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    width: 40px;
    height: 40px;
}

/* Carousel Grid for Videos */
.carousel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    /* space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
    -webkit-overflow-scrolling: touch;
}

.carousel-grid::-webkit-scrollbar {
    height: 8px;
}

.carousel-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}



/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Booking Modal Base */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity var(--transition-base);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow: hidden;
    /* Only body scrolls now */
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all var(--transition-slow);
    z-index: 10;
    text-align: center;
    position: relative;
    padding: 0;
    /* Padding moved to body */
}

.modal-body {
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 3rem 2.5rem;
}

/* Hide Scrollbar for Chrome, Safari and Opera */
.modal-body::-webkit-scrollbar {
    display: none;
}




.modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
    z-index: 20;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Booking Form Styling */
.booking-form {
    text-align: left;
    margin-top: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--surface-accent);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.1);
}

/* Modal Success State */
.modal-success {
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    width: 40px;
    height: 40px;
}





/* Video Modal Specifics */
.video-modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    max-width: 95vw !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container-full {
    width: 100%;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-container-full video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

/* Marquee Pause */
.carousel-grid.paused {
    animation-play-state: paused !important;
}

/* Custom Shortvids Style Video Cards */
.carousel-grid>.sv-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 35px;
    padding: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.sv-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sv-video-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    aspect-ratio: 9/16;
}

.sv-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
    padding: 60px 15px 20px 15px;
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    pointer-events: none;
}

.sv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

/* Carousel Viewport - clips the track */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

/* Carousel Track - the scrolling flex container */
.carousel-grid {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    width: max-content;
}



.carousel-grid > .bento-card {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.carousel-grid > .bento-card:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05) !important;
}

.carousel-grid > .bento-card video {
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Card Overlay Styles */
.video-card-wrap {
    position: relative;
    height: 400px; /* Decreased height as per request */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-play-overlay i,
.video-play-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    fill: var(--primary-color);
    stroke: var(--primary-color);
}


/* Full Sized Video Modal */
.video-modal-content {
    max-width: 95vw !important;
    max-height: 95vh !important;
    width: fit-content !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.video-container-full {
    height: 90vh !important;
    width: auto !important;
    max-width: 95vw !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container-full video {
    height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: 90vh !important;
    object-fit: contain !important;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}


/* Social Icon Hover - Brand Colors */
.social-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.social-icon.twitter:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
    color: #fff;
}
