/* PREMIUM FUTURISTIC DESIGN - LG M&E */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --orange: #FF6B35;
    --orange-glow: rgba(255, 107, 53, 0.15);
    --blue: #00D9FF; /* LIGHTER BLUE - bright cyan */
    --blue-glow: rgba(0, 217, 255, 0.15);
    --monster-green: #54E346; /* MONSTER ENERGY GREEN */
    --green-glow: rgba(84, 227, 70, 0.15);
    --navy: #0B1220;
    --dark-grey: #1a2332;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #ff8c42 50%, #FF6B35 100%);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--light-grey);
    background: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* PREMIUM HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 179, 255, 0.323);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    position: relative;
    z-index: 10;
    margin-right: auto;
    margin-left: -20px;
}

.logo img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--green-glow));
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    margin-top: -55px;
    margin-bottom: -55px;
}

.logo img:hover {
    filter: drop-shadow(0 0 12px var(--green-glow));
    transform: scale(1.05);
}

/* INDIVIDUAL PILL NAV BUTTONS */
.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    background: none;
    padding: 0;
    border: none;
    backdrop-filter: none;
}

.nav-link {
    color: var(--light-grey);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* ORANGE GET ESTIMATE BUTTON */
.nav-link-highlight {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
    font-weight: 700;
}

.nav-link-highlight:hover {
    background: #ff5520;
    border-color: #ff5520;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.nav-link-highlight::before {
    display: none;
}

.header-phone {
    display: flex;
    align-items: center;
}

.contact-us-btn {
    display: inline-block;
    padding: 10px 22px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-us-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* EPIC HERO SECTION */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-grey) 100%);
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 90px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(11, 18, 32, 0.95) 0%, 
        rgba(26, 35, 50, 0.90) 50%,
        rgba(11, 18, 32, 0.95) 100%);
}

/* Floating particles */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, var(--orange), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--blue), transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent);
    background-size: 200% 200%;
    animation: stars 20s linear infinite;
    opacity: 0.4;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* TWO COLUMN HERO */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-grey);
    margin: 0;
}

/* MINI QUOTE FORM */
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form input,
.hero-form select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-form select option {
    background: var(--dark-grey);
    color: var(--white);
}

.hero-form input:focus,
.hero-form select:focus {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.08);
}

.hero-form-btn {
    padding: 14px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.hero-form-btn:hover {
    background: #ff5520;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* TRUST BADGES */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.trust-badge-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.trust-badge-link:hover {
    transform: translateY(-3px);
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.trust-badge-link:hover .trust-badge-card {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.trust-badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-badge-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.trust-badge-id {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge-verify {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
}

.hero-trust-extra {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-trust-extra span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* PREMIUM GLOWING BUTTONS */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--blue); /* LIGHTER BLUE BORDER - same as others */
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.btn-primary:hover {
    background: var(--blue);
    color: var(--navy);
    border-color: var(--blue);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;  /* Fully transparent */
    color: var(--white);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background: var(--blue); /* LIGHTER BLUE HOVER */
    color: var(--navy);
    box-shadow: 0 8px 25px var(--blue-glow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

/* TRUST BAR WITH GLASSMORPHISM */
.trust-bar {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--monster-green); /* MONSTER GREEN HOVER */
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.15));
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--monster-green);
    margin-bottom: 15px;
    display: block;
}

.trust-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* SERVICES WITH 3D CARDS */
.services {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
}

.section-title {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--orange); /* Solid orange - NO GRADIENT */
    position: relative;
    padding-bottom: 20px;
}

/* Orange underline accent - OPTION 1 */
.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: var(--monster-green);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem; /* Bigger - OPTION 5 */
    color: var(--light-grey);
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 0.5px; /* Added spacing */
}

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

/* SERVICE CARDS - EVERYTHING CENTERED */
/* Replace your existing .service-card styles with these */

.service-card {
    background: var(--dark-grey);
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;  /* CENTER EVERYTHING */
    text-align: center;   /* CENTER TEXT */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--monster-green);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.08);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    text-align: center;  /* CENTER ICON */
}

.service-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
    display: block;           /* CENTER IMAGE */
    margin-left: auto;        /* CENTER IMAGE */
    margin-right: auto;       /* CENTER IMAGE */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;  /* CENTER HEADING */
}

.service-card p {
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: center;  /* CENTER PARAGRAPH */
}

.service-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--monster-green);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(84, 227, 70, 0.3);
    margin-bottom: 5px;
    text-align: center;  /* CENTER BUTTON TEXT */
}

.service-link:hover {
    background: #3AC435;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 227, 70, 0.4);
}

