/* Lawnology Lawn Service - Modern Engaging CSS */
/* Updated with animations, modern effects, and conversion optimization */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #86efac;
    --primary-glow: rgba(34, 197, 94, 0.4);
    --accent: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --gold: #fbbf24;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary); }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    border-bottom-color: var(--gray-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    z-index: 1001;
}

nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding-top: 5rem;
    z-index: 999;
}

nav.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

nav ul {
    list-style: none;
    padding: 2rem;
    text-align: center;
}

nav ul li { margin: 1rem 0; }

nav ul li a {
    display: inline-block;
    padding: 1rem 2rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 1.25rem;
    border-radius: var(--radius);
    transition: var(--transition);
    background: #f8fafc;
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--primary);
    color: var(--white);
}

.header-cta {
    display: none;
}

/* ===========================================
   HERO SECTION - Bold & Masculine
   =========================================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(22, 163, 74, 0.7) 100%),
                url('/images/hero-bg-mobile.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--light), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.6s ease;
}

.hero-eyebrow .pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: slideUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.6s ease 0.2s both;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: slideUp 0.6s ease 0.3s both;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.1rem;
}

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   BUTTONS - Conversion Optimized
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px -10px var(--primary-glow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 0 15px transparent; }
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: slideUp 0.6s ease 0.4s both;
}

/* ===========================================
   FLOATING MOBILE CTA - Always Visible
   =========================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    z-index: 998;
    display: flex;
    gap: 0.75rem;
    border-top: 3px solid var(--primary);
}

.floating-cta .btn {
    flex: 1;
    padding: 1rem;
    font-size: 0.95rem;
}

.floating-cta .btn-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.floating-cta .btn-quote {
    background: var(--dark);
    color: var(--white);
}

/* ===========================================
   SECTIONS
   =========================================== */
