/*
Theme Name: TradeWorks NQ
Theme URI: https://tradeworksnq.com.au
Author: TradeWorks NQ
Author URI: https://tradeworksnq.com.au
Description: Professional plumbing services theme for TradeWorks NQ - Enhanced immersive design
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tradeworksnq
Tags: one-column, two-columns, right-sidebar, custom-background, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, post-formats, theme-options, translation-ready
*/

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1e3a5f;
    --primary-dark: #0f2744;
    --primary-light: #2c5282;
    --secondary: #3498db;
    --accent: #27ae60;
    --accent-light: #2ecc71;
    --text: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--gray-light);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* PARTICLES */
.particles {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
    position: absolute; width: 6px; height: 6px;
    background: rgba(52,152,219,0.15);
    border-radius: 50%;
    animation: float linear infinite;
}
.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 8px; height: 8px; }
.particle:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: 1s; }
.particle:nth-child(3) { left: 40%; animation-duration: 10s; animation-delay: 2s; width: 10px; height: 10px; }
.particle:nth-child(4) { left: 55%; animation-duration: 18s; animation-delay: 0.5s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 70%; animation-duration: 13s; animation-delay: 3s; width: 7px; height: 7px; }
.particle:nth-child(6) { left: 85%; animation-duration: 16s; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 15%; animation-duration: 14s; animation-delay: 4s; width: 9px; height: 9px; background: rgba(39,174,96,0.12); }
.particle:nth-child(8) { left: 50%; animation-duration: 11s; animation-delay: 2.5s; background: rgba(39,174,96,0.12); }
.particle:nth-child(9) { left: 75%; animation-duration: 17s; animation-delay: 3.5s; width: 8px; height: 8px; }
.particle:nth-child(10) { left: 33%; animation-duration: 19s; animation-delay: 0.8s; background: rgba(39,174,96,0.12); }
@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* HEADER */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.custom-logo { height: 65px; width: auto; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.custom-logo-link:hover .custom-logo { transform: scale(1.08) rotate(-2deg); }
.site-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--primary); margin: 0; }
.site-title span { color: var(--secondary); }

/* NAV */
.main-navigation ul { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.main-navigation a {
    font-weight: 500; font-size: 0.9rem;
    color: var(--text); transition: var(--transition);
    position: relative;
}
.main-navigation a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}
.main-navigation a:hover { color: var(--secondary); }
.main-navigation a:hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white) !important; padding: 0.6rem 1.5rem;
    border-radius: 25px; font-weight: 600 !important;
    transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.nav-cta::after { display: none !important; }
.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 5px; z-index: 1001;
    background: none; border: none;
}
.mobile-menu-toggle span {
    width: 28px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 5% 2rem;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: -20px; left: 0;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
    z-index: 0;
    will-change: transform;
}
.hero-bg {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: url('images/hero-bg.png') center center / cover no-repeat;
    filter: brightness(0.4) saturate(1.2);
    z-index: 0;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,39,68,0.85) 0%, rgba(30,58,95,0.7) 50%, rgba(52,152,219,0.3) 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 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");
    z-index: 1;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    color: var(--white);
}
.hero h1 span { color: var(--secondary); }
.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}
.hero-tagline {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-family: 'Georgia', serif;
}
.hero-buttons {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
}

/* SERVICE ICONS STRIP */
.service-icons-strip {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 5%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    flex-wrap: wrap;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}
.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    cursor: pointer;
    transition: var(--transition);
}
.service-icon-item:hover { transform: translateY(-5px); }
.service-icon-box {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}
.service-icon-item:hover .service-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(52,152,219,0.4);
}
.service-icon-box svg { width: 32px; height: 32px; }
.service-icon-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(52,152,219,0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(52,152,219,0.5);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* SECTIONS */
.section { padding: 6rem 5%; position: relative; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-light); }
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-title h2 span { color: var(--secondary); }
.section-title p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
.value-icon svg { width: 32px; height: 32px; fill: var(--white); }
.value-card h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.service-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.service-card-image .card-icon-overlay {
    position: absolute;
    bottom: 15px; left: 20px;
    z-index: 1;
    display: flex; align-items: center; gap: 10px;
}
.service-card-image .card-icon-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.service-card-image .card-icon-overlay svg {
    width: 22px; height: 22px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.service-card:hover .service-card-image { transform: scale(1.05); }
.service-card-image { transition: transform 0.6s; }
.service-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.service-card-body > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}
.service-features {
    background: var(--gray-light);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
}
.features-label {
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.35rem;
}
.features-list { color: var(--text-light); }

/* COUNTERS */
.counters-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}
.counters-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.counter-item { text-align: center; color: var(--white); }
.counter-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.counter-label { font-size: 1rem; opacity: 0.8; font-weight: 500; }

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--gray-light);
    transition: var(--transition);
    position: relative;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1;
}
.why-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; }
.why-card p { color: var(--text-light); font-size: 0.9rem; }

/* CTA */
.cta-section {
    position: relative;
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}
.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.cta-section p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