.service-link::after {
    content: '';
    margin-left: 5px;
    transition: margin 0.3s;
}

.service-link:hover::after {
    margin-left: 10px;
}

/* PREMIUM CONTACT FORM */
/* ===================== CONTACT SECTION ===================== */
.contact-form {
    padding: 110px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Animated orbs */
.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.contact-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.12), transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat 10s ease-in-out infinite;
}

.contact-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74,144,226,0.1), transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: orbFloat 12s ease-in-out infinite reverse;
}

/* Split layout */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ---- LEFT: Info Panel ---- */
.contact-info-panel {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 44px 38px;
    position: sticky;
    top: 100px;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-info-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-value {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-info-value:hover {
    color: var(--orange);
}

.contact-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-badge {
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.22);
    border-radius: 99px;
    padding: 6px 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ---- RIGHT: Form Panel ---- */
.contact-form-panel {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.contact-form-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
}

/* ---- Form Groups ---- */
.cform-group {
    margin-bottom: 22px;
    position: relative;
}

.cform-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.cform-required {
    color: var(--orange);
    margin-left: 2px;
}

.cform-input-wrap {
    position: relative;
}

.cform-input {
    width: 100%;
    padding: 14px 44px 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.93rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.cform-input::placeholder {
    color: rgba(255,255,255,0.22);
}

/* Focus state - orange glow */
.cform-input:focus {
    border-color: var(--orange);
    background: rgba(255,107,53,0.06);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.12), 0 4px 16px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

/* Valid state - green */
.cform-group.valid .cform-input {
    border-color: #22c55e;
    background: rgba(34,197,94,0.05);
}

/* Error state - red */
.cform-group.error .cform-input {
    border-color: #ef4444;
    background: rgba(239,68,68,0.05);
    animation: cformShake 0.35s ease;
}

@keyframes cformShake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* Status icons */
.cform-status-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.25s ease;
}

.cform-textarea ~ .cform-status-icon {
    top: 18px;
    transform: none;
}

.cform-group.valid .cform-status-icon::after {
    content: '✓';
    color: #22c55e;
}

.cform-group.error .cform-status-icon::after {
    content: '✕';
    color: #ef4444;
}

/* Error message */
.cform-error {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 5px;
    min-height: 16px;
    padding-left: 2px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

.cform-group.error .cform-error {
    opacity: 1;
    transform: translateY(0);
}

/* Select */
.cform-select-wrap {
    position: relative;
}

.cform-select {
    cursor: pointer;
    padding-right: 54px;
}

.cform-select option {
    background: #1a2540;
    color: var(--white);
}

.cform-select-arrow {
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    font-size: 1rem;
    transition: transform 0.25s;
}

.cform-select:focus ~ .cform-select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--orange);
}

/* Textarea */
.cform-textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 14px;
    padding-right: 16px;
    line-height: 1.6;
}

/* Submit button */
.cform-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.cform-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cform-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.4);
}

.cform-submit:hover::before {
    opacity: 1;
}

.cform-submit:active {
    transform: translateY(0);
}

.cform-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cform-submit-icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cform-submit:hover .cform-submit-icon {
    transform: translateX(4px);
}

/* Autofill notice */
.cform-autofill-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
    animation: wizardFadeIn 0.4s ease forwards;
}

.cform-autofill-notice span {
    color: var(--orange);
    font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 600px) {
    .contact-form-panel {
        padding: 32px 22px;
    }

    .contact-info-panel {
        padding: 30px 22px;
    }
}

/* FOOTER */
.footer {
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0 7px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(425px, 1fr));
    gap: 10px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 200px;
    margin-bottom: -75px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.15));
    
    
}

.footer-col h3 {
    color: var(--monster-green); /* MONSTER GREEN HOVER */
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--light-grey);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--monster-green); /* MONSTER GREEN HOVER */
    padding-left: 10px;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cert-badge {
    background: var(--monster-green); /* MONSTER GREEN BUTTON */
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

/* SCROLL ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-60px);
}

.slide-left.animated {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(60px);
}

.slide-right.animated {
    transform: translateX(0);
}

/* WHY CHOOSE US / QUALITY SECTION */
.why-choose {
    padding: 100px 0;
    background: #08495f16; /* WHITE BACKGROUND */
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    opacity: 0.1;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: stretch;  /* Change from center to stretch */
    max-width: 1400px;  /* Add this */
    margin: 0 auto;     
}

.why-choose .container {
    max-width: 1400px;  /* Wider container just for this section */
}

.why-choose-image img {
    width: 100%;
    height: 80%;  /* Makes it shorter - try 70%, 75%, 80% */
    object-fit: cover;
    object-position: bottom;  /* Add this - keeps bottom anchored */
    border-radius: 1px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 167px;  /* Add this - pushes it to bottom */
}

.why-choose-text h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--white); /* FLAME ORANGE */
    line-height: 1.2;
    text-align: center;  /* Add this line */
}

