/* ===== MODERN PREMIUM LANDSCAPING WEBSITE ===== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FAF7F2;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0E7A4B;
    --primary-dark: #0A5D37;
    --accent-color: #8DD3A8;
    --accent-light: #B8E6CC;
    --background-color: #FAF7F2;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --border-color: #E5E7EB;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(14, 122, 75, 0.95) 0%, rgba(141, 211, 168, 0.8) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1400px;
    --container-padding: 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.handwritten {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
    display: inline-block;
    transform: rotate(-2deg);
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-accent-gold {
    color: #fff78f;
    position: relative;
    display: inline-block;
}

.title-accent-gold::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out 0.5s forwards;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out 0.5s forwards;
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

.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;
}

/* ===== PREMIUM BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.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: var(--transition);
}

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

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-lg), 0 4px 20px rgba(14, 122, 75, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    background-position: 100% 0;
    box-shadow: var(--shadow-xl), 0 8px 35px rgba(14, 122, 75, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
}

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

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-primary:focus {
    outline: none;
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(141, 211, 168, 0.3);
}

.btn-glow {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(14, 122, 75, 0.3), 0 0 60px rgba(141, 211, 168, 0.2);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

.btn-glow:hover {
    box-shadow: var(--shadow-xl), 0 0 50px rgba(14, 122, 75, 0.5), 0 0 100px rgba(141, 211, 168, 0.3);
    animation: none;
}

@keyframes pulse-glow {
    0% {
        box-shadow: var(--shadow-lg), 0 0 30px rgba(14, 122, 75, 0.3), 0 0 60px rgba(141, 211, 168, 0.2);
    }
    100% {
        box-shadow: var(--shadow-lg), 0 0 40px rgba(14, 122, 75, 0.4), 0 0 80px rgba(141, 211, 168, 0.25);
    }
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    min-width: 250px;
    letter-spacing: 0.5px;
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.03);
}

/* Loading state for buttons */
.btn-loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: button-loading-spin 1s ease infinite;
}

@keyframes button-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline {
    position: relative;
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background: rgba(255, 236, 121, 0.2);
    color: #ffec79;
    border: 2px solid #ffec79;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffec79;
    transition: var(--transition);
    z-index: -1;
}

.btn-hero-secondary:hover::before {
    left: 0;
}

.btn-hero-secondary:hover {
    color: var(--primary-color);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 236, 121, 0.4);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.2);
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    margin-right: 0.75rem;
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.2) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 122, 75, 0.85) 0%,
        rgba(141, 211, 168, 0.4) 30%,
        rgba(14, 122, 75, 0.9) 70%,
        rgba(10, 93, 55, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 236, 121, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 236, 121, 0.2), transparent);
    transition: var(--transition);
}

.hero-badge:hover::before {
    left: 100%;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.hero-title .title-accent {
    color: #ffec79;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.hero-title .title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffec79, #ffd700);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out 1s forwards;
}

.hero-description {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 520px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffec79;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffec79, #ffd700);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 0.8s ease-out 2s forwards;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-top: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-visual {
    position: relative;
    z-index: 3;
}

.floating-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-premium), 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: none;
}

