/* =====================================================
   LA HEATING & PLUMBING - PROFESSIONAL DESIGN
   Clean, Modern, Well-Aligned
   ===================================================== */

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

:root {
    --primary: #e65100;
    --primary-light: #ff7d33;
    --primary-dark: #b33d00;
    --secondary: #1a237e;
    --accent: #ffc107;
    
    --dark: #1a1a2e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #e65100 0%, #ff7d33 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(230, 81, 0, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230, 81, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.45);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

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

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
}

.logo-sub {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(230, 81, 0, 0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
}

.btn-phone i {
    color: var(--primary);
    font-size: 14px;
}

.btn-phone:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.25);
}

.btn-phone:hover i {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.93) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(230, 81, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0 100px;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge i {
    color: var(--accent);
    font-size: 14px;
}

.hero-text h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 0;
}

.hero-stat {
    text-align: left;
    padding: 0 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-width: 460px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: -25px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
}

.hero-floating-icon {
    width: 54px;
    height: 54px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.hero-floating-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.hero-floating-text p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   TRUST BADGES
   ===================================================== */
.trust-badges {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(230, 81, 0, 0.03) 100%);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-item:hover {
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 81, 0, 0.15);
    transform: translateY(-4px);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.2);
}

.trust-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.trust-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   SECTION STYLES
   ===================================================== */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(230, 81, 0, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-top: 20px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    border: 6px solid var(--white);
}

.about-img-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 36px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
    z-index: 10;
}

.about-experience-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-text {
    font-size: 13px;
    opacity: 0.95;
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

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

.about-content > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.85;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 125, 51, 0.05) 0%, rgba(255, 125, 51, 0.02) 100%);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 125, 51, 0.1);
}

.about-feature:hover {
    background: linear-gradient(135deg, rgba(255, 125, 51, 0.12) 0%, rgba(255, 125, 51, 0.06) 100%);
    border-color: rgba(255, 125, 51, 0.25);
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.08);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.15);
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.about-feature p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: var(--gray-100);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 81, 0, 0.15);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 54px;
    height: 54px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.35);
    z-index: 10;
}

.service-card-content {
    padding: 28px 28px 32px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 22px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.service-link i {
    transition: var(--transition);
}

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

.service-link:hover i {
    transform: translateX(4px);
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-choose {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

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

.why-choose .section-tag {
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent);
}

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

.why-choose .section-header h2::after {
    background: var(--accent);
}

.why-choose .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.35);
}

.why-card h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS (HIDDEN)
   ===================================================== */