.why-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px;
    background: var(--navy);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    align-items: center;
}

.why-item:hover {
    transform: translateX(10px);
    border-color: var(--monster-green); /* MONSTER GREEN HOVER */
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.08);
}

.why-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.why-item h3 {
    color: var(--monster-green); /* MONSTER GREEN HOVER */
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-align: center; 
}

.why-item p {
    color: var(--light-grey);
    line-height: 1.7;
    text-align: center; 
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* PAGINATED TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.btn-google-reviews {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--orange);
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-google-reviews:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--dark-grey);
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--orange);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255, 107, 53, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-left-color: var(--blue);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.08);
}

.stars {
    color: var(--monster-green); /* MONSTER GREEN HOVER */
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--light-grey);
    line-height: 1.8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--monster-green); /* MONSTER GREEN HOVER */
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 1100px) {

    /* --- HEADER: hamburger menu --- */
    .nav {
        display: none;
    }

    .nav.active {
        display: none;
    }

    .nav-link {
        font-size: 1rem;
        padding: 14px 20px;
        width: auto;
        text-align: left;
        border-radius: 8px;
        margin-bottom: 4px;
    }

    .header-phone {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .logo img {
        height: 160px;
        margin-top: -40px;
        margin-bottom: -40px;
    }

    .header-content {
        padding: 12px 0;
    }

    /* --- HERO: stack vertically --- */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
        background-attachment: scroll;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form-row {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-trust-label {
        width: 100%;
    }

    .trust-badge-link {
        flex: 1;
        min-width: 140px;
    }

    .hero-trust-extra {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* --- OTHER --- */
    .form-wrapper {
        padding: 40px 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ICON IMAGE STYLES - MONSTER GREEN THEME */

/* Header Phone Icon */
.phone-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(72%) sepia(98%) saturate(435%) hue-rotate(51deg) brightness(103%) contrast(92%);
    /* MONSTER GREEN FILTER */
}

/* Trust Bar Icons */
/* Trust Bar Icons */
.trust-icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    /* Filter removed - icons show original colors */
}

/* Make GAS SAFE icon wider (not squished) */
.trust-item:nth-child(2) .trust-icon-img {
    width: 60px;   /* Make it wider */
    height: 55px;  /* Keep aspect ratio */
}

.trust-item:nth-child(3) .trust-icon-img {
    width: 70px;   /* Make it wider */
    height: 60px;  /* Keep aspect ratio */
    padding-bottom: -1px;
}

/* Why Choose Us Bullet Icons */
.why-icon-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(72%) sepia(98%) saturate(435%) hue-rotate(51deg) brightness(103%) contrast(92%);
    /* MONSTER GREEN FILTER */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phone-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .trust-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .why-icon-img {
        width: 28px;
        height: 28px;
    }
}


/* Service Icon Images - Add this to your style.css */

.service-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
}
/* ========================================
   CONTINUOUS CAROUSEL STYLES
   ======================================== */

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

/* TRACK animates - not the individual image sets */
.carousel-track {
    display: flex;
    animation: seamlessScroll 30s linear infinite;
}

.carousel-images {
    display: flex;
    flex-shrink: 0;
}

.carousel-img {
    width: 600px;
    max-width: 600px;
    height: 70%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

@keyframes seamlessScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-600px * 5)); }
}

@media (max-width: 768px) {
    .carousel-img {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
}


/* PAGINATED GALLERY */
/* Gallery Grid - masonry style */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 500px;
    margin-bottom: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.gallery-item--tall {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .gallery-item--tall {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16/9;
    }
    .gallery-item {
        aspect-ratio: 4/3;
    }
}


/* ===================== MOBILE DRAWER ===================== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--dark-grey);
    z-index: 1002;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-left: 2px solid var(--orange);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--light-grey);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
    margin-bottom: 16px;
}

.drawer-close:hover {
    color: var(--orange);
}

.drawer-logo {
    margin-bottom: 32px;
}

.drawer-logo img {
    height: 100px;
    width: auto;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.drawer-link {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    color: var(--orange);
    background: rgba(255,107,53,0.08);
    border-left-color: var(--orange);
}

.drawer-link-cta {
    background: var(--orange);
    color: var(--white) !important;
    text-align: center;
    margin-top: 12px;
    border-radius: 8px;
    font-weight: 700;
    border-left: none !important;
}

.drawer-link-cta:hover {
    background: #e55a24 !important;
    border-left: none !important;
}

.drawer-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-footer a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
    padding: 100px 0;
    background: var(--dark-grey);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--navy);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    border-left-width: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-card p {
    color: var(--light-grey);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-commitment {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 4px solid var(--orange);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.about-commitment h3 {
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 18px;
}

.about-commitment p {
    color: var(--light-grey);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== ESTIMATOR SECTION ===================== */
.estimator-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* ---- Wizard Container ---- */
.wizard-container {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 50px 55px 55px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.wizard-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}

.wizard-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,107,53,0.18), transparent 70%);
    top: -100px;
    right: -80px;
    animation-delay: 0s;
}

