:root {
    /* iOS Glassmorphism Palette */
    --ios-blue: #0a84ff;
    --ios-green: #30d158;
    --dark-bg: #0b0f19;
    
    /* Liquid Glass Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-card-bg: rgba(255, 255, 255, 0.07);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --text-main: #f5f5f7;
    --text-muted: #a1a1a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Ambient Glows */
body::before, body::after {
    content: '';
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
}

body::before {
    background: #007aff;
    top: -50px;
    left: -50px;
}

body::after {
    background: #5856d6;
    bottom: -50px;
    right: -50px;
}

/* Navigation Bar */
header {
    background: rgba(18, 18, 20, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
}

.hero-logo {
    width: 95px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 0.8rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 2.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* iOS Liquid Glass CTA Button */
.cta-btn {
    background: rgba(48, 209, 88, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #30d158;
    border: 1px solid rgba(48, 209, 88, 0.35);
    padding: 0.9rem 2.2rem;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(48, 209, 88, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 120%;
}

.cta-btn:hover {
    background: rgba(48, 209, 88, 0.32);
    border-color: rgba(48, 209, 88, 0.6);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(48, 209, 88, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* Container & Sections */
.container {
    max-width: 1100px;
    margin: 3.5rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

/* Clean Glass Cards */
.card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Repair Request Form */
.form-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 28px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #121826;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ios-blue);
    box-shadow: 0 0 12px rgba(10, 132, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

/* Suggestion Chips */
.suggestion-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.4rem 0.8rem;
    border-radius: 980px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    background: rgba(10, 132, 255, 0.25);
    border-color: var(--ios-blue);
    transform: scale(1.03);
}

.submit-btn {
    background: linear-gradient(135deg, #0a84ff 0%, #0056b3 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 132, 255, 0.5);
    background: linear-gradient(135deg, #007aff 0%, #004085 100%);
}

/* Contact Info Panel */
.contact-info {
    background: var(--glass-card-bg);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid var(--glass-border);
    padding: 2.8rem 2rem;
    border-radius: 24px;
    text-align: center;
    line-height: 2.3;
    color: var(--text-muted);
    box-shadow: var(--glass-shadow);
}

.contact-info strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Footer */
footer {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
    .form-card { padding: 1.5rem; }
}
/* ==========================================
   Site Switcher Toggle Styling
   ========================================== */
.site-switch-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
    position: relative;
}

/* Eye-Catching Pulsing Badge */
.site-switch-container::before {
    content: "ONLINE STORE";
    position: absolute;
    top: -12px;
    right: 15px;
    background: #ff4757;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse-badge 1.8s infinite;
}

.switch-label {
    color: #e0e0e0;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.switch-label.active {
    color: #25D366;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}

/* Larger Toggle Housing */
.switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Track Styles */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4a4a4a;
    transition: 0.3s;
    border-radius: 30px;
}

/* Knob Styles */
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Active State (ON) */
input:checked + .slider {
    background-color: #25D366;
}

input:checked + .slider:before {
    transform: translateX(28px);
}

/* Continuous Pulse Animation */
@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