.testimonials {
    display: none !important;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-info h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(230, 81, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    flex-grow: 1;
}

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

.contact-item-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-content h5 {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.contact-license {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-top: auto;
}

.contact-license i {
    font-size: 18px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--gray-600);
    margin-bottom: 28px;
    font-size: 15px;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

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

.form-submit {
    margin-top: 20px;
}

.form-submit .btn {
    width: 100%;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

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

.footer-brand {
    padding-right: 24px;
}

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

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

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-license {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-license i {
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

/* =====================================================
   SERVICE PAGES
   ===================================================== */
.service-hero {
    padding: 140px 0 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(230, 81, 0, 0.3) 100%);
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.service-hero .section-tag {
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent);
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.service-hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.service-details {
    padding: 100px 0;
}

.service-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.service-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.service-intro p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-feature-card:hover {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(230, 81, 0, 0.25);
    transform: translateY(-8px);
    border-color: transparent;
}

.service-feature-card:hover h3,
.service-feature-card:hover > p {
    color: var(--white);
}

.service-feature-card:hover ul li {
    color: rgba(255, 255, 255, 0.9);
}

.service-feature-card:hover ul li::before {
    color: var(--accent);
}

.service-feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-feature-card > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-feature-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature-card ul li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 24px;
    position: relative;
}

.service-feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--primary);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1400px) {
    .hero-content {
        gap: 60px;
        grid-template-columns: 1.15fr 0.85fr;
    }
    
    .hero-image-main {
        max-width: 400px;
    }
    
    .hero-image-main img {
        height: 400px;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        max-width: 680px;
        margin: 0 auto;
        padding: 60px 0 80px;
    }
    
    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-stat {
        text-align: center;
        padding: 0 28px;
    }
    
    .hero-stat:first-child {
        padding-left: 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        max-width: 480px;
        margin: 0 auto;
        padding-right: 0;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: left;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 0;
        transform: none;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .navbar {
        height: 76px;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid var(--gray-200);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        text-align: center;
        border-radius: var(--radius-sm);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(230, 81, 0, 0.08);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-intro {
        text-align: center;
    }
    
    .service-hero-content {
        text-align: center;
    }
    
    .service-hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text > p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .hero-stat {
        flex: 0 0 auto;
        min-width: 100px;
        padding: 0;
        border-right: none;
        text-align: center;
    }
    
    .hero-stat:first-child {
        padding-left: 0;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-card-img {
        height: 180px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .about-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        background: linear-gradient(135deg, rgba(255, 125, 51, 0.05) 0%, rgba(255, 125, 51, 0.02) 100%);
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 125, 51, 0.1);
    }
    
    .about-feature-icon {
        width: 46px;
        height: 46px;
        background: var(--gradient-primary);
        font-size: 18px;
        flex-shrink: 0;
        border-radius: var(--radius-sm);
        box-shadow: 0 3px 10px rgba(230, 81, 0, 0.12);
    }
    
    .about-feature h4 {
        font-size: 15px;
        margin-bottom: 4px;
        font-weight: 700;
    }
    
    .about-feature p {
        font-size: 12px;
        color: var(--gray-600);
    }
    
    .about-experience {
        position: absolute;
        bottom: 16px;
        right: auto;
        left: 12px;
        top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 12px 20px;
        margin-top: 0;
        max-width: none;
        background: var(--gradient-primary);
        color: var(--white);
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(230, 81, 0, 0.25);
    }
    
    .about-experience-number {
        font-size: 1.75rem;
        line-height: 1;
        font-weight: 800;
    }
    
    .about-experience-text {
        font-size: 11px;
        line-height: 1.2;
        font-weight: 500;
        margin-top: 2px;
    }
    
    .about-img-small {
        display: none;
    }
    
    .about-img-main img {
        height: 300px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
        max-width: 380px;
        margin: 0 auto;
        padding-right: 0;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand > p {
        text-align: center;
    }
    
    .footer-license {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trust-item {
        padding: 16px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-feature-card {
        padding: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .contact-info,
    .contact-form {
        padding: 24px;
    }
    
    .service-hero {
        padding: 100px 0 50px;
    }
    
    .service-hero h1 {
        font-size: 1.75rem;
    }
    
    .service-hero p {
        font-size: 15px;
    }
    
    .service-hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-hero-cta .btn {
        width: 100%;
    }
    
    .service-intro h2 {
        font-size: 1.5rem;
    }
    
    /* Header adjustments for mobile */
    .header .container {
        padding: 0 16px;
    }
    
    .logo-main {
        font-size: 15px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stat {
        padding: 0 12px;
        border-right: none;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .trust-content h4 {
        font-size: 14px;
    }
    
    .trust-content p {
        font-size: 12px;
    }
    
    .about-experience {
        position: absolute;
        bottom: 12px;
        left: 10px;
        right: auto;
        top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 10px 16px;
        margin-top: 0;
        max-width: none;
        background: var(--gradient-primary);
        color: var(--white);
        border-radius: 50px;
        z-index: 10;
        box-shadow: 0 4px 16px rgba(230, 81, 0, 0.25);
    }
    
    .about-experience-number {
        font-size: 1.5rem;
        line-height: 1;
        font-weight: 800;
    }
    
    .about-experience-text {
        font-size: 9px;
        line-height: 1;
        font-weight: 600;
        margin-top: 1px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    
    .about-feature {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: linear-gradient(135deg, rgba(255, 125, 51, 0.05) 0%, rgba(255, 125, 51, 0.02) 100%);
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 125, 51, 0.1);
    }
    
    .about-feature:last-child {
        border-bottom: 1px solid rgba(255, 125, 51, 0.1);
    }
    
    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
        background: var(--gradient-primary);
        border-radius: var(--radius-sm);
        box-shadow: 0 2px 8px rgba(230, 81, 0, 0.1);
    }
    
    .about-feature h4 {
        font-size: 13px;
        margin-bottom: 2px;
        font-weight: 700;
    }
    
    .about-feature p {
        font-size: 11px;
        color: var(--gray-600);
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .service-feature-card h3 {
        font-size: 18px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.25rem;
    }
    
    .footer-grid {
        gap: 24px;
    }
    
    .footer h4 {
        font-size: 16px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content > p {
        font-size: 14px;
    }
}