.wizard-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(74,144,226,0.15), transparent 70%);
    bottom: -80px;
    left: -60px;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -15px) scale(1.05); }
    66%       { transform: translate(-10px, 20px) scale(0.97); }
}

/* Everything inside wizard above the orbs */
.wizard-container > *:not(.wizard-orb) {
    position: relative;
    z-index: 1;
}

/* ---- Progress Bar ---- */
.wizard-progress {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    margin-bottom: 16px;
    overflow: hidden;
}

.wizard-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), #FFa040);
    border-radius: 99px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255,107,53,0.5);
}

/* ---- Step Labels ---- */
.wizard-steps-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.wizard-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.22);
    transition: color 0.35s;
    cursor: default;
}

.wizard-step-label.active {
    color: var(--orange);
}

.wizard-step-label.done {
    color: rgba(255,255,255,0.45);
}

/* ---- Running Total ---- */
.wizard-running-total {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 12px;
    padding: 10px 18px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s, transform 0.35s;
}

.wizard-running-total.visible {
    opacity: 1;
    transform: translateY(0);
}

.wizard-running-total-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.wizard-running-total-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
    transition: all 0.25s ease;
}

.wizard-running-total-price.bump {
    transform: scale(1.15);
    color: #FFa040;
}

/* ---- Wizard Steps ---- */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: wizardFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wizard-step-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.wizard-step-subtitle {
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

/* ---- Service Cards (Step 1) ---- */
.wizard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 35px;
}

.wizard-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px 16px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.wizard-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,107,53,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.wizard-card:hover {
    border-color: rgba(255,107,53,0.45);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.wizard-card:hover::before {
    opacity: 1;
}

.wizard-card.selected {
    border-color: var(--orange);
    background: rgba(255,107,53,0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--orange), 0 12px 35px rgba(255,107,53,0.25);
    animation: cardPulse 2.5s ease-in-out infinite;
}

.wizard-card.selected::before {
    opacity: 1;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: 0 0 0 1px var(--orange), 0 12px 35px rgba(255,107,53,0.25); }
    50%       { box-shadow: 0 0 0 3px rgba(255,107,53,0.4), 0 12px 40px rgba(255,107,53,0.35); }
}

.wizard-card-icon {
    font-size: 2.1rem;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s;
}

.wizard-card:hover .wizard-card-icon,
.wizard-card.selected .wizard-card-icon {
    transform: scale(1.15);
}

.wizard-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.3;
}

.wizard-card-price {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.38);
}

.wizard-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4) rotate(-90deg);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wizard-card.selected .wizard-card-check {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Info icon */
.wizard-card-info {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    transition: background 0.2s;
    z-index: 5;
}

.wizard-card-info:hover {
    background: rgba(255,255,255,0.2);
}

/* Tooltip */
.wizard-card-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(15,20,35,0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    white-space: nowrap;
    max-width: 220px;
    white-space: normal;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.wizard-card-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15,20,35,0.97);
}

.wizard-card-info:hover ~ .wizard-card-tooltip,
.wizard-card:hover .wizard-card-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- Option Cards (Steps 2 & 3) ---- */
.wizard-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 35px;
}

.wizard-option {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-option:hover {
    border-color: rgba(255,107,53,0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.wizard-option.selected {
    border-color: var(--orange);
    background: rgba(255,107,53,0.1);
    box-shadow: 0 0 0 1px var(--orange), 0 12px 35px rgba(255,107,53,0.25);
    transform: translateY(-3px);
}

.wizard-option-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.wizard-option:hover .wizard-option-icon,
.wizard-option.selected .wizard-option-icon {
    transform: scale(1.15);
}

.wizard-option-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.wizard-option-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
}

/* ---- Navigation ---- */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 30px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.wizard-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

.wizard-btn:hover::after {
    opacity: 1;
}

.wizard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,107,53,0.4);
}