section {
    padding: 5rem 1.5rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header h2 .highlight {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===========================================
   TRUST BADGES - Social Proof
   =========================================== */
.trust-section {
    background: var(--light);
    padding: 3rem 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

/* ===========================================
   SERVICE AREAS
   =========================================== */
.service-areas {
    background: var(--light);
}

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

.area-card {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.area-card h4 {
    color: var(--dark);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
}

a.area-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.area-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}

a.area-card:hover .area-link {
    opacity: 1;
    transform: translateY(0);
}

a.area-card:hover h4 {
    color: var(--primary-dark);
}

/* ===========================================
   STATS SECTION
   =========================================== */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 4rem 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================================
   SERVICES
   =========================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-category h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-category h3 .icon {
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    transition: var(--transition);
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2316a34a' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-list li:hover {
    color: var(--dark);
    padding-left: 0.5rem;
}

/* ===========================================
   PRICING BANNER
   =========================================== */
.pricing-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.price-tag {
    font-size: 4rem;
    font-weight: 900;
    margin: 1rem 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.discount-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.discount-badge strong {
    color: var(--gold);
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info cite {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-style: normal;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===========================================
   GALLERY
   =========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: 'View';
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   WHY CHOOSE US / FEATURES
   =========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===========================================
   CONTACT
   =========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    background: var(--dark);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-of-type { margin-bottom: 0; }

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    color: var(--white);
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-details a:hover { color: var(--primary); }

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Facebook */
.social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

/* Nextdoor */
.social-nextdoor:hover {
    background: #8ed500;
    border-color: #8ed500;
    color: white;
}

/* TikTok */
.social-tiktok:hover {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    border-color: #fe2c55;
    color: white;
}

/* ===========================================
   TIKTOK SECTION
   =========================================== */
.tiktok-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.tiktok-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(254, 44, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 244, 238, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tiktok-section .section-header h2 {
    color: var(--white);
}

.tiktok-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.tiktok-feed {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.tiktok-feed blockquote {
    margin: 0 auto;
}

.tiktok-cta {
    text-align: center;
    margin-top: 2rem;
}

.tiktok-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.tiktok-cta .btn-outline:hover {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===========================================
   ABOUT
   =========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--primary-dark);
    margin-top: 2rem;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 1.5rem 8rem; /* Extra padding for floating CTA */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   LIGHTBOX
   =========================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: var(--transition-slow);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-slow);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   RESPONSIVE - TABLET
   =========================================== */
@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }

    footer {
        padding-bottom: 4rem;
    }

    .header-inner {
        padding: 1rem 2rem;
    }

    .nav-toggle { display: none; }

    nav {
        display: block;
        position: static;
        background: transparent;
        padding-top: 0;
    }

    nav ul {
        display: flex;
        padding: 0;
        gap: 0.25rem;
    }

    nav ul li { margin: 0; }

    nav ul li a {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .header-cta {
        display: block;
    }

    .header-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 10rem 2rem 6rem;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(22, 163, 74, 0.6) 100%),
                    url('/images/hero-bg.jpg') center/cover no-repeat fixed;
        min-height: 85vh;
    }

    .btn-group {
        flex-direction: row;
    }

    section {
        padding: 6rem 2rem;
    }

    .trust-grid {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================================
   RESPONSIVE - DESKTOP
   =========================================== */
@media (min-width: 1024px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .logo img {
        height: 55px;
    }

    .hero {
        padding: 14rem 2rem 10rem;
    }

    .hero p {
        font-size: 1.35rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===========================================
   ACCESSIBILITY WIDGET (Bottom Left)
   =========================================== */
.accessibility-widget-container {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 9998;
}

.accessibility-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.accessibility-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.accessibility-toggle-btn:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

.accessibility-toggle-btn[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.accessibility-panel {
    position: fixed;
    left: 1rem;
    bottom: 5rem;
    width: 320px;
    max-height: 80vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.accessibility-panel[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-panel-header {
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessibility-panel-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.accessibility-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: var(--transition);
    line-height: 1;
}

.accessibility-close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.accessibility-panel-content {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.accessibility-option-group {
    margin-bottom: 1.5rem;
}

.accessibility-option-label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.accessibility-button-group {
    display: flex;
    gap: 0.5rem;
}

.accessibility-btn {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
}

.accessibility-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.accessibility-toggle-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.accessibility-toggle-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.accessibility-toggle-option:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
}

.accessibility-toggle-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.accessibility-toggle-label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    user-select: none;
}

.accessibility-reset-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    font-size: 1rem;
}

.accessibility-reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.accessibility-panel-footer {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.accessibility-info-text {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.4;
}

/* Accessibility Mode Classes */
body.accessibility-high-contrast { filter: contrast(1.5); }
body.accessibility-grayscale { filter: grayscale(100%); }
body.accessibility-high-contrast.accessibility-grayscale { filter: contrast(1.5) grayscale(100%); }

body.accessibility-highlight-links a {
    background-color: rgba(34, 197, 94, 0.2);
    padding: 2px 4px;
    border-radius: 3px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

body.accessibility-readable-font,
body.accessibility-readable-font * {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
}

body.accessibility-hide-animations,
body.accessibility-hide-animations * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* ===========================================
   BACK TO TOP BUTTON (Bottom Right)
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    transition: var(--transition);
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.6);
}

.back-to-top:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* ===========================================
   COOKIE CONSENT BANNER
   =========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary);
    padding: 1.25rem;
    z-index: 10000;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #fff;
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.cookie-btn.reject {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cookie-btn.reject:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* When cookie banner is visible, move accessibility & back-to-top up */
body.cookie-banner-visible .accessibility-widget-container,
body.cookie-banner-visible .back-to-top {
    bottom: 5.5rem;
}

/* Mobile adjustments for fixed buttons */
@media (max-width: 768px) {
    .accessibility-widget-container {
        left: 0.5rem;
        bottom: 0.5rem;
    }

    .accessibility-toggle-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .accessibility-panel {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 4rem;
        width: auto;
        max-width: calc(100vw - 1rem);
    }

    .back-to-top {
        right: 0.5rem;
        bottom: 0.5rem;
        width: 48px;
        height: 48px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    body.cookie-banner-visible .accessibility-widget-container,
    body.cookie-banner-visible .back-to-top {
        bottom: 6rem;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
