/*
Theme Name: Sarasota Inflatable Repairs
Theme URI: https://www.sarasotainflatablerepairs.com
Author: Sarasota Inflatable Repairs
Author URI: https://www.sarasotainflatablerepairs.com
Description: A professional WordPress theme for Sarasota Inflatable Repairs — built with SEO-optimized markup, full Customizer integration, responsive design, and a WordPress-native architecture. Features include a service showcase, before & after sliders, image gallery, trust ticker, Google Reviews integration, Skool community signup, and contact forms. "If We Can't Fix It, Nobody Can!"
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sir-theme
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready
*/

/* ===== CSS VARIABLES ===== */
:root {
    --blue-dark: #0B1D3A;
    --blue-mid: #1A3A5C;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --blue-pale: #EFF6FF;
    --orange: #F97316;
    --orange-dark: #EA580C;
    --orange-light: #FFF7ED;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY ===== */
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto 48px;
}
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249,115,22,0.5); }
.btn-secondary {
    background: var(--white);
    color: var(--blue-dark);
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar i { margin-right: 6px; color: var(--orange); }

/* ===== HEADER / NAV ===== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.4rem;
}
.logo-text h1 { font-size: 1.25rem; font-weight: 800; color: var(--blue-dark); line-height: 1.1; }
.logo-text span { font-size: 0.7rem; color: var(--orange); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

/* WordPress Nav Menu */
.main-navigation ul { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.main-navigation a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 0.85rem;
    padding: 8px 16px; border-radius: 8px;
    transition: var(--transition); color: var(--gray-700);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.main-navigation a:hover { color: var(--blue); background: var(--blue-pale); }
.main-navigation .nav-cta a {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white) !important;
    padding: 10px 24px; border-radius: 50px;
}
.main-navigation .nav-cta a:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(249,115,22,0.4); }
.mobile-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; color: var(--blue-dark); cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #1e4976 100%);
    padding: 100px 0 120px;
    overflow: hidden; min-height: 600px;
    display: flex; align-items: center;
}
.hero::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    padding: 8px 20px; border-radius: 50px;
    color: var(--orange); font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 0.85rem; margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.3);
}
.hero h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900; color: var(--white);
    margin-bottom: 10px; line-height: 1.1;
}
.hero h2 .highlight {
    background: linear-gradient(135deg, var(--orange), #FBBF24);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--orange); margin-bottom: 20px; font-style: italic;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.hero-stat { text-align: center; }
.hero-stat .number { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--white); }
.hero-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrapper {
    position: relative; width: 100%; max-width: 480px; aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(37,99,235,0.2));
    border-radius: 30px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-wrapper > i { font-size: 8rem; color: rgba(255,255,255,0.15); }
.hero-float-card {
    position: absolute; background: var(--white); border-radius: 16px;
    padding: 16px 20px; box-shadow: var(--shadow-xl);
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 10%; left: -10%; animation-delay: 0s; }
.hero-float-card.card-2 { top: 10%; right: -5%; animation-delay: 1.5s; }
.hero-float-card .card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.hero-float-card .card-icon.orange { background: var(--orange-light); color: var(--orange); }
.hero-float-card .card-icon.blue { background: var(--blue-pale); color: var(--blue); }
.hero-float-card .card-text strong { display: block; font-size: 0.85rem; color: var(--gray-800); }
.hero-float-card .card-text span { font-size: 0.75rem; color: var(--gray-500); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== TRUST TICKER ===== */
.trust-ticker {
    background: var(--gray-50); padding: 50px 0 40px;
    border-bottom: 1px solid var(--gray-200); overflow: hidden;
}
.trust-ticker h3 {
    text-align: center; font-size: 1.1rem; font-weight: 700;
    color: var(--gray-500); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 30px;
}
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    flex-shrink: 0; padding: 12px 50px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0.5; transition: var(--transition); filter: grayscale(100%);
}
.ticker-item:hover { opacity: 1; filter: grayscale(0%); }
.ticker-item .ticker-logo {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.ticker-item img { width: 50px; height: 50px; border-radius: 12px; object-fit: contain; }
.ticker-item span {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.95rem; color: var(--gray-700); white-space: nowrap;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white); border-radius: var(--radius);
    padding: 40px 32px; border: 1px solid var(--gray-200);
    transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--orange)); opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 22px;
    background: var(--blue-pale); color: var(--blue); transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white);
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--blue-dark); }
.service-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

/* ===== EXPERIENCE BANNER ===== */
.experience-banner {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    padding: 60px 0; position: relative; overflow: hidden;
}
.experience-banner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.experience-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; text-align: center; position: relative; z-index: 2;
}
.experience-item .exp-number {
    font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
    color: var(--orange); line-height: 1;
}
.experience-item .exp-label {
    font-size: 0.9rem; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-top: 8px;
}