.wizard-btn:active {
    transform: translateY(0);
}

.wizard-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
}

.wizard-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    box-shadow: none;
}

.wizard-btn-pdf {
    background: rgba(74,144,226,0.2);
    border: 1px solid rgba(74,144,226,0.4);
    color: #7ab8f5;
}

.wizard-btn-pdf:hover {
    background: rgba(74,144,226,0.35);
    box-shadow: 0 10px 24px rgba(74,144,226,0.25);
}

/* ---- Result (Step 4) ---- */
.wizard-result {
    background: linear-gradient(135deg, rgba(255,107,53,0.13), rgba(74,144,226,0.08));
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 20px;
    padding: 38px 30px 32px;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.wizard-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.15), transparent 70%);
    pointer-events: none;
}

.wizard-result-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}

.wizard-result-price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.wizard-result-summary {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 6px;
}

.wizard-result-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* Share link */
.wizard-share {
    text-align: center;
    margin-bottom: 16px;
}

.wizard-share-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    border-radius: 10px;
    padding: 9px 20px;
    font-size: 0.83rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.wizard-share-btn:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
}

.wizard-share-btn.copied {
    background: rgba(50,200,100,0.15);
    border-color: rgba(50,200,100,0.4);
    color: #6ee7a0;
}

/* Email capture */
.wizard-email-capture {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.wizard-email-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}

.wizard-email-row {
    display: flex;
    gap: 10px;
}

.wizard-email-input {
    flex: 1;
    padding: 11px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s;
}

.wizard-email-input:focus {
    border-color: var(--orange);
}

.wizard-email-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.wizard-email-submit {
    padding: 11px 22px;
    font-size: 0.88rem;
    white-space: nowrap;
}

.wizard-email-sent {
    font-size: 0.88rem;
    color: #6ee7a0;
    margin-top: 10px;
    text-align: center;
}

.wizard-disclaimer {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    line-height: 1.7;
}

.wizard-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .wizard-container {
        padding: 30px 22px 35px;
    }
    .wizard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .wizard-options {
        grid-template-columns: 1fr;
    }
    .wizard-result-price {
        font-size: 2.2rem;
    }
    .wizard-email-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .wizard-cards {
        grid-template-columns: 1fr;
    }
    .wizard-result-actions {
        flex-direction: column;
    }
    .wizard-btn {
        justify-content: center;
    }
}

@media (min-width: 701px) and (max-width: 1100px) {
    .nav.active {
        left: auto;
        right: 0;
        width: 300px;
        border-left: 2px solid var(--orange);
        border-right: none;
        padding-top: 15px;
        margin-top: 1px;
    }
}

@media (min-width: 1101px) and (max-width: 1350px) {
    .why-choose-image {
        display: flex;
        align-items: center;
    }
    
    .why-choose-image img {
        margin-top: 315px;
    }
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.social-btn span {
    font-weight: 600;
}

.trust-number + span {
    color: var(--monster-green);
    font-size: 3.5rem;
    font-weight: 800;
    margin-left: 0;
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}
/* ========================================
   MOBILE HORIZONTAL SCROLL FIX
   ======================================== */
html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    /* Container width fix ONLY on mobile */
    .container {
        width: 100%;
    }
    
    /* Prevent ALL elements from causing horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Ensure buttons don't overflow */
    .btn,
    .contact-us-btn,
    .hero-form-btn,
    button {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Ensure nav doesn't overflow when mobile */
    .nav {
        max-width: 100%;
    }
    
    /* Ensure header content fits */
    .header-content {
        max-width: 100%;
    }
    
    /* Images should never exceed viewport */
    img {
        max-width: 100% !important;
        height: auto;
    }
}


@media (max-width: 470px) {
    .social-buttons {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 899px) {
    .footer-content {
        text-align: center;
        overflow: hidden;
    }

    .footer-logo {
        height: 120px;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .social-buttons {
        justify-content: center;
    }

    .certifications {
        justify-content: center;
    }

    .footer-col ul {
        padding: 0;
    }
}

@media (max-width: 430px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .footer-col {
        width: 100% !important;
        padding: 0 15px !important;
    }
}

@media (max-height: 640px) {
  .hero {
    height: auto;                 /* stop forcing hero tall */
    min-height: 520px;            /* keeps it usable */
    padding-top: 110px;           /* space for fixed header */
    padding-bottom: 40px;
    background-attachment: scroll; /* fixed background can be janky on small heights */
  }

  .hero-inner {
    gap: 30px;
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.15;
  }

  .hero-form {
    padding: 16px;
  }

  .hero-right {
    gap: 12px;
  }
}
