.elementor-466 .elementor-element.elementor-element-376ed88{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-466 .elementor-element.elementor-element-1296204{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-466 .elementor-element.elementor-element-1296204:not(.elementor-motion-effects-element-type-background), .elementor-466 .elementor-element.elementor-element-1296204 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-69b5b7a );}.elementor-466 .elementor-element.elementor-element-8e6feb2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-466 .elementor-element.elementor-element-8e6feb2:not(.elementor-motion-effects-element-type-background), .elementor-466 .elementor-element.elementor-element-8e6feb2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-8c757e3 );}body.elementor-page-466:not(.elementor-motion-effects-element-type-background), body.elementor-page-466 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-transparent );}/* Start custom CSS *//* --- CSS Variables --- */
        :root {
            --color-maroon: #9E182B;
            --color-pink: #F2AFBC;
            --color-red: #D63637;
            --color-dark: #333333;
            --color-gray: #555555;
            --color-offwhite: #F9FAFA;
            --color-white: #FFFFFF;
            
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Figtree', sans-serif;
            
            --container-width: 1140px;
            --border-radius: 12px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            
            /* Responsive Spacing Variables */
            --spacing-container: 20px;
            --header-height: 80px;
        }

        /* --- Base Styles --- */
        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
            -webkit-tap-highlight-color: transparent; /* Remove blue highlight on tap for iOS */
        }

        body {
            font-family: var(--font-body);
            color: var(--color-dark);
            background-color: var(--color-offwhite);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased; /* Crisp text on Mac/iOS */
        }

        h1, h2, h3 { 
            font-family: var(--font-heading); 
            line-height: 1.2; 
            margin-bottom: 1rem;
        }

        a { text-decoration: none; color: inherit; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--spacing-container);
            width: 100%;
        }

        /* --- Navigation --- */
        .navbar {
            background-color: white;
            height: var(--header-height);
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            position: sticky; /* Keeps nav visible on scroll */
            top: 0;
            z-index: 50;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--spacing-container);
            color: white;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--color-dark);
        }

        /* --- Booking Layout --- */
        .booking-section {
            padding: 60px 0;
            /* Ensure bottom padding accounts for iPhone home bar */
            padding-bottom: calc(60px + env(safe-area-inset-bottom));
        }

        .booking-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* --- Cards --- */
        .calendly-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid #eee;
            min-height: 1000px;
            overflow: hidden; /* Contains the iframe */
            position: relative;
        }

        /* Loading state for Calendly */
        .loading-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--color-gray);
            z-index: 0;
        }

        .calendly-iframe-mock {
            width: 100%;
            height: 100%;
            border: none;
            position: relative;
            z-index: 1;
            /* Mocking iframe appearance */
            background: #fff; 
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sidebar-box {
            background: var(--color-maroon);
            color: white;
            padding: 30px;
            border-radius: 12px;
            top: 100px; /* Sticky sidebar on desktop */
        }

        .sidebar-item {
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 24px;
        }

        .sidebar-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .icon-text {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 8px;
        }

        .icon-text svg {
            flex-shrink: 0; /* Prevents icon squishing */
            color: var(--color-pink);
        }

        /* --- Mobile Optimization (Max Width 900px) --- */
        @media (max-width: 900px) {
            :root {
                --header-height: 60px; /* Slimmer header */
                --spacing-container: 16px; /* Tighter edges */
            }

            .booking-section {
                padding: 30px 0;
            }

            .booking-header {
                margin-bottom: 24px;
            }

            .booking-header h1 {
                font-size: 1.5rem;
            }

            .booking-grid {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 24px;
            }

            /* CRITICAL CHANGE: 
               I removed `order: -1` from the original code. 
               On mobile, users want to see the calendar (the primary action) first.
               The sidebar info acts as supporting details below the calendar.
            */
            .sidebar-box {
                position: static; /* No sticky on mobile */
                order: 2; /* Ensures sidebar is below calendar */
                padding: 24px;
            }

            .calendly-card {
                padding: 10px; /* Maximize width for the calendar */
                min-height: 650px;
                order: 1; /* Ensures calendar is first */
            }
        }

        /* --- Ultra Small Devices (iPhone SE, etc) --- */
        @media (max-width: 380px) {
            .logo span {
                font-size: 1rem;
            }
        }/* End custom CSS */