@keyframes float {
    0%, 100% {
        transform: rotate(3deg) translateY(20px);
    }
    50% {
        transform: rotate(3deg) translateY(0px);
    }
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.floating-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.floating-card:hover .play-icon {
    transform: scale(1);
}

.card-content {
    padding: 2rem;
    background: var(--white);
    position: relative;
}

.card-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-stat {
    background: rgba(14, 122, 75, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(14, 122, 75, 0.2);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-text {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    list-style: none;
    flex-wrap: wrap;
}

.trust-logo {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.3);
}

.trust-logo:hover {
    opacity: 1;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 8rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--background-color) 0%, #F0F9F4 50%, var(--background-color) 100%);
    z-index: -1;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-right {
    position: sticky;
    top: 6rem;
}

.premium-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gradient-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.premium-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.premium-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.125rem;
}

.featured-service {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.featured-service h3,
.featured-service p {
    color: var(--white);
}

.featured-service .gradient-icon {
    -webkit-text-fill-color: var(--accent-color);
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, 30px);
    transition: var(--transition);
}

.premium-card:hover .card-accent {
    transform: translate(20px, 20px) scale(1.2);
    opacity: 0.2;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
    transform: rotate(15deg);
}

.why-us .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    position: relative;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    list-style: none;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-slow);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card::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: var(--transition);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-card:nth-child(1) {
    background: linear-gradient(135deg, var(--white) 0%, #F0FDF4 100%);
}

.benefit-card:nth-child(2) {
    background: linear-gradient(135deg, var(--white) 0%, #FEF3C7 100%);
}

.benefit-card:nth-child(3) {
    background: linear-gradient(135deg, var(--white) 0%, #EFF6FF 100%);
}

.benefit-card:nth-child(4) {
    background: linear-gradient(135deg, var(--white) 0%, #F3E8FF 100%);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
    animation: bounce 2s infinite;
    animation-delay: var(--animation-delay, 0s);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(14, 122, 75, 0.3);
}

.benefit-icon i {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
}

.benefit-card:nth-child(1) .benefit-icon {
    --animation-delay: 0s;
}

.benefit-card:nth-child(2) .benefit-icon {
    --animation-delay: 0.2s;
}

.benefit-card:nth-child(3) .benefit-icon {
    --animation-delay: 0.4s;
}

.benefit-card:nth-child(4) .benefit-icon {
    --animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.benefit-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.benefit-card:nth-child(1) h3 {
    color: var(--primary-color);
}

.benefit-card:nth-child(2) h3 {
    color: var(--gold);
}

.benefit-card:nth-child(3) h3 {
    color: #3B82F6;
}

.benefit-card:nth-child(4) h3 {
    color: #8B5CF6;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 400;
}

/* Decorative elements */
.benefit-card .card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    transition: var(--transition);
}

.benefit-card:hover .card-decoration {
    transform: scale(1.5);
    opacity: 0.2;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 8rem 0;
    background: var(--background-color);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.02;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.projects .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    position: relative;
}

.projects .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: var(--shadow-sm);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    list-style: none;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(0);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 2;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-premium);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 122, 75, 0.8), rgba(141, 211, 168, 0.6));
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-content {
    padding: 2rem;
    position: relative;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    transition: var(--transition);
}

.project-card:hover .project-content h3 {
    color: var(--primary-color);
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-category {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.project-card:hover .project-category::before {
    left: 100%;
}

/* Masonry-style layout for larger screens */
@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .project-card:nth-child(3n+1) {
        transform: translateY(20px);
    }
    
    .project-card:nth-child(3n+2) {
        transform: translateY(-10px);
    }
    
    .project-card:nth-child(3n+3) {
        transform: translateY(30px);
    }
    
    .project-card:hover:nth-child(3n+1) {
        transform: translateY(10px) rotate(1deg);
    }
    
    .project-card:hover:nth-child(3n+2) {
        transform: translateY(-20px) rotate(-1deg);
    }
    
    .project-card:hover:nth-child(3n+3) {
        transform: translateY(20px) rotate(1deg);
    }
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 40%;
    height: 140%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
    transform: rotate(25deg);
}

.process .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    position: relative;
}


.process .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 3rem;
    top: 4rem;
    bottom: 4rem;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color), var(--gold));
    border-radius: 2px;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-slow);
    transform: translateY(0);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.process-step:nth-child(1) {
    background: linear-gradient(135deg, var(--white) 0%, #F0FDF4 100%);
}

.process-step:nth-child(2) {
    background: linear-gradient(135deg, var(--white) 0%, #FEF3C7 100%);
}

.process-step:nth-child(3) {
    background: linear-gradient(135deg, var(--white) 0%, #EFF6FF 100%);
}

.process-step:nth-child(4) {
    background: linear-gradient(135deg, var(--white) 0%, #F3E8FF 100%);
}

.step-number {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, var(--primary-color), #10B981);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--gold), #F59E0B);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.process-step:nth-child(1) .step-content h3 {
    color: var(--primary-color);
}

.process-step:nth-child(2) .step-content h3 {
    color: var(--gold);
}

.process-step:nth-child(3) .step-content h3 {
    color: #3B82F6;
}

.process-step:nth-child(4) .step-content h3 {
    color: #8B5CF6;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.25rem;
    font-weight: 400;
}

/* Decorative elements */
.process-step .step-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transition: var(--transition);
}

.process-step:hover .step-decoration {
    transform: scale(1.3);
    opacity: 0.1;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(141, 211, 168, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 70%;
    height: 180%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(20deg);
}

.testimonials .section-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    position: relative;
    z-index: 2;
}


.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.testimonial-container {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-premium);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 2rem;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.testimonial footer::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.testimonial cite {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.client-title {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.dot.active::before,
.dot:hover::before {
    width: 100%;
    height: 100%;
}

.dot.active {
    background-color: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Star rating decoration */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* ===== BLOG SECTION ===== */
.blog {
    padding: 8rem 0;
    background: var(--background-color);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 35%;
    height: 140%;
    background: var(--gradient-primary);
    opacity: 0.02;
    border-radius: 50%;
    transform: rotate(-20deg);
}

.blog .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    position: relative;
}


.blog .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    list-style: none;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link::after {
    content: '→';
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-link:hover::after {
    transform: translateX(4px);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, #F0F9F4 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 50%;
    height: 160%;
    background: radial-gradient(circle, rgba(14, 122, 75, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group {
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 122, 75, 0.1);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.error-message {
    display: block;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 1.25rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .btn {
    justify-self: center;
    min-width: 200px;
    margin-top: 1rem;
}

/* Form animations */
.form-group {
    animation: slideInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

/* ===== FOOTER SECTION ===== */
.footer {
    background: linear-gradient(135deg, var(--text-color) 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 122, 75, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -25%;
    width: 50%;
    height: 220%;
    background: radial-gradient(circle, rgba(141, 211, 168, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(20deg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.footer-logo:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.footer-logo .logo-icon {
    margin-right: 0.75rem;
    font-size: 2.25rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-address p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-address a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.footer-address a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.footer-address a:hover::after {
    width: 100%;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

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

.footer-link:hover::after {
    width: 100%;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 1rem;
    font-weight: 400;
}

.template-credit {
    font-size: 0.875rem !important;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.template-credit a {
    color: #ffec79;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.template-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Social links (if added later) */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-links {
    flex-shrink: 0;
    min-width: 200px;
}

.footer-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

/* Intersection Observer Classes */
.fade-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s) forwards;
}

.fade-in-title {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--title-delay, 0s) forwards;
}

.fade-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s) forwards;
}

.fade-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s) forwards;
}

.fade-in-scale {
    animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s) forwards;
}

.fade-in-bounce {
    animation: bounceIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--animation-delay, 0s) forwards;
}

/* Prevent animation flickering */
.animated {
    animation-fill-mode: forwards;
}

.title-animated {
    animation-fill-mode: forwards;
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.95) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Staggered animation delays for groups */
.animate-group .premium-card:nth-child(1) { --animation-delay: 0.1s; }
.animate-group .premium-card:nth-child(2) { --animation-delay: 0.2s; }
.animate-group .premium-card:nth-child(3) { --animation-delay: 0.3s; }
.animate-group .premium-card:nth-child(4) { --animation-delay: 0.4s; }

.animate-group .benefit-card:nth-child(1) { --animation-delay: 0.1s; }
.animate-group .benefit-card:nth-child(2) { --animation-delay: 0.2s; }
.animate-group .benefit-card:nth-child(3) { --animation-delay: 0.3s; }
.animate-group .benefit-card:nth-child(4) { --animation-delay: 0.4s; }

.animate-group .project-card:nth-child(1) { --animation-delay: 0.1s; }
.animate-group .project-card:nth-child(2) { --animation-delay: 0.25s; }
.animate-group .project-card:nth-child(3) { --animation-delay: 0.4s; }
.animate-group .project-card:nth-child(4) { --animation-delay: 0.1s; }
.animate-group .project-card:nth-child(5) { --animation-delay: 0.25s; }
.animate-group .project-card:nth-child(6) { --animation-delay: 0.4s; }

/* Smooth hover micro-interactions */
.premium-card,
.benefit-card,
.project-card,
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover,
.benefit-card:hover,
.project-card:hover,
.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal .reveal-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.text-reveal .reveal-line:nth-child(1) { animation-delay: 0.1s; }
.text-reveal .reveal-line:nth-child(2) { animation-delay: 0.2s; }
.text-reveal .reveal-line:nth-child(3) { animation-delay: 0.3s; }

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar animation for stats */
.stat-progress {
    position: relative;
    overflow: hidden;
}

.stat-progress::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--gradient-gold);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.stat-item.animate .stat-progress::after {
    width: 100%;
}

/* Floating animation for hero elements */
.floating-element {
    animation: gentleFloat 6s ease-in-out infinite;
}

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

/* Parallax-like effect for section backgrounds */
.parallax-bg {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Enhanced focus states for accessibility */
.premium-card:focus-within,
.benefit-card:focus-within,
.project-card:focus-within,
.blog-card:focus-within {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
    transform: translateY(-4px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    :root {
        --container-padding: 3rem;
    }
}

/* Desktop - Ensure exact 100vh height */
@media (min-width: 769px) {
    .hero {
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        height: 100%;
        padding: 6rem 0 2rem;
        box-sizing: border-box;
    }
    
    .hero-layout {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
}

/* Desktop */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero-content {
        height: 100%;
        padding: 4rem 0 2rem;
        box-sizing: border-box;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-gradient {
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    }
    
    .hero-image-bg {
        width: 100%;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
        opacity: 0.3;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-right {
        position: static;
    }
    
    /* Why Us Section - Desktop */
    .why-us {
        padding: 6rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Projects Section - Desktop */
    .projects {
        padding: 6rem 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    /* Process Section - Desktop */
    .process {
        padding: 6rem 0;
    }
    
    .process-steps {
        gap: 3rem;
    }
    
    .process-step {
        padding: 2rem;
        gap: 2.5rem;
    }
    
    .step-number {
        width: 5rem;
        height: 5rem;
        font-size: 1.75rem;
    }
    
    .step-content h3 {
        font-size: 1.75rem;
    }
    
    .step-content p {
        font-size: 1.125rem;
    }
    
    /* Testimonials Section - Desktop */
    .testimonials {
        padding: 6rem 0;
    }
    
    .testimonial-slider {
        max-width: 800px;
    }
    
    .testimonial {
        padding: 2.5rem;
    }
    
    .testimonial p {
        font-size: 1.375rem;
    }
    
    .testimonial cite {
        font-size: 1.125rem;
    }
    
    /* Blog Section - Desktop */
    .blog {
        padding: 6rem 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    /* Final CTA Section - Desktop */
    .final-cta {
        padding: 6rem 0;
    }
    
    .contact-form {
        padding: 2.5rem;
        gap: 1.5rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        gap: 1.5rem;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        gap: 4px;
    }
    
    .hamburger {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        transition: var(--transition);
        border-radius: 2px;
    }
    
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        width: 100%;
        max-width: 100%;
        padding: 6rem 0 3rem;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 2rem 0;
        height: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .services-left {
        gap: 1.5rem;
    }
    
    .premium-card {
        padding: 2rem;
    }
    
    .featured-service {
        transform: none;
    }
    
    /* Why Us Section - Tablet */
    .why-us {
        padding: 4rem 0;
    }
    
    .why-us::before {
        display: none; /* Hide decorative element on smaller screens */
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .benefit-icon {
        font-size: 3.5rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
    
    /* Projects Section - Tablet */
    .projects {
        padding: 4rem 0;
    }
    
    .projects::before {
        display: none; /* Hide decorative element on smaller screens */
    }
    
    .projects .section-subtitle {
        margin-bottom: 3rem;
        font-size: 1.125rem;
    }
    
    .project-filters {
        margin-bottom: 3rem;
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .project-card {
        transform: none !important; /* Remove masonry offsets */
    }
    
    .project-card:hover {
        transform: translateY(-8px) !important;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.375rem;
    }
    
    .project-content p {
        font-size: 0.95rem;
    }
    
    /* Process Section - Tablet */
    .process {
        padding: 4rem 0;
    }
    
    .process::before {
        display: none; /* Hide decorative element on smaller screens */
    }
    
    .process .section-subtitle {
        margin-bottom: 4rem;
        font-size: 1.125rem;
    }
    
    .process-steps {
        gap: 2.5rem;
        max-width: 600px;
    }
    
    .process-steps::before {
        left: 2rem;
        width: 3px;
        top: 3rem;
        bottom: 3rem;
    }
    
    .process-step {
        padding: 2rem;
        gap: 2rem;
        margin-left: 0;
    }
    
    .step-number {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .process-step .step-decoration {
        width: 60px;
        height: 60px;
    }
    
    /* Testimonials Section - Tablet */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials::before,
    .testimonials::after {
        display: none; /* Hide decorative elements on smaller screens */
    }
    
    .testimonial-slider {
        max-width: 600px;
        margin-top: 3rem;
    }
    
    .testimonial-container {
        min-height: 280px;
    }
    
    .testimonial {
        padding: 2rem;
        border-radius: var(--radius-lg);
    }
    
    .testimonial::before {
        font-size: 4rem;
        top: -10px;
        left: 1.5rem;
    }
    
    .testimonial p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .testimonial cite {
        font-size: 1.125rem;
    }
    
    .client-title {
        font-size: 0.9rem;
    }
    
    .testimonial-dots {
        margin-top: 2.5rem;
        gap: 0.75rem;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    /* Blog Section - Tablet */
    .blog {
        padding: 4rem 0;
    }
    
    .blog::before {
        display: none; /* Hide decorative element on smaller screens */
    }
    
    .blog .section-subtitle {
        margin-bottom: 3rem;
        font-size: 1.125rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.375rem;
    }
    
    .blog-content p {
        font-size: 0.95rem;
    }
    
    /* Final CTA Section - Tablet */
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta::before,
    .final-cta::after {
        display: none; /* Hide decorative elements on smaller screens */
    }
    
    .cta-content {
        margin-bottom: 3rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .contact-form {
        padding: 2rem;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
    }
    
    /* Footer Section - Desktop */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        margin-bottom: 2.5rem;
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 2rem;
    }
    
    .footer-address p {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    /* Footer Section - Tablet */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer::before,
    .footer::after {
        display: none; /* Hide decorative elements on smaller screens */
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-info {
        width: 100%;
        max-width: 500px;
    }
    
    .footer-logo {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        justify-content: center;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .footer-address p {
        font-size: 1rem;
    }
    
    .footer-links {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-section-title {
        text-align: center;
        font-size: 1.125rem;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    /* Ensure full width usage on mobile */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 var(--container-padding);
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Fix any elements that might cause overflow */
    
    /* Enhanced title spacing for very small screens */
    .hero-title,
    .section-title,
    .cta-title {
        line-height: 1.4 !important;
        word-spacing: 0.1em;
    }
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections use full width */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix grid layouts on mobile */
    .services-layout,
    .benefits-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix hero elements */
    .hero-visual,
    .floating-card {
        width: 100%;
        max-width: 100%;
        transform: none;
    }
    
    .floating-card:hover {
        transform: scale(1.02);
    }
    
    /* Hide decorative elements that might cause overflow */
    .services::before,
    .why-us::before,
    .projects::before,
    .process::before,
    .testimonials::before,
    .testimonials::after {
        display: none;
    }
    
    /* Ensure all cards and components fit properly */
    .premium-card,
    .benefit-card,
    .project-card,
    .process-step,
    .blog-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .trust-logos {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .trust-logo {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .gradient-icon {
        font-size: 2rem;
    }
    
    /* Why Us Section - Mobile */
    .why-us {
        padding: 3rem 0;
    }
    
    .why-us .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    
    .benefits-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        max-width: none;
        margin: 0;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Reduce animations on mobile for performance */
    .benefit-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .benefit-icon {
        animation: none; /* Disable bounce animation on mobile */
    }
    
    /* Projects Section - Mobile */
    .projects {
        padding: 3rem 0;
    }
    
    .projects .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .projects .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }
    
    .project-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .filter-btn {
        width: 200px;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .projects-grid {
        gap: 1.5rem;
        max-width: none;
    }
    
    .project-card {
        border-radius: var(--radius-lg);
        margin: 0;
    }
    
    .project-card:hover {
        transform: translateY(-5px) !important;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.25rem;
    }
    
    .project-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .project-category {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        border-radius: var(--radius);
    }
    
    /* Reduce hover effects on mobile for better performance */
    .project-card:hover .project-image img {
        transform: scale(1.05);
    }
    
    .project-card:hover .project-image::after {
        opacity: 0.7;
    }
    
    /* Process Section - Mobile */
    .process {
        padding: 3rem 0;
    }
    
    .process .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    
    .process .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        line-height: 1.5;
    }
    
    .process-steps {
        gap: 2rem;
        max-width: none;
    }
    
    .process-steps::before {
        display: none; /* Hide connecting line on mobile since layout is centered */
    }
    
    .process-step {
        padding: 1.5rem;
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content {
        padding-top: 0;
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Reduce animations on mobile for performance */
    .process-step:hover {
        transform: translateY(-5px);
    }
    
    .process-step:hover .step-number {
        transform: scale(1.05);
    }
    
    .process-step .step-decoration {
        display: none; /* Hide decorative elements on mobile */
    }
    
    /* Testimonials Section - Mobile */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    
    .testimonial-slider {
        max-width: none;
        margin-top: 2.5rem;
    }
    
    .testimonial-container {
        min-height: 250px;
    }
    
    .testimonial {
        padding: 1.5rem;
        border-radius: var(--radius);
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial::before {
        font-size: 3rem;
        top: -5px;
        left: 1rem;
    }
    
    .testimonial p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .testimonial footer::before {
        width: 40px;
        top: -1rem;
    }
    
    .testimonial cite {
        font-size: 1rem;
    }
    
    .client-title {
        font-size: 0.875rem;
    }
    
    .testimonial-dots {
        margin-top: 2rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    /* Reduce transition effects on mobile for better performance */
    .testimonial {
        transition: all 0.4s ease;
    }
    
    .dot {
        transition: all 0.2s ease;
    }
    
    /* Blog Section - Mobile */
    .blog {
        padding: 3rem 0;
    }
    
    .blog .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    
    .blog .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }
    
    .blog-grid {
        gap: 1.5rem;
        max-width: none;
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        border-radius: var(--radius-lg);
        margin: 0;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .blog-link {
        font-size: 0.9rem;
    }
    
    /* Final CTA Section - Mobile */
    .final-cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        margin-bottom: 2.5rem;
    }
    
    .cta-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 1.5rem;
        gap: 1.25rem;
        max-width: none;
        margin: 0 1rem;
        border-radius: var(--radius-lg);
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .contact-form .btn {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
    
    /* Reduce form animations on mobile for better performance */
    .form-group {
        animation: none;
    }
    
    /* Footer Section - Mobile */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer::before,
    .footer::after {
        display: none; /* Hide decorative elements on mobile */
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-info {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.75rem;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .footer-address p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section-title {
        text-align: center;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer-link {
        font-size: 0.95rem;
        padding: 0.5rem;
        text-align: center;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.875rem;
    }
    
    /* Social links mobile adjustments */
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* Focus States */
.btn:focus,
.cta-btn:focus,
.nav-menu a:focus,
.logo:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    }
    
    .premium-card {
        border: 2px solid var(--border-color);
    }
}

/* Initialize elements for animation - only hide if JS is enabled */
body.js-enabled .premium-card:not(.animated),
body.js-enabled .benefit-card:not(.animated),
body.js-enabled .project-card:not(.animated),
body.js-enabled .process-step:not(.animated),
body.js-enabled .blog-card:not(.animated),
body.js-enabled .testimonial-slider:not(.animated),
body.js-enabled .contact-form:not(.animated),
body.js-enabled .hero-text:not(.animated),
body.js-enabled .hero-visual:not(.animated) {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
    will-change: opacity, transform;
}

/* Fallback: show elements immediately if JS is not enabled */
body:not(.js-enabled) .premium-card,
body:not(.js-enabled) .benefit-card,
body:not(.js-enabled) .project-card,
body:not(.js-enabled) .process-step,
body:not(.js-enabled) .blog-card,
body:not(.js-enabled) .testimonial-slider,
body:not(.js-enabled) .contact-form,
body:not(.js-enabled) .hero-text,
body:not(.js-enabled) .hero-visual {
    opacity: 1;
    transform: translateY(0);
}

/* Once animated, maintain visibility */
.animated,
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.title-animated,
.fade-in-title {
    opacity: 1;
    transform: translateY(0);
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
    /* Override the js-enabled hiding for mobile */
    body.js-enabled .premium-card,
    body.js-enabled .benefit-card,
    body.js-enabled .project-card,
    body.js-enabled .process-step,
    body.js-enabled .blog-card,
    body.js-enabled .testimonial-slider,
    body.js-enabled .contact-form,
    body.js-enabled .hero-text,
    body.js-enabled .hero-visual {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .fade-in,
    .fade-in-title {
        animation: none !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .floating-card {
        animation: none;
    }
    
    /* Immediate visibility for reduced motion */
    .premium-card,
    .benefit-card,
    .project-card,
    .process-step,
    .blog-card,
    .testimonial-slider,
    .contact-form,
    .hero-text,
    .hero-visual {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .hero-ctas,
    .btn,
    .cta-btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .hero-title {
        color: #000 !important;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0;
    pointer-events: none;
}

.loaded {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease-in-out;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
img {
    will-change: transform;
}

.premium-card {
    will-change: transform, box-shadow;
}

.btn {
    will-change: transform;
}