/* ===== BEFORE & AFTER ===== */
.before-after { padding: 100px 0; background: var(--gray-50); }
.slider-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 20px; }
.ba-slider {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 4/3; cursor: col-resize; background: var(--gray-200);
}
.ba-slider .ba-before, .ba-slider .ba-after {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.ba-slider .ba-before img, .ba-slider .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-before {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    clip-path: inset(0 50% 0 0); z-index: 2;
}
.ba-slider .ba-after { background: linear-gradient(135deg, #16a34a, #15803d); }
.ba-slider .ba-before i, .ba-slider .ba-after i { font-size: 3rem; opacity: 0.3; color: var(--white); }
.ba-slider .ba-label {
    position: absolute; bottom: 16px; padding: 6px 18px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; z-index: 5;
}
.ba-slider .ba-label.label-before { left: 16px; background: rgba(220,38,38,0.9); color: var(--white); z-index: 3; }
.ba-slider .ba-label.label-after { right: 16px; background: rgba(22,163,74,0.9); color: var(--white); }
.ba-slider .ba-handle {
    position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
    background: var(--white); z-index: 4; transform: translateX(-50%); pointer-events: none;
}
.ba-slider .ba-handle::after {
    content: '\f337'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; background: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); color: var(--blue-dark); font-size: 1rem;
}
.ba-slider-caption { text-align: center; margin-top: 12px; font-weight: 600; color: var(--gray-600); font-size: 0.9rem; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item {
    border-radius: var(--radius); overflow: hidden; position: relative;
    cursor: pointer; background: var(--gray-200);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .gallery-placeholder {
    display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray-500);
}
.gallery-item .gallery-placeholder i { font-size: 2.5rem; color: var(--gray-300); }
.gallery-item .gallery-placeholder span { font-size: 0.8rem; font-weight: 600; }
.gallery-item .gallery-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(11,29,58,0.8), transparent);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: var(--gray-50); }
.reviews-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.google-badge {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); padding: 12px 24px; border-radius: 50px; box-shadow: var(--shadow-sm);
}
.g-logo { font-size: 1.5rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.g-logo span:nth-child(1) { color: #4285F4; }
.g-logo span:nth-child(2) { color: #EA4335; }
.g-logo span:nth-child(3) { color: #FBBC05; }
.g-logo span:nth-child(4) { color: #4285F4; }
.g-logo span:nth-child(5) { color: #34A853; }
.g-logo span:nth-child(6) { color: #EA4335; }
.google-badge .g-rating { font-weight: 700; color: var(--gray-800); }
.google-badge .stars { color: #FBBC05; font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #FBBC05; font-size: 1rem; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 20px; font-style: italic; line-height: 1.8; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-family: 'Montserrat', sans-serif;
}
.review-author-info strong { display: block; font-size: 0.9rem; color: var(--gray-800); }
.review-author-info span { font-size: 0.8rem; color: var(--gray-500); }
.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-cta a {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    color: var(--blue); font-size: 0.95rem; transition: var(--transition);
}
.reviews-cta a:hover { color: var(--orange); gap: 14px; }

/* ===== SKOOL CTA ===== */
.skool-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    position: relative; overflow: hidden;
}
.skool-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.skool-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 2;
}
.skool-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.skool-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 480px; }
.skool-benefits { display: grid; gap: 16px; margin-bottom: 36px; }
.skool-benefit { display: flex; align-items: center; gap: 14px; color: var(--white); font-weight: 600; }
.skool-benefit i {
    width: 32px; height: 32px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0;
}
.skool-form {
    background: var(--white); border-radius: 20px; padding: 44px; box-shadow: var(--shadow-xl);
}
.skool-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.skool-form > p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,0.1); }
.form-submit {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); border: none; border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
.form-submit.blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }

/* ===== CONTACT ===== */
.contact-cta { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info-cards { display: grid; gap: 20px; }
.contact-info-card {
    display: flex; align-items: center; gap: 20px; padding: 24px;
    background: var(--gray-50); border-radius: var(--radius); transition: var(--transition);
}
.contact-info-card:hover { background: var(--blue-pale); }
.contact-info-card .ci-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card strong { display: block; color: var(--blue-dark); font-size: 0.95rem; }
.contact-info-card span { color: var(--gray-500); font-size: 0.9rem; }
.contact-form-wrapper { background: var(--gray-50); border-radius: 20px; padding: 40px; }
.contact-form-wrapper h3 { font-size: 1.3rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 24px; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--blue-dark); padding: 60px 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo-icon { background: rgba(255,255,255,0.1); }
.footer-about .logo-text h1 { color: var(--white); }
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
    color: var(--white); font-size: 0.95rem; font-weight: 700;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--orange); padding-left: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px; font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9); z-index: 9999;
    align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute; top: 20px; right: 30px; color: var(--white);
    font-size: 2rem; cursor: pointer; background: none; border: none; transition: var(--transition);
}
.lightbox-close:hover { color: var(--orange); }
.lightbox-content { max-width: 800px; width: 100%; text-align: center; color: var(--white); }
.lightbox-content img { width: 100%; border-radius: var(--radius); margin-bottom: 16px; }
.lightbox-content .placeholder-large {
    width: 100%; aspect-ratio: 16/10; background: var(--gray-700); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--gray-500); margin-bottom: 16px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); border: none; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .skool-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-toggle { display: block; }
    .main-navigation ul {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg);
    }
    .main-navigation ul.open { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image img { border-radius: var(--radius); }
.entry-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-bottom: 16px; color: var(--blue-dark); }
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--blue); transition: var(--transition); }
.entry-content a:hover { color: var(--orange); }
