/* Golf Club Builders - Modern Clean Design */:root{--deep-green:#0B6E4F;--graphite:#1F2937;--white:#FFFFFF;--gold:#C8A96A;--light:#F7F9F8;--dark-gray:#333333;--shadow:rgba(0,0,0,0.1);/* Legacy aliases for compatibility */ --navy-blue:var(--deep-green);--golf-green:var(--deep-green);--light-gray:var(--light);}*{margin:0;padding:0;box-sizing:border-box;}body{font-family:'Inter','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;color:var(--dark-gray);line-height:1.6;overflow-x:hidden;}/* Typography */h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;color:var(--navy-blue);}h1{font-size:3.5rem;}h2{font-size:2.5rem;}h3{font-size:2rem;}h4{font-size:1.5rem;}/* Header/Navigation */.header{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);box-shadow:0 2px 20px var(--shadow);z-index:1000;transition:all 0.3s ease;}.header.scrolled{padding:0.5rem 0;box-shadow:0 4px 30px var(--shadow);}.nav-container{max-width:1400px;margin:0 auto;padding:1.5rem 2rem;display:flex;justify-content:space-between;align-items:center;gap:2rem;}.logo{font-size:1.8rem;font-weight:800;color:var(--navy-blue);text-decoration:none;display:flex;align-items:center;gap:0.5rem;flex:1;max-width:500px;}.logo img{transition:all 0.3s ease;width:100%;height:auto;max-width:none;}.logo:hover img{transform:scale(1.05);}.logo-accent{color:var(--golf-green);}.nav-menu{display:flex;list-style:none;gap:2.5rem;align-items:center;flex-shrink:0;}.nav-link{color:var(--navy-blue);text-decoration:none;font-weight:500;font-size:1rem;transition:color 0.3s ease;position:relative;}.nav-link:hover{color:var(--golf-green);}.nav-link::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:var(--golf-green);transition:width 0.3s ease;}.nav-link:hover::after{width:100%;}.btn{padding:0.75rem 2rem;border-radius:50px;font-weight:600;text-decoration:none;transition:all 0.3s ease;display:inline-block;border:none;cursor:pointer;font-size:1rem;}.btn-primary{background:var(--golf-green);color:white;box-shadow:0 4px 15px rgba(0,166,81,0.3);}.btn-primary:hover{background:#008741;transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,166,81,0.4);}.btn-secondary{background:var(--navy-blue);color:white;}.btn-secondary:hover{background:#0d2a5c;transform:translateY(-2px);}.btn-outline{border:2px solid var(--navy-blue);color:var(--navy-blue);background:transparent;}.btn-outline:hover{background:var(--navy-blue);color:white;}/* Hero buttons on dark background */.hero .btn-primary{border:2px solid white;}.hero .btn-primary:hover{border:2px solid white;}.hero .btn-outline{border-color:white;color:white;}.hero .btn-outline:hover{background:white;color:var(--navy-blue);border-color:white;}/* Cart Button Styles */.cart-button{position:relative;display:flex;align-items:center;gap:0.5rem;padding:0.5rem 1rem;background:var(--deep-green);color:white;text-decoration:none;border-radius:25px;transition:all 0.3s ease;font-weight:600;}.cart-button:hover{background:#0a5a42;color:white;transform:translateY(-2px);box-shadow:0 4px 12px rgba(11,110,79,0.3);}.cart-icon{font-size:1.2rem;filter:brightness(0) invert(1);}.cart-count{background:var(--gold);color:var(--graphite);border-radius:50%;width:24px;height:24px;display:flex;align-items:center;justify-content:center;font-size:0.8rem;font-weight:700;min-width:24px;transition:all 0.3s ease;}.cart-button:hover .cart-count{background:white;color:var(--deep-green);transform:scale(1.1);}/* Parallax Section Styles */.parallax-section{position:relative;overflow:hidden;}.parallax-bg{position:absolute;top:0;left:0;width:100%;height:120%;background-size:cover;background-position:center;background-repeat:no-repeat;will-change:transform;transition:transform 0.1s ease-out;}/* Smooth scrolling for better parallax performance */html{scroll-behavior:smooth;}/* Mobile optimization for parallax */@media (max-width:768px){.parallax-bg{background-attachment:scroll !important;transform:none !important;}.parallax-section{height:50vh;min-height:300px;}}/* Hero Section */.hero{min-height:100vh;background:linear-gradient(135deg,var(--navy-blue) 0%,#0d2a5c 100%);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;margin-top:80px;}.hero::before{content:'';position:absolute;width:500px;height:500px;background:var(--golf-green);border-radius:50%;top:-250px;right:-250px;opacity:0.1;}.hero::after{content:'';position:absolute;width:400px;height:400px;background:var(--gold);border-radius:50%;bottom:-200px;left:-200px;opacity:0.1;}.hero-container{max-width:1400px;margin:0 auto;padding:4rem 2rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;position:relative;z-index:1;}.hero-content h1{color:white;font-size:4rem;margin-bottom:1.5rem;animation:fadeInUp 0.8s ease;}.hero-content .highlight{color:var(--golf-green);position:relative;}.hero-content p{color:rgba(255,255,255,0.9);font-size:1.3rem;margin-bottom:2rem;animation:fadeInUp 0.8s ease 0.2s both;}.hero-cta{display:flex;gap:1.5rem;animation:fadeInUp 0.8s ease 0.4s both;}.hero-image{position:relative;animation:fadeIn 1s ease 0.6s both;}.hero-image img{width:100%;border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,0.3);}/* Hero Animation with Image Sequence */.hero-animation-container{position:relative;width:100%;height:100%;border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,0.3);}#heroAnimation{width:100%;height:100%;object-fit:cover;display:block;border-radius:20px;}/* Sections */.section{padding:6rem 2rem;}.section-light{background:var(--light-gray);}.container{max-width:1400px;margin:0 auto;}.section-header{text-align:center;margin-bottom:4rem;}.section-title{font-size:3rem;margin-bottom:1rem;position:relative;display:inline-block;}.section-title::after{content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:60px;height:4px;background:var(--golf-green);border-radius:2px;}.section-subtitle{font-size:1.2rem;color:#666;max-width:600px;margin:0 auto;}/* Cards */.card{background:white;border-radius:20px;padding:2rem;box-shadow:0 10px 40px var(--shadow);transition:all 0.3s ease;position:relative;overflow:hidden;}.card:hover{transform:translateY(-10px);box-shadow:0 20px 60px rgba(0,0,0,0.15);}.card::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,var(--golf-green),var(--gold));}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;}.service-card{text-align:center;}.service-icon{width:80px;height:80px;background:linear-gradient(135deg,var(--golf-green),#00c967);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-size:2.5rem;color:white;}.service-card h3{margin-bottom:1rem;}.service-card p{color:#666;margin-bottom:1.5rem;}/* Testimonials */.testimonial-slider{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem;}.testimonial{background:white;padding:2rem;border-radius:20px;box-shadow:0 10px 40px var(--shadow);}.testimonial-text{font-style:italic;color:#555;margin-bottom:1.5rem;line-height:1.8;}.testimonial-author{display:flex;align-items:center;gap:1rem;}.testimonial-avatar{width:50px;height:50px;border-radius:50%;background:var(--golf-green);display:flex;align-items:center;justify-content:center;color:white;font-weight:700;font-size:1.2rem;}.testimonial-name{font-weight:600;color:var(--navy-blue);}.stars{color:var(--gold);}/* Footer *//* ===== FOOTER STYLES ===== */.footer{background:linear-gradient(135deg,var(--deep-green) 0%,#0a5a42 100%);color:white;position:relative;overflow:hidden;}.footer::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);}.footer-main{padding:5rem 0 3rem;position:relative;}.footer-content{max-width:1400px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:3.5fr 1fr 1fr 1.5fr;gap:6rem;align-items:start;}/* Brand Section */.footer-brand{width:100%;min-width:0;text-align:center;display:flex;flex-direction:column;align-items:center;gap:0.5rem;}.footer-logo-img{width:auto;height:80px;object-fit:contain;filter:brightness(0) invert(1);margin-bottom:0.5rem;}.brand-name{font-size:1.75rem;font-weight:700;color:white;margin:0 0 0.25rem 0;letter-spacing:-0.02em;}.brand-tagline{font-size:0.95rem;color:var(--gold);margin:0;font-weight:500;letter-spacing:0.5px;}.brand-description{color:rgba(255,255,255,0.85);line-height:1.6;margin-bottom:2rem;font-size:0.95rem;}.social-links{display:flex;gap:1rem;justify-content:center;}.social-link{display:flex;align-items:center;justify-content:center;width:44px;height:44px;background:rgba(255,255,255,0.1);border-radius:12px;color:rgba(255,255,255,0.8);text-decoration:none;transition:all 0.3s ease;backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.1);}.social-link:hover{background:var(--gold);color:var(--deep-green);transform:translateY(-2px);box-shadow:0 8px 25px rgba(200,169,106,0.3);}/* Column Sections */.footer-column,.footer-contact{min-width:0;width:100%;text-align:left;}.footer-column:first-of-type{padding-left:6rem;}.footer-column:nth-of-type(2){padding-right:3rem;margin-left:-1rem;}.footer-title{font-size:1.1rem;font-weight:600;color:white;margin-bottom:1.5rem;position:relative;padding-bottom:0.5rem;}.footer-title::after{content:'';position:absolute;bottom:0;left:0;width:30px;height:2px;background:var(--gold);border-radius:1px;}.footer-links{list-style:none;padding:0;margin:0;}.footer-links li{margin-bottom:0.75rem;}.footer-link{color:rgba(255,255,255,0.8);text-decoration:none;font-size:0.95rem;transition:all 0.3s ease;position:relative;padding-left:0;}.footer-link::before{content:'';position:absolute;left:-12px;top:50%;transform:translateY(-50%);width:0;height:1px;background:var(--gold);transition:width 0.3s ease;}.footer-link:hover{color:var(--gold);padding-left:12px;}.footer-link:hover::before{width:8px;}.contact-info{display:flex;flex-direction:column;gap:1.5rem;}.contact-item{display:flex;align-items:flex-start;gap:1rem;}.contact-icon{display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:rgba(255,255,255,0.1);border-radius:8px;color:var(--gold);flex-shrink:0;backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.1);}.contact-details{flex:1;min-width:0;}.contact-label{display:block;font-size:0.8rem;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:0.25rem;font-weight:500;}.contact-value{color:rgba(255,255,255,0.9);text-decoration:none;font-size:0.95rem;line-height:1.4;transition:color 0.3s ease;}.contact-value:hover{color:var(--gold);}/* Footer Bottom */.footer-bottom{background:rgba(0,0,0,0.2);padding:2rem 2rem 2.5rem;border-top:1px solid rgba(255,255,255,0.1);backdrop-filter:blur(10px);}.footer-bottom-content{max-width:1400px;margin:0 auto;display:flex;justify-content:center;align-items:center;flex-direction:column;gap:0.5rem;text-align:center;}.copyright{color:rgba(255,255,255,0.7);font-size:0.9rem;margin:0;}.footer-legal{display:flex;align-items:center;gap:1rem;}.legal-link{color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.9rem;transition:color 0.3s ease;}.legal-link:hover{color:var(--gold);}.legal-separator{color:rgba(255,255,255,0.4);font-size:0.8rem;}/* Responsive Design */@media (max-width:1024px){.footer-content{max-width:1400px;margin:0 auto;grid-template-columns:1fr 1fr;gap:2rem;width:100%;}.footer-brand{grid-column:1 / -1;max-width:none;text-align:center;margin-bottom:2rem;}}@media (max-width:768px){.footer-main{padding:3rem 1.5rem 2rem;}.footer-content{max-width:1400px;margin:0 auto;grid-template-columns:1fr;gap:2.5rem;}.footer-logo{flex-direction:column;text-align:center;gap:1rem;}.brand-text{text-align:center;}.social-links{justify-content:center;}.footer-bottom-content{flex-direction:column;text-align:center;gap:1rem;}.footer-legal{justify-content:center;}/* Center all footer sections on mobile */ .footer-column,.footer-contact{text-align:center !important;padding-left:0 !important;padding-right:0 !important;margin-left:0 !important;}.footer-title{text-align:center;}.footer-title::after{left:50% !important;transform:translateX(-50%);}/* Center Quick Links and Services lists */ .footer-links{display:flex;flex-direction:column;align-items:center;}.footer-links li{text-align:center;}.footer-link{display:inline-block;padding-left:0 !important;}.footer-link::before{display:none !important;}.footer-link:hover{padding-left:0 !important;}.contact-info{gap:2rem;}.contact-item{flex-direction:column;align-items:center !important;text-align:center;gap:0.75rem;}.contact-icon{width:44px;height:44px;background:rgba(255,255,255,0.15);}.contact-icon svg{width:22px;height:22px;}.contact-details{text-align:center;}.contact-label{font-size:0.75rem;margin-bottom:0.5rem;letter-spacing:1px;}.contact-value{font-size:0.9rem;word-break:break-word;display:block;}.contact-value br{display:inline;}.contact-value br::after{content:",";}}@media (max-width:480px){.footer-main{padding:2.5rem 1rem 1.5rem;}.footer-content{gap:2rem;}.brand-name{font-size:1.5rem;}.contact-item{flex-direction:column;text-align:center;gap:0.5rem;}.contact-icon{align-self:center;}}/* Animations */@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}@keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}/* Responsive */@media (max-width:1024px){.hero-container{grid-template-columns:1fr;text-align:center;}.hero-cta{justify-content:center;}}@media (max-width:768px){h1{font-size:2.5rem;}h2{font-size:2rem;}.nav-menu{display:none;}.hero-content h1{font-size:2.5rem;}.section{padding:4rem 1rem;}}/* Booking Calendar Styles */.calendar{background:white;border-radius:20px;padding:2rem;box-shadow:0 10px 40px var(--shadow);}.calendar-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;}.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:0.5rem;}.calendar-day{aspect-ratio:1;display:flex;align-items:center;justify-content:center;border-radius:10px;cursor:pointer;transition:all 0.3s ease;font-weight:500;}.calendar-day.available{background:rgba(0,166,81,0.1);color:var(--golf-green);}.calendar-day.available:hover{background:var(--golf-green);color:white;}.calendar-day.blocked{background:rgba(0,0,0,0.05);color:#ccc;cursor:not-allowed;}.calendar-day.selected{background:var(--golf-green);color:white;font-weight:700;}.time-slots{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:1rem;margin-top:2rem;}.time-slot{padding:1rem;border:2px solid var(--golf-green);border-radius:10px;text-align:center;cursor:pointer;transition:all 0.3s ease;font-weight:600;color:var(--golf-green);}.time-slot:hover{background:var(--golf-green);color:white;}.time-slot.selected{background:var(--golf-green);color:white;}.time-slot.booked{border-color:#ccc;color:#ccc;cursor:not-allowed;}/* Admin Panel Styles */.admin-sidebar{width:250px;background:var(--navy-blue);height:100vh;position:fixed;left:0;top:0;padding:2rem 1rem;color:white;}.admin-content{margin-left:250px;padding:2rem;background:var(--light-gray);min-height:100vh;}.admin-menu{list-style:none;}.admin-menu li{margin-bottom:1rem;}.admin-menu a{color:rgba(255,255,255,0.8);text-decoration:none;display:flex;align-items:center;gap:0.75rem;padding:0.75rem 1rem;border-radius:10px;transition:all 0.3s ease;}.admin-menu a:hover{background:rgba(255,255,255,0.1);color:white;}.admin-menu a.active{background:var(--golf-green);color:white;}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:3rem;}.stat-card{background:white;padding:2rem;border-radius:15px;box-shadow:0 5px 20px var(--shadow);}.stat-value{font-size:2.5rem;font-weight:700;color:var(--golf-green);margin-bottom:0.5rem;}.stat-label{color:#666;font-size:0.95rem;}/* Forms */.form-group{margin-bottom:1.5rem;}.form-label{display:block;margin-bottom:0.5rem;font-weight:600;color:var(--navy-blue);}.form-control{width:100%;padding:0.75rem 1rem;border:2px solid #e0e0e0;border-radius:10px;font-size:1rem;transition:border-color 0.3s ease;}.form-control:focus{outline:none;border-color:var(--golf-green);}textarea.form-control{resize:vertical;min-height:120px;}.alert{padding:1rem 1.5rem;border-radius:10px;margin-bottom:1.5rem;}.alert-success{background:rgba(0,166,81,0.1);color:var(--golf-green);border-left:4px solid var(--golf-green);}.alert-error{background:rgba(220,53,69,0.1);color:#dc3545;border-left:4px solid #dc3545;}.alert-info{background:rgba(13,110,253,0.1);color:#0d6efd;border-left:4px solid #0d6efd;}/* Updated Sat Oct 11 18:33:43 EDT 2025 *//* Force cache refresh Sat Oct 11 19:24:19 EDT 2025 *//* ============================================ MOBILE RESPONSIVE DESIGN - Option 3 Desktop layout remains unchanged ============================================ *//* Mobile Menu Styles */.mobile-menu-btn{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:0.5rem;}.mobile-menu-btn span{display:block;width:25px;height:3px;background:var(--navy-blue);transition:all 0.3s ease;}.mobile-menu-btn.active span:nth-child(1){transform:rotate(45deg) translate(8px,8px);}.mobile-menu-btn.active span:nth-child(2){opacity:0;}.mobile-menu-btn.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px);}/* MOBILE ONLY STYLES - DESKTOP UNAFFECTED */@media (max-width:768px){/* ============================================ HEADER & NAVIGATION ============================================ */ .header{padding:0;}.nav-container{padding:1rem 1.5rem;flex-wrap:wrap;}.logo{max-width:180px;flex:0 0 180px;}.logo img{height:50px !important;width:auto;}.cart-button{order:2;flex-shrink:0;}.mobile-menu-btn{display:flex;order:3;flex-shrink:0;}.nav-menu{display:none;width:100%;order:4;flex-direction:column;gap:0;margin-top:1rem;background:white;border-top:2px solid var(--light);padding:1rem 0;}.nav-menu.active{display:flex;}.nav-menu li{width:100%;text-align:center;border-bottom:1px solid var(--light);}.nav-menu li:last-child{border-bottom:none;}.nav-link{display:block;padding:1rem;font-size:1.1rem;}.nav-link::after{display:none;}/* Keep cart button as inline element - NOT full width */ .cart-button{padding:0.75rem 1rem !important;width:auto !important;display:inline-flex !important;align-items:center !important;gap:0.5rem !important;position:relative !important;}.cart-icon{font-size:1.8rem !important;filter:none !important;color:#000 !important;}.cart-button{background:transparent !important;box-shadow:none !important;padding:0.5rem 1rem !important;}.cart-count{position:absolute !important;top:-5px !important;right:-5px !important;min-width:22px !important;height:22px !important;font-size:0.75rem !important;font-weight:700 !important;background:#ff0000 !important;color:#ffffff !important;border-radius:50% !important;/* display controlled by inline style from JavaScript - no !important */ align-items:center !important;justify-content:center !important;border:2px solid white !important;box-shadow:0 2px 4px rgba(0,0,0,0.2) !important;}/* Mobile:Make header sticky so cart always visible */ .header{position:fixed !important;top:0 !important;left:0 !important;right:0 !important;z-index:1000 !important;}/* Add padding to body so content isn't hidden under header */ body{padding-top:70px;}/* Floating cart notification badge */ .cart-count{animation:none;transition:all 0.3s ease;}.cart-count.updated{animation:cartPulse 0.5s ease-in-out;background:#ff6b6b !important;color:white !important;}@keyframes cartPulse{0%{transform:scale(1);}50%{transform:scale(1.3);}100%{transform:scale(1);}}/* ============================================ CUSTOM CLUB BUILDING PAGE ============================================ */ /* Service items - make them stack on mobile */ .service-item{flex-direction:column !important;align-items:center !important;gap:1rem !important;text-align:center !important;}.service-item *{text-align:center !important;}.service-item > div:first-child{text-align:center !important;width:100% !important;}.service-item > div:last-child{width:100% !important;flex-direction:column !important;align-items:center !important;gap:0.75rem !important;text-align:center !important;}/* Force center all content inside service items on mobile */ .service-item div,.service-item p,.service-item h4,.service-item ul,.service-item li{text-align:center !important;margin-left:auto !important;margin-right:auto !important;}/* Smaller +/- buttons */ .service-item button[onclick*="changeQuantity"]{padding:0.35rem 0.6rem !important;font-size:0.85rem !important;min-width:32px !important;}.service-item input[type="number"]{width:50px !important;padding:0.35rem !important;font-size:0.9rem !important;}/* Grid layout for club building page - collapse to single column on mobile */ .club-building-grid[style]{grid-template-columns:1fr !important;}/* Force services section to appear first using grid row */ .club-building-grid[style] > div:first-child{grid-row:1 !important;}/* Force cart/emergency sidebar to appear second (bottom) using grid row */ .club-building-grid[style] > div:last-child{grid-row:2 !important;}/* Remove sticky positioning from cart on mobile */ .card[style*="position:sticky"]{position:relative !important;top:auto !important;margin-bottom:2rem !important;}/* Emergency service card */ #emergency-card{position:relative !important;top:auto !important;margin-top:0 !important;margin-bottom:2rem !important;}/* ============================================ CHECKOUT PAGE (CART) ============================================ */ /* Cart item cards - stack everything vertically */ #cart-content > div[style*="display:flex"]{display:flex !important;flex-direction:column !important;gap:1rem !important;padding:1.5rem 1rem !important;align-items:flex-start !important;justify-content:flex-start !important;}#cart-content > div > div:first-child{width:100% !important;flex:none !important;}/* Quantity controls - make them wrap */ #cart-content > div > div:nth-child(2){width:100% !important;display:flex !important;justify-content:flex-start !important;flex-wrap:wrap !important;gap:0.5rem !important;}#cart-content > div > div:nth-child(2) button{padding:0.4rem 0.65rem !important;min-width:36px !important;max-width:36px !important;font-size:0.9rem !important;flex-shrink:0 !important;}#cart-content > div > div:nth-child(2) span{min-width:35px !important;max-width:35px !important;text-align:center;font-size:0.95rem !important;flex-shrink:0 !important;}/* Item total price */ #cart-content > div > div:last-child{margin-left:0 !important;width:100% !important;text-align:right !important;font-size:1.3rem !important;padding-top:0.5rem;border-top:1px solid #eee;}/* Cart total section */ #cart-total > div > div[style*="display:flex"]{display:flex !important;flex-wrap:nowrap !important;justify-content:space-between !important;align-items:center !important;font-size:1rem !important;gap:0.5rem !important;}#cart-total > div:last-child{font-size:1.1rem !important;}/* Checkout form - single column */ #checkout-form form > div:first-child{display:grid !important;grid-template-columns:1fr !important;gap:1rem !important;}/* Emergency notice card */ #emergency-notice .card{padding:1rem !important;}#emergency-notice .card > div[style*="display:flex"]{display:flex !important;flex-direction:column !important;gap:1rem !important;align-items:flex-start !important;}#emergency-notice .card > div > div:first-child{font-size:2rem !important;}#emergency-notice h3{font-size:1.2rem !important;}#emergency-notice p{font-size:0.9rem !important;}#emergency-notice button{width:100% !important;padding:1rem !important;}/* Payment notice card */ .card[style*="background:linear-gradient"]{padding:1.25rem !important;}.card[style*="background:linear-gradient"] > div{display:flex !important;flex-direction:column !important;align-items:center !important;text-align:center !important;gap:0.75rem !important;}.card[style*="background:linear-gradient"] h3{font-size:1.2rem !important;margin:0 !important;}.card[style*="background:linear-gradient"] p{font-size:0.95rem !important;margin:0 !important;}/* Notice boxes */ #checkout-form form > div:nth-child(3){padding:1rem !important;}#checkout-form form > div:nth-child(3) h4{font-size:1rem !important;}#checkout-form form > div:nth-child(3) p,#checkout-form form > div:nth-child(3) li{font-size:0.9rem !important;}/* Submit button */ #checkout-form button[type="submit"]{width:100%;padding:1rem 2rem !important;font-size:1rem !important;}/* ============================================ BOOKING PAGE ============================================ */ /* Service selection grid */ .services-grid{grid-template-columns:1fr !important;gap:1rem;}.service-card{margin-bottom:0;}/* Date and time selection - stack vertically */ .booking-form > div:nth-child(2) > div{grid-template-columns:1fr !important;gap:2rem !important;}/* Calendar optimization */ .calendar{padding:1rem;}.calendar-header{margin-bottom:1rem;}.calendar-header h4{font-size:1rem;}.calendar-grid{gap:0.25rem;}.calendar-day{font-size:0.9rem;padding:0.5rem;}/* Time slots */ .time-slots{grid-template-columns:repeat(2,1fr) !important;gap:0.75rem;}.time-slot{padding:0.75rem 0.5rem;font-size:0.9rem;}#timeSlotsContainer{min-height:300px !important;}/* Customer information form - single column */ .booking-form > div:nth-child(3) > div{grid-template-columns:1fr !important;gap:1rem !important;}/* Form labels and inputs */ .form-label{font-size:0.95rem;}.form-control{font-size:1rem;padding:0.75rem;}/* ============================================ GENERAL MOBILE OPTIMIZATIONS ============================================ */ /* Prevent horizontal overflow */ html,body{overflow-x:hidden;max-width:100%;}/* Only restrict width for major containers,not all elements */ .container,.section,.card,main{max-width:100%;}/* Section spacing */ .section{padding:3rem 1rem;margin-top:80px !important;/* Account for fixed header */}.section[style*="margin-top:120px"]{margin-top:80px !important;}/* Container */ .container{padding:0 1rem;max-width:100% !important;overflow-x:hidden;}/* Cards */ .card{padding:1.5rem 1rem !important;margin-bottom:1rem;overflow-x:hidden;}/* Force all cards to fit */ .card[style]{margin-bottom:2rem !important;padding:1.5rem 1rem !important;}/* Buttons - only in main content areas,NOT navigation */ .card .btn,.section .btn,form .btn,#checkout-form .btn{width:100% !important;text-align:center;padding:0.875rem 1.5rem !important;font-size:1rem !important;box-sizing:border-box;}/* Buttons inside forms and checkout */ #checkout-form button[type="submit"],.booking-form button[type="submit"]{width:100% !important;box-sizing:border-box;}.btn + .btn{margin-top:0.75rem;}/* Button groups - stack vertically (but NOT in nav) */ .hero-cta,.section div[style*="display:flex"][style*="justify-content:center"]{display:flex !important;flex-direction:column !important;gap:1rem !important;align-items:stretch !important;}.hero-cta .btn{width:100% !important;margin:0;}/* Fix ONLY checkout form grid layouts with minmax */ #checkout-form form > div[style*="grid-template-columns"][style*="minmax"],.booking-form > div[style*="grid-template-columns"]{grid-template-columns:1fr !important;}/* Typography */ h1{font-size:2rem !important;}h2{font-size:1.75rem !important;}h3{font-size:1.4rem !important;}h4{font-size:1.2rem !important;}.section-title{font-size:1.75rem;}.section-subtitle{font-size:1rem;}/* Policy Banner - sit just below header on mobile */ .policy-banner{margin-top:20px !important;position:relative !important;z-index:999 !important;}/* Reduce section margin after policy banner on mobile */ .policy-banner + .section{margin-top:10px !important;}/* Reduce section margin after policy banner on mobile for hero */ .policy-banner + .hero{margin-top:0px !important;}/* Hero section */ .hero{min-height:60vh;padding:2rem 1rem;margin-top:0 !important;}/* Simulator Page Mobile Fixes */ .parallax-section{margin-top:0px !important;height:40vh !important;min-height:300px !important;}.simulator-content{margin-top:-20px !important;}.simulator-showcase{grid-template-columns:1fr !important;gap:1.5rem !important;margin-bottom:1.5rem !important;}.simulator-showcase img{min-height:250px !important;object-fit:cover !important;}/* Shift launch monitor image to show the monitor on mobile */ img.launch-monitor-img{transform:translateX(-25%) !important;width:140% !important;max-width:none !important;object-fit:cover !important;object-position:left center !important;}/* ============================================ CONTACT PAGE MOBILE FIXES ============================================ */ .contact-grid{grid-template-columns:1fr !important;gap:2rem !important;}.contact-info-card,.contact-grid .card{margin-bottom:0 !important;}/* ============================================ BLOG PAGE MOBILE FIXES ============================================ */ .blog-section{margin-top:0px !important;padding-top:2rem !important;}/* Featured post - stack vertically on mobile */ .featured-post-grid{grid-template-columns:1fr !important;gap:1.5rem !important;}.featured-post-card{margin-bottom:2rem !important;}.featured-post-card h2{font-size:1.75rem !important;}.featured-post-card p{font-size:1rem !important;}.featured-post-card .btn{width:100% !important;text-align:center !important;}.hero-container{padding:0;display:flex !important;flex-direction:column;gap:0;}/* Mobile order:headline first,animation second,content last */ .hero-content{order:1;display:contents;/* Makes children direct flex items of hero-container */}.hero-content h1{font-size:2rem !important;order:1;margin-bottom:1.5rem;}.hero-animation-container{order:2;margin:1.5rem 0;}.hero-content p{font-size:1rem;order:3;margin-bottom:1.5rem;}.hero-cta{order:4;}/* Service icons */ .service-icon{font-size:2rem;width:60px;height:60px;}/* Testimonials */ .testimonials-grid{grid-template-columns:1fr !important;}.testimonial{margin-bottom:1.5rem;}/* Images */ img{max-width:100%;height:auto;}/* Tables - make them scrollable */ table{display:block;overflow-x:auto;white-space:nowrap;}/* Admin sidebar - hide on mobile */ .admin-sidebar{transform:translateX(-100%);transition:transform 0.3s ease;}.admin-sidebar.active{transform:translateX(0);}.admin-main{margin-left:0;padding:1rem;}.admin-header{padding:1rem !important;margin:-1rem -1rem 1rem -1rem !important;flex-direction:column;align-items:flex-start !important;gap:0.5rem;}.admin-header h1{font-size:1.5rem !important;}}/* Extra small devices */@media (max-width:480px){.logo{max-width:150px;flex:0 0 150px;}.logo img{height:40px !important;}.nav-container{padding:0.75rem 1rem;}.section{padding:2rem 0.75rem;}.card{padding:1rem 0.75rem;}h1{font-size:1.75rem !important;}h2{font-size:1.5rem !important;}/* Time slots - single column on very small screens */ .time-slots{grid-template-columns:1fr !important;}/* Cart buttons */ #cart-content button{font-size:1rem;padding:0.5rem 0.75rem !important;}/* Checkout form inputs */ #checkout-form input,#checkout-form textarea,#checkout-form select{font-size:16px !important;/* Prevents zoom on iOS */ width:100% !important;max-width:100% !important;box-sizing:border-box !important;}.booking-form input,.booking-form textarea,.booking-form select{font-size:16px !important;/* Prevents zoom on iOS */ width:100% !important;max-width:100% !important;box-sizing:border-box !important;}/* Ensure all inputs fit */ input[style*="width:100%"],textarea[style*="width:100%"],select[style*="width:100%"]{width:100% !important;max-width:100% !important;box-sizing:border-box !important;padding:0.75rem !important;}/* Fix labels */ label[style*="display:block"]{font-size:0.95rem !important;margin-bottom:0.5rem !important;}/* Hero Animation - extra small screens */ .hero-animation-container{min-height:250px;}#heroAnimation{min-height:250px;}}