/*
Theme Name: LYC Supplies and Construction
Theme URI: https://lycsuppliesandconstruction.com
Author: LYC Team
Author URI: https://lycsuppliesandconstruction.com
Description: Professional theme for LYC Supplies and Construction - Cleaning and Construction Services in Gainesville
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lyc-theme
Tags: cleaning, construction, business, one-page, custom-logo
*/

/* ===================================
   CSS VARIABLES & ROOT
   =================================== */
:root {
    /* Brand Colors - USA Blue & Magenta */
    --primary-green: #2563eb;
    --primary-green-dark: #1d4ed8;
    --primary-magenta: #e91e8c;
    --primary-magenta-dark: #c4177a;
    
    /* Navy accents for trust */
    --navy-900: #0a1628;
    --navy-800: #0f2744;
    --navy-700: #153660;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-magenta) 0%, var(--primary-magenta-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ===================================
   UTILITIES
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary-green);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    background: var(--gray-50);
}

.btn-magenta {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}

.btn-magenta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 30, 140, 0.4);
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ===================================
   NAVIGATION
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    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.05);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.logo-text .green {
    color: var(--primary-green);
}

.logo-text .magenta {
    color: var(--primary-magenta);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation a {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.938rem;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-green);
}

.main-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-800);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-section h1 {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    color: var(--navy-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-section h1 .highlight-green {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section h1 .highlight-magenta {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(10, 22, 40, 0.15);
}

.hero-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 8px;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
    animation: float 6s ease-in-out infinite;
}

.float-card-1 {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.float-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.float-card h4 {
    font-size: 0.938rem;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.float-card p {
    font-size: 0.813rem;
    color: var(--gray-500);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 140px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

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

.service-card {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.12);
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-features li {
    color: white;
}

.service-card:hover .service-features li::before {
    color: var(--primary-green);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s ease;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-green);
    transition: color 0.5s ease;
}

.service-icon img {
    width: 36px;
    height: 36px;
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 16px;
    transition: color 0.5s ease;
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    transition: color 0.5s ease;
    line-height: 1.7;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.938rem;
    color: var(--gray-600);
    transition: color 0.5s ease;
}

.service-features li::before {
    content: '✓';
    font-weight: 700;
    color: var(--primary-green);
    transition: color 0.5s ease;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(10, 22, 40, 0.12);
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}

.about-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
    text-align: center;
}

.about-badge-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.813rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.about-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    color: var(--navy-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.about-feature h4 {
    font-size: 1rem;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* In God We Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.938rem;
    margin-top: 32px;
}

/* ===================================
   GALLERY / PORTFOLIO SECTION
   =================================== */
.gallery-section {
    padding: 140px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-section .section-header {
    position: relative;
    z-index: 1;
}

.gallery-section .section-label {
    color: var(--primary-green);
}

.gallery-section .section-label::before {
    background: var(--primary-green);
}

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

.gallery-section .section-header p {
    color: var(--gray-400);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 140px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 22, 40, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.testimonial-quote {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-green);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card > p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author h5 {
    font-size: 1rem;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.cta-phone svg {
    width: 32px;
    height: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-green);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    color: var(--navy-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.contact-method h4 {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.contact-method p,
.contact-method a {
    font-size: 1.125rem;
    color: var(--navy-900);
    font-weight: 500;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.06);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.social-links a:hover svg {
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 40px 100px rgba(10, 22, 40, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-800);
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
    margin-top: 16px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--navy-900);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .site-logo {
    margin-bottom: 24px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

.footer-social a:hover svg {
    color: white;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.938rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-container img {
        height: 400px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

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

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

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

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

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

    .contact-form-wrapper {
        padding: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .float-card {
        display: none;
    }

    .about-image-secondary,
    .about-badge {
        display: none;
    }

    .cta-phone {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   WORDPRESS SPECIFIC STYLES
   =================================== */
.wp-block-image img {
    border-radius: 16px;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Admin Bar Fix */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}
