/* Base & Variables */
:root {
    --primary: #007bff;
    --primary-light: #e6f2ff;
    --secondary: #00cba9;
    --accent: #ff4757;
    --dark: #1e293b;
    --dark-footer: #0f172a;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --text-main: #334155;
    --text-muted: #64748b;
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.05);
    --radius: 20px;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    /* Transparent Background for WordPress Embed */
    background-color: transparent;
    color: var(--text-main);
    line-height: 1.6;
}

/* Floating Pill Header */
.site-header {
    background: rgba(255, 255, 255, 0.82);
    /* Frosted Header */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    width: 95%;
    max-width: 1400px;
    margin: 20px auto 0;
    position: relative;
    /* Scrolls with page */
    /* top: 20px; Removed/Ignored */
    z-index: 1000;
    border-radius: 60px;
    /* Pill Shape */
    padding: 10px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo img {
    height: 50px;
    /* Reset to standard size */
    width: auto;
    display: block;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}





/* Nav Link Styling */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Optimal gap */
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 0.95rem;
    /* Clean, professional size */
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    /* Prevent wrapping */
}

.main-nav a i {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.main-nav a:hover {
    color: var(--primary);
}

/* Right Side Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Clear separation from content */
    margin-left: 20px;
}

.phone-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.phone-number {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    /* Prominent but distinct */
    white-space: nowrap;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    /* Pushing "Schedule Your Growth" down significantly */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Decorative Background */
.booking-section {
    padding: 20px 0;
    position: relative;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Dashboard Card - Innovative Compact */
/* Main Dashboard Card - Innovative Compact */
.booking-card-main {
    background: rgba(255, 255, 255, 0.75);
    /* More transparent for premium glass */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    /* Softer, innovative curves */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
    max-width: 1100px;
    /* Wider Layout */
    margin: 0 auto;
    /* Centered */
    min-height: auto;
    /* Let content dictate height */
}


/* Left Column: Scheduler */
/* Left Column: Scheduler */
.booking-col-left {
    background: rgba(255, 255, 255, 0.5);
    /* Subtle separation */
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.booking-col-right {
    padding: 25px;
    background: transparent;
}

.col-header h2 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.col-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Calendar */
.calendar-wrapper {
    margin-bottom: 15px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: var(--gray-100);
    padding: 10px 15px;
    border-radius: 12px;
}

.calendar-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.nav-btn {
    background: #fff;
    width: 32px;
    height: 32px;
    border: 1px solid #e2e8f0;
    /* Added subtle border */
    border-radius: 8px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: var(--primary);
    color: #fff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    padding-bottom: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
}

/* Right Col: Service Selection */

.calendar-day.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.calendar-day.disabled {
    color: var(--gray-200);
    cursor: not-allowed;
}

/* Time Slots (Scrollable) */
.time-wrapper h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-slots-scroller {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 Columns */
    gap: 6px;
    width: 100%;
    /* Full width */
}

.time-slot {
    padding: 8px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-align: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.time-slot.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
    border-color: #e2e8f0;
    pointer-events: none;
}

.placeholder-text {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 20px 0;
}

/* Right Col: Service Selection */
.service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input {
    position: absolute;
    opacity: 0;
}

.option-content {
    border: 2px solid var(--gray-100);
    padding: 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.text .title {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.text .sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.check-mark {
    margin-left: auto;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

/* Active State for Option */
.service-option input:checked+.option-content {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.08);
}

.service-option input:checked+.option-content .icon-box {
    background: var(--primary);
    color: #fff;
}

.service-option input:checked+.option-content .check-mark {
    opacity: 1;
    transform: scale(1);
}

/* Form Styles */
.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -1px;
}

/* Rolling Text Animation */
.text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
    overflow: hidden;
}

/* Rolling Tweak for Nav Links */
.main-nav .text-wrapper {
    overflow: hidden;
    position: relative;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-nav .text-wrapper::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: var(--primary);
    font-weight: 700;
}

.main-nav a:hover .text-wrapper {
    transform: translateY(-100%);
}

.letters {
    display: inline-block;
    transform-origin: 0 100%;
    animation: rollReveal 1.2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
    transform: translateY(110%) rotate(5deg);
    opacity: 0;
}

@keyframes rollReveal {
    0% {
        transform: translateY(110%) rotate(5deg);
        opacity: 0;
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--gray-400);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(241, 245, 249, 0.6);
    /* Slightly transparent inputs */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.input-wrapper.align-top i {
    top: 14px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    background: #fff;
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 203, 169, 0.15);
    transform: translateY(-2px);
    outline: none;
}

.submit-btn-modern {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--dark), #334155);
    /* Gradient Button */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: #39C16C;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.success-message p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Confirmed Details Box */
.confirmed-details-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    text-align: left;
    border: 1px solid #e2e8f0;
    max-width: 400px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 5px;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn-modern:hover {
    background: linear-gradient(135deg, var(--primary), #00cba9);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

/* Main Footer - Standard Normal Design */
.site-footer {
    background: #0f0f0f;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Footer Content Constraint */
.footer-grid {
    position: relative;
    z-index: 2;
    /* Keep content above scoops */
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr 1.2fr;
    /* 4 Columns: Brand, Location, Company, Services */
    gap: 40px;
}

/* Brand Icon */
.footer-icon-large {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Columns */
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.mt-group {
    margin-top: 30px;
}

.link-hover {
    color: #e2e8f0;
    text-decoration: none;
    /* Removed underline */
    position: relative;
}

.link-hover:hover {
    color: #fff;
    /* Optional: Add a subtle transition or nothing instead of underline */
    padding-left: 5px;
}

/* Links List */
.footer-links {
    list-style: none;
    /* Remove "point dot" */
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    /* Ensure no underline */
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}



/* Copyright */
.footer-copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-header {
        width: 100%;
        border-radius: 0;
        margin-top: 0;
        padding: 15px 20px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .booking-card-main {
        grid-template-columns: 1fr;
        /* Stack columns */
        max-width: 100%;
        margin: 20px;
        /* Add margin for "card" look */
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .booking-col-left {
        border-right: none;
        border-bottom: 1px solid var(--gray-100);
    }

    .service-selector {
        gap: 10px;
    }

    .option-content {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .check-mark {
        display: none;
    }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-links {
        display: none;
        /* Hide Navigation Links on Mobile to prevent overflow */
    }

    .hero-title {
        font-size: 2rem;
        /* Smaller Title */
        margin-bottom: 10px;
    }

    .hero-section p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .col-header h2 {
        font-size: 1.5rem;
    }

    .booking-card-main {
        margin: 10px 15px;
        /* Side margins */
        border-radius: 12px;
        width: auto;
    }

    .booking-col-left,
    .booking-col-right {
        padding: 20px 15px;
        /* Reduce padding */
    }

    /* Time Slots Grid: 3 Columns on Mobile */
    .time-slots-scroller {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .time-slot {
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}



/* Mobile/Tablet Adjustments for Widget */
@media (max-width: 1024px) {

    /* Layout Fixes for Mobile Scaling */
    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .booking-card-main {
        margin: 0;
        /* Flush on mobile */
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr !important;
        /* Force Single Column */
    }

    .container {
        padding: 0 15px;
    }

    .booking-col-left,
    .booking-col-right {
        padding: 20px;
    }



    /* Footer Stack */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-icon-large {
        margin: 0 auto 15px auto;
        display: block;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-col h4 {
        margin-top: 10px;
    }

    /* Hide Desktop Nav on Mobile */
    .main-nav {
        display: none;
    }
}

.selected-summary-box {
    margin-top: 25px;
    background: #E6F4F1;
    /* Light Mint Green */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(57, 193, 108, 0.2);
}

.summary-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00cba9;
    font-size: 1.2rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
}

.summary-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.summary-time {
    font-size: 0.85rem;
    color: #00cba9;
    font-weight: 600;
}