/* TESTIMONIALS */
.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.testimonial-card {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: none;
    animation: fadeIn 0.5s ease-out;
}
.testimonial-card.active { display: block; }
.testimonial-stars { color: #f1c40f; font-size: 1.5rem; margin-bottom: 1rem; }
.testimonial-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.testimonial-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
}
.testimonial-dots {
    display: flex; justify-content: center; gap: 10px; margin-top: 2rem;
}
.testimonial-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dot.active { background: var(--secondary); width: 30px; border-radius: 6px; }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.contact-item {
    display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem;
}
.contact-item-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: var(--white); }
.contact-item-text h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.2rem; }
.contact-item-text p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-light);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
    background: var(--white);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.submit-btn {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* PROMO VIDEO SECTION */
.promo-section {
    background: var(--white);
    padding: 4rem 5%;
}
.promo-video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: #000;
    position: relative;
}
.promo-video {
    width: 100%;
    height: auto;
    display: block;
}

/* VIDEO SECTION */
.video-section {
    position: relative;
    background: var(--primary-dark);
    padding: 5rem 5%;
    text-align: center;
    overflow: hidden;
}
.video-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,39,68,0.95), rgba(30,58,95,0.85));
    z-index: 1;
}
.video-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.video-play-btn {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    transition: var(--transition);
}
.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
    border-color: var(--secondary);
}
.video-play-btn svg {
    width: 32px; height: 32px;
    fill: var(--white);
    margin-left: 4px;
}
.video-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.video-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* FOOTER */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-logo { height: 80px; width: auto; margin-bottom: 1rem; }
.footer-brand h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.footer-brand h3 span { color: var(--secondary); }
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}
.site-footer h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.75rem; }
.site-footer ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.site-footer ul li a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .site-header { padding: 0 4%; }
    .values-grid { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: repeat(2,1fr); }
    .counters-grid { grid-template-columns: repeat(2,1fr); gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
    .section-title h2 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .site-header { padding: 0 4%; height: 60px; }
    .custom-logo { height: 50px; }
    .footer-logo { height: 60px; }
    .main-navigation { display: none; }
    .main-navigation.open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }
    .main-navigation.open ul { flex-direction: column; }
    .main-navigation.open a { font-size: 1.2rem; }
    .main-navigation.open .nav-cta { margin-top: 1rem; padding: 0.8rem 2rem; }
    .mobile-menu-toggle { display: flex; }
    .hero-section { padding: 6rem 5% 2rem; min-height: 90vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 1px; }
    .hero-tagline { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
    .hero-buttons .btn { padding: 0.9rem 1.5rem; font-size: 0.9rem; }
    .hero-scroll { display: none; }
    .service-icons-strip { gap: 1rem; padding: 1rem 3%; flex-wrap: wrap; justify-content: space-around; }
    .service-icon-item { min-width: 60px; }
    .service-icon-box { width: 45px; height: 45px; border-radius: 12px; }
    .service-icon-box svg { width: 22px; height: 22px; }
    .service-icon-item span { font-size: 0.65rem; }
    .section { padding: 4rem 5%; }
    .section-title { margin-bottom: 2.5rem; }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 0.95rem; }
    .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .value-card { padding: 2rem 1.5rem; }
    .value-card h3 { font-size: 1.1rem; }
    .value-card p { font-size: 0.9rem; }
    .counters-section { padding: 3rem 5%; }
    .counters-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .counter-number { font-size: 2.2rem; }
    .counter-label { font-size: 0.85rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-card-image { height: 180px; }
    .service-card-body { padding: 1.5rem; }
    .service-card-body h3 { font-size: 1.1rem; }
    .service-card-body > p { font-size: 0.9rem; }
    .service-features { font-size: 0.85rem; padding: 0.8rem 1rem; }
    .promo-section { padding: 2.5rem 4%; }
    .promo-video-wrapper { border-radius: 12px; }
    .why-grid { grid-template-columns: 1fr; gap: 1rem; }
    .why-card { padding: 2rem 1rem; }
    .why-number { font-size: 2rem; }
    .why-card h3 { font-size: 1rem; }
    .why-card p { font-size: 0.85rem; }
    .cta-section { padding: 4rem 5%; }
    .cta-section h2 { font-size: 1.6rem; }
    .cta-section p { font-size: 1rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .testimonial-card h3 { font-size: 1.1rem; }
    .testimonial-card p { font-size: 0.95rem; }
    .testimonial-stars { font-size: 1.2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info h3 { font-size: 1.3rem; }
    .contact-info p { font-size: 0.9rem; }
    .contact-item-icon { width: 40px; height: 40px; }
    .contact-item-icon svg { width: 18px; height: 18px; }
    .contact-form input, .contact-form textarea { padding: 0.85rem 1rem; font-size: 0.9rem; }
    .contact-form textarea { min-height: 100px; }
    .submit-btn { padding: 0.85rem 2rem; font-size: 0.9rem; }
    .site-footer { padding: 3rem 5% 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand p { font-size: 0.85rem; }
    .footer h4 { font-size: 0.9rem; margin-bottom: 1rem; }
    .footer ul li a { font-size: 0.85rem; }
    .footer-bottom { font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .site-header { padding: 0 3%; }
    .custom-logo { height: 42px; }
    .hero-section { padding: 5rem 4% 2rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.75rem; }
    .hero-tagline { font-size: 0.9rem; }
    .hero-badge { font-size: 0.65rem; }
    .service-icons-strip { gap: 0.5rem; }
    .service-icon-item { min-width: 50px; }
    .service-icon-box { width: 40px; height: 40px; }
    .service-icon-box svg { width: 20px; height: 20px; }
    .service-icon-item span { font-size: 0.55rem; }
    .section { padding: 3rem 4%; }
    .section-title h2 { font-size: 1.5rem; }
    .counters-grid { gap: 1rem; }
    .counter-number { font-size: 1.8rem; }
    .service-card-image { height: 160px; }
    .promo-section { padding: 2rem 3%; }
    .promo-video-wrapper { border-radius: 8px; }
    .cta-section h2 { font-size: 1.4rem; }
    .testimonial-card { padding: 1.5rem 1rem; }
}
/* ===== ENHANCED ANIMATIONS ===== */

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}
.hero h1 {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #5dade2 50%, #ffffff 60%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.custom-logo {
    animation: logoEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes logoEntrance {
    0% { opacity: 0; transform: scale(0.5) rotate(-20deg); }
    60% { transform: scale(1.1) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.1), rgba(39,174,96,0.1));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--radius-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(52,152,219,0.25);
}
.service-card:hover .service-card-image {
    transform: scale(1.1);
}
.service-card:hover .service-features {
    background: var(--secondary);
    color: var(--white);
}
.service-card:hover .service-features .features-label,
.service-card:hover .service-features .features-list {
    color: var(--white);
}
.value-icon, .why-number, .contact-item-icon, .service-icon-box {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.value-card:hover .value-icon { transform: scale(1.15) rotate(360deg); }
.why-card { position: relative; overflow: hidden; }
.why-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover { transform: translateY(-8px); }
.why-card:hover .why-number { transform: scale(1.2); color: var(--accent); }
.service-icon-item:hover { transform: translateY(-8px) scale(1.1); }
.service-icon-item:hover .service-icon-box { transform: rotate(15deg) scale(1.1); }
.contact-item { transition: all 0.3s; }
.contact-item:hover { transform: translateX(10px); }
.contact-item:hover .contact-item-icon { transform: scale(1.1) rotate(5deg); }
.testimonial-stars { animation: twinkle 2s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.hero-badge { animation: badgePulse 3s ease-in-out infinite; }
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
.section-title h2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* IFRAME MODE - hide WP chrome when loaded in iframe */
body.iframe-mode .site-header,
body.iframe-mode .scroll-progress,
body.iframe-mode .site-footer,
body.iframe-mode .site-title,
body.iframe-mode .mobile-menu-toggle,
body.iframe-mode #wpadminbar,
body.iframe-mode .admin-bar { display: none !important; }
body.iframe-mode {
    padding: 0 !important;
    background: transparent !important;
    min-height: auto !important;
}
body.iframe-mode main[role="main"] { padding: 0 !important; }
body.iframe-mode .entry-title,
body.iframe-mode .page-title,
body.iframe-mode .page-header,
body.iframe-mode .post-title,
body.iframe-mode h1.entry-title { display: none !important; }

/* CF7 FORM STYLING */
.wpcf7 {
    max-width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.wpcf7 .screen-reader-response { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }
.wpcf7 form .wpcf7-response-output {
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    margin: 1rem 0 0;
    font-size: 0.9rem;
    font-weight: 500;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #d4edda;
    color: #155724;
}
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    background: #f8d7da;
    color: #721c24;
}
.wpcf7 form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}
.wpcf7 form .wpcf7-control-label {
    display: block;
    font-weight: 600;
    color: #1e3a5f;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.wpcf7 form p {
    margin-bottom: 1.1rem;
}
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="url"],
.wpcf7 form input[type="date"],
.wpcf7 form select,
.wpcf7 form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2c3e50;
    background: #f8f9fa;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none;
    -webkit-appearance: none;
}
.wpcf7 form input[type="text"]:focus,
.wpcf7 form input[type="email"]:focus,
.wpcf7 form input[type="tel"]:focus,
.wpcf7 form input[type="url"]:focus,
.wpcf7 form input[type="date"]:focus,
.wpcf7 form select:focus,
.wpcf7 form textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
    background: #ffffff;
}
.wpcf7 form textarea {
    min-height: 130px;
    resize: vertical;
}
.wpcf7 form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #3498db, #2c5282);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.wpcf7 form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52,152,219,0.35);
}
.wpcf7 form input[type="submit"]:active {
    transform: translateY(0);
}
.wpcf7 form input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.wpcf7 form .wpcf7-spinner {
    display: block;
    margin: 0.75rem auto 0;
}
.wpcf7 .wpcf7-acceptance label {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
}
.wpcf7-quiz input {
    letter-spacing: 3px;
}
