/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 120, 227, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 227, 0.4);
}

.btn-secondary {
    background: linear-gradient(180deg, #fed25c 0%, #f4c430 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(254, 210, 92, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 210, 92, 0.4);
}

.btn-outline {
    background: transparent;
    color: #0078e3;
    border: 2px solid #0078e3;
}

.btn-outline:hover {
    background: #0078e3;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand .logo {
    height: 50px;
    width: auto;
}

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

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0078e3;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 120, 227, 0.3);
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 227, 0.4);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #0078e3;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.85) 0%, rgba(0, 91, 181, 0.85) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: url('../images/residential-paver-installation-10.jpeg') center/cover;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    border: 4px solid rgba(254, 210, 92, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 8s ease-in-out infinite;
    z-index: 10;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 6%;
    width: 220px;
    height: 220px;
    background: url('../images/residential-paver-installation-10.jpeg') center/cover;
    border-radius: 50% 50% 0 50%;
    border: 4px solid rgba(254, 210, 92, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 10;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(254, 210, 92, 0.1);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(20px);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 210, 92, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(254, 210, 92, 0.3);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-badge i {
    color: #fed25c;
    font-size: 1.2rem;
}

.hero-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fed25c;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn i {
    margin-right: 0.5rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature i {
    color: #fed25c;
    font-size: 1.3rem;
}

.feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(254, 210, 92, 0.1) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(0, 120, 227, 0.2);
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #0078e3;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge i {
    color: #fed25c;
    font-size: 1.1rem;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Elegant Services Section */
.services-elegant {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #ffffff 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.services-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 120, 227, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(254, 210, 92, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 91, 181, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

/* Elegant Section Header */
.section-header-elegant {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.08) 0%, rgba(254, 210, 92, 0.08) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(0, 120, 227, 0.15);
    margin-bottom: 2rem;
    font-weight: 700;
    color: #0078e3;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(0, 120, 227, 0.1);
    transition: all 0.3s ease;
}

.section-badge-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 120, 227, 0.15);
}

.section-badge-elegant i {
    color: #fed25c;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(254, 210, 92, 0.3));
}

.section-title-elegant {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-subtitle-elegant {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Featured Services */
.featured-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.featured-service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 120, 227, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 500px;
}

.featured-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(0, 120, 227, 0.1);
    border-color: rgba(0, 120, 227, 0.2);
}

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

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease;
}

.featured-service-card:hover .featured-image-container img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.2) 0%, rgba(254, 210, 92, 0.15) 50%, rgba(0, 91, 181, 0.2) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-service-card:hover .featured-overlay {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%);
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(254, 210, 92, 0.4);
    z-index: 3;
}

.featured-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.featured-service-card:hover .featured-icon {
    opacity: 1;
    transform: scale(1);
}

.featured-icon i {
    font-size: 2.5rem;
    color: #0078e3;
    filter: drop-shadow(0 4px 8px rgba(0, 120, 227, 0.3));
}

.featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 280px);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.featured-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.featured-price {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 120, 227, 0.3);
    flex-shrink: 0;
}

.featured-content p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex: 1;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #0078e3;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
}

.featured-cta:hover {
    color: #005bb5;
    border-bottom-color: #005bb5;
    gap: 1rem;
}

.featured-cta i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.featured-cta:hover i {
    transform: translateX(6px);
}

/* Additional Services */
.additional-services {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

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

.additional-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.additional-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0078e3 0%, #fed25c 100%);
    border-radius: 2px;
}

.additional-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Gallery */
.services-gallery-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-elegant {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.06),
        0 8px 20px rgba(0, 120, 227, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.service-card-elegant:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.1),
        0 12px 30px rgba(0, 120, 227, 0.08);
    border-color: rgba(0, 120, 227, 0.15);
}

.service-image-elegant {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.service-image-elegant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease;
}

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

.service-overlay-elegant {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.15) 0%, rgba(254, 210, 92, 0.1) 50%, rgba(0, 91, 181, 0.15) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-elegant:hover .service-overlay-elegant {
    opacity: 1;
}

.service-icon-overlay {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-card-elegant:hover .service-icon-overlay {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.service-icon-overlay i {
    font-size: 2rem;
    color: #0078e3;
    filter: drop-shadow(0 2px 4px rgba(0, 120, 227, 0.3));
}

.service-content-elegant {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-badge-elegant {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 120, 227, 0.3);
    z-index: 3;
    white-space: nowrap;
}

.featured-badge-elegant {
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%) !important;
    color: #1e293b !important;
    box-shadow: 0 6px 20px rgba(254, 210, 92, 0.4) !important;
}

.service-content-elegant h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.service-content-elegant p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-cta-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #0078e3;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    margin-top: auto;
}

.service-cta-elegant:hover {
    color: #005bb5;
    border-bottom-color: #005bb5;
    gap: 1rem;
}

.service-cta-elegant i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

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

.services-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-item-elegant {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-item-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 227, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-item-elegant:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.2);
}

.service-item-elegant:hover::before {
    left: 100%;
}

.service-icon-elegant {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 120, 227, 0.3);
}

.service-item-elegant:hover .service-icon-elegant {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 120, 227, 0.4);
}

.service-icon-elegant i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-info-elegant {
    flex: 1;
}

.service-info-elegant h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-info-elegant p {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.service-price-elegant {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(254, 210, 92, 0.1) 100%);
    color: #0078e3;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 120, 227, 0.2);
}

.service-link-elegant {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078e3;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid rgba(0, 120, 227, 0.1);
}

.service-link-elegant:hover {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 120, 227, 0.3);
}

.service-link-elegant i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Services CTA */
.services-cta-elegant {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 75%, #475569 100%);
    border-radius: 40px;
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-cta-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 120, 227, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(254, 210, 92, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.cta-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(254, 210, 92, 0.12);
    animation: float 25s ease-in-out infinite;
    filter: blur(1px);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -10%;
    left: -5%;
    background: rgba(0, 120, 227, 0.08);
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: -5%;
    background: rgba(254, 210, 92, 0.12);
    animation-delay: 8s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 70%;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 16s;
}

.cta-shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    background: rgba(0, 120, 227, 0.06);
    animation-delay: 12s;
}

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

.cta-badge-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.25) 0%, rgba(254, 210, 92, 0.15) 100%);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(254, 210, 92, 0.5);
    margin-bottom: 2.5rem;
    color: #fbbf24;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(254, 210, 92, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    filter: contrast(1.15) brightness(1.1);
}

.cta-badge-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(254, 210, 92, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-badge-elegant i {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-content-elegant h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.02em;
    filter: contrast(1.2) brightness(1.1);
}

.cta-content-elegant p {
    font-size: 1.3rem;
    color: #f8fafc;
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.2);
    filter: contrast(1.1) brightness(1.05);
}

.cta-features-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: flex-start;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-feature:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 8px 20px rgba(251, 191, 36, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: contrast(1.1) brightness(1.05);
}

.cta-feature-icon i {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
    filter: contrast(1.2);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-feature span {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 2px 10px rgba(0, 0, 0, 0.3);
    filter: contrast(1.3) brightness(1.1);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
}

.cta-buttons-elegant {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 30px rgba(251, 191, 36, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(251, 191, 36, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: white;
    position: relative;
    padding: 1rem;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fbbf24 50%, transparent 100%);
    border-radius: 2px;
}

.trust-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.75rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 15px rgba(251, 191, 36, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    filter: contrast(1.2) brightness(1.1);
}

.trust-label {
    font-size: 1rem;
    color: #f8fafc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.2);
    filter: contrast(1.1) brightness(1.05);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 120, 227, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(254, 210, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 450px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 120, 227, 0.4);
}

.service-card.featured {
    border: 1px solid rgba(0, 120, 227, 0.2);
}

.service-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%);
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(254, 210, 92, 0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.15) 0%, rgba(254, 210, 92, 0.1) 50%, rgba(0, 91, 181, 0.15) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.service-overlay::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;
}

.service-card:hover .service-overlay::after {
    left: 100%;
}

.service-price {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 120, 227, 0.3);
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-price {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 120, 227, 0.4);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    background: white;
    justify-content: flex-start;
    min-height: 200px;
}

.service-content-no-image {
    padding: 3rem 2rem;
    min-height: 400px;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.service-content-no-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 120, 227, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(254, 210, 92, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 120, 227, 0.3);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #0078e3, #fed25c, #005bb5);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 120, 227, 0.4);
}

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

.service-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 5;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #667eea, #f093fb, #764ba2);
    border-radius: 29px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-large {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 120, 227, 0.4);
}

.service-card:hover .service-icon-large::before {
    opacity: 0;
}

.service-icon-large i {
    font-size: 2.2rem;
    color: #0078e3;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-large i {
    color: #0078e3;
    filter: drop-shadow(0 0 8px rgba(0, 120, 227, 0.3));
    transform: scale(1.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
    min-height: 0;
}

.service-card h3 {
    color: #1e293b;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    flex: 1;
    text-align: left;
}

.service-card:hover h3 {
    color: #0078e3;
}

.service-card p {
    color: #334155;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex: 1;
    font-weight: 500;
    display: block;
}

.service-link {
    color: #0078e3;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0;
    margin-top: auto;
    position: relative;
    font-size: 0.9rem;
    align-self: flex-start;
}

.service-link:hover {
    color: #005bb5;
    gap: 0.75rem;
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

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

.service-link.btn-primary {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 120, 227, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-link.btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-link.btn-primary:hover {
    background: linear-gradient(135deg, #005bb5 0%, #004080 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 120, 227, 0.4);
}

.service-link i {
    transition: transform 0.3s ease;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-feature i {
    color: #0078e3;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fed25c;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item div strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #0078e3;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 120, 227, 0.3);
}

/* Contact Form */
.quote-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fafc;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #b3d4fc;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0078e3;
    box-shadow: 0 0 0 3px rgba(0, 120, 227, 0.15);
    background-color: #ffffff;
}

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

/* Map Section */
.map-section {
    padding: 3rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0078e3;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #0078e3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact i {
    color: #0078e3;
    width: 20px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #0078e3;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0078e3;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .climate-info-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 180px;
        height: 180px;
    }
    
    .hero-overlay::before {
        width: 180px;
        height: 180px;
        top: 10%;
        right: 5%;
    }
    
    .hero-overlay::after {
        width: 150px;
        height: 150px;
        bottom: 8%;
        left: 5%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .service-card p {
        font-size: 0.85rem;
        display: block;
    }

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

    /* Elegant Services Responsive */
    .section-title-elegant {
        font-size: 2.5rem;
    }
    
    .section-subtitle-elegant {
        font-size: 1.1rem;
    }
    
    .featured-services {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .featured-service-card {
        min-height: 450px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-header h3 {
        font-size: 1.5rem;
    }
    
    .additional-title {
        font-size: 2rem;
    }
    
    .additional-subtitle {
        font-size: 1rem;
    }
    
    .services-gallery-elegant {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-elegant {
        min-height: 380px;
    }
    
    .service-image-elegant {
        height: 200px;
    }
    
    .service-content-elegant {
        padding: 1.5rem;
    }
    
    .service-content-elegant h4 {
        font-size: 1.3rem;
    }
    
    .service-content-elegant p {
        font-size: 0.95rem;
    }
    
    .services-grid-elegant {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item-elegant {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon-elegant {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-elegant i {
        font-size: 1.8rem;
    }
    
    .services-cta-elegant {
        padding: 4rem 2rem;
        border-radius: 32px;
        margin-top: 2rem;
    }
    
    .cta-content-elegant h3 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 4px 20px rgba(0, 0, 0, 0.3);
        filter: contrast(1.2) brightness(1.1);
    }
    
    .cta-content-elegant p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        color: #f8fafc;
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.4),
            0 2px 10px rgba(0, 0, 0, 0.2);
        filter: contrast(1.1) brightness(1.05);
    }
    
    .cta-features-elegant {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .cta-feature {
        padding: 1.25rem 1.5rem;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
    
    .cta-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
        filter: contrast(1.1) brightness(1.05);
    }
    
    .cta-feature-icon i {
        font-size: 1rem;
        color: #0f172a;
        font-weight: 700;
        filter: contrast(1.2);
    }
    
    .cta-feature span {
        font-size: 0.9rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.3),
            0 1px 3px rgba(0, 0, 0, 0.6),
            0 2px 10px rgba(0, 0, 0, 0.3);
        filter: contrast(1.3) brightness(1.1);
        letter-spacing: 0.03em;
        position: relative;
        z-index: 2;
    }
    
    .cta-buttons-elegant {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 14px;
    }
    
    .cta-trust-indicators {
        gap: 2.5rem;
    }
    
    .trust-number {
        font-size: 2.2rem;
    }
    
    .trust-label {
        font-size: 0.9rem;
    }
    
    .cta-badge-elegant {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .cta-content-elegant h3 {
        font-size: 2.2rem;
        color: #ffffff;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 4px 20px rgba(0, 0, 0, 0.3);
        filter: contrast(1.2) brightness(1.1);
    }
    
    .cta-content-elegant p {
        font-size: 1.1rem;
        color: #f8fafc;
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.4),
            0 2px 10px rgba(0, 0, 0, 0.2);
        filter: contrast(1.1) brightness(1.05);
    }
    
    .cta-features-elegant {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .cta-feature {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .cta-feature span {
        font-size: 0.8rem;
    }
    
    .cta-buttons-elegant {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .cta-trust-indicators {
        gap: 2rem;
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-overlay::before {
        width: 120px;
        height: 120px;
        top: 8%;
        right: 3%;
        border-width: 3px;
    }
    
    .hero-overlay::after {
        width: 100px;
        height: 100px;
        bottom: 5%;
        left: 3%;
        border-width: 3px;
    }

    section {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: none;
    }

    .service-card {
        border-radius: 16px;
        min-height: 350px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
        line-height: 1.2;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    .service-price {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .service-content {
        padding: 1.25rem;
        min-height: 220px;
    }

    .service-content-no-image {
        padding: 1.75rem 1.25rem;
        min-height: 280px;
    }

    .service-image {
        height: 160px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .service-icon i {
        font-size: 1.4rem;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }

    .service-icon-large i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
        min-height: 50px;
    }

    .service-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-link.btn-primary {
        padding: 12px 24px;
    }

    .service-price {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .testimonial-card,
    .quote-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.services-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 210, 92, 0.2);
    color: #fed25c;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(254, 210, 92, 0.3);
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.services-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fed25c;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(254, 210, 92, 0.1);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation: float 10s ease-in-out infinite;
}

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

/* Service Pages Styles */
.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    margin-top: 80px;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-details {
    padding: 5rem 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-benefits {
    margin: 2rem 0;
}

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

.benefit-item i {
    color: #0078e3;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service-process {
    background: #f8f9fa;
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.service-cta {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quote Page Styles */
.quote-hero {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.quote-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.quote-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.quote-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-feature i {
    color: #fed25c;
    font-size: 1.2rem;
}

.quote-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.quote-info h2 {
    color: #333;
    margin-bottom: 2rem;
}

.info-items {
    margin-bottom: 3rem;
}

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

.info-item i {
    color: #0078e3;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.info-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-direct {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-direct h3 {
    color: #333;
    margin-bottom: 1rem;
}

.detailed-quote-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detailed-quote-form h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #0078e3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(0, 120, 227, 0.05);
    box-shadow: 0 2px 6px rgba(0, 120, 227, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-color: #005bb5;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 120, 227, 0.3);
}

.checkbox-label:hover .checkmark {
    border-color: #005bb5;
    transform: scale(1.03);
    box-shadow: 0 3px 8px rgba(0, 120, 227, 0.2);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 120, 227, 0.4);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 120, 227, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 120, 227, 0.1);
}

.form-disclaimer a {
    color: #0078e3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-disclaimer a:hover {
    color: #005bb5;
    text-decoration: underline;
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
    text-align: center;
}

.service-areas h2 {
    color: #333;
    margin-bottom: 1rem;
}

.service-areas p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.area-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: #0078e3;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .highlight-year {
        align-self: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-hero h1 {
        font-size: 2.5rem;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detailed-quote-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .quote-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 60vh;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-intro {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .member-placeholder i {
        font-size: 2.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .quote-hero h1 {
        font-size: 2rem;
    }
    
    .detailed-quote-form {
        padding: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 0 5rem;
    margin-top: 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-section h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #0078e3;
    text-decoration: none;
}

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

/* Floating Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.widget-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 120, 227, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 120, 227, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 120, 227, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 120, 227, 0.4), 0 0 0 10px rgba(0, 120, 227, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 120, 227, 0.4);
    }
}

.widget-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.widget-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.widget-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.widget-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.widget-close:hover {
    background: #f0f0f0;
    color: #333;
}

.widget-links {
    padding: 1rem 0;
}

.widget-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.widget-link:hover {
    background: #f8f9fa;
    border-left-color: #0078e3;
    color: #0078e3;
}

.widget-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.widget-link.phone:hover {
    border-left-color: #28a745;
    color: #28a745;
}

.widget-link.email:hover {
    border-left-color: #dc3545;
    color: #dc3545;
}

.widget-link.facebook:hover {
    border-left-color: #1877f2;
    color: #1877f2;
}

.widget-link.instagram:hover {
    border-left-color: #e4405f;
    color: #e4405f;
}

.widget-link.quote {
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%);
    color: #333;
    font-weight: 600;
    margin: 0.5rem 1rem;
    border-radius: 8px;
    border-left: none;
}

.widget-link.quote:hover {
    background: linear-gradient(135deg, #f4c430 0%, #fed25c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 210, 92, 0.3);
}

/* Mobile adjustments for widget */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .widget-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .widget-content {
        min-width: 260px;
        bottom: 65px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 210, 92, 0.2);
    color: #fed25c;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(254, 210, 92, 0.3);
    backdrop-filter: blur(10px);
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fed25c;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(254, 210, 92, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 120, 227, 0.3);
}

.company-story {
    padding: 6rem 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-text h2 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.story-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 500;
}

.story-highlights {
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-year {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 120, 227, 0.3);
}

.highlight-content h4 {
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.story-mission {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.05) 0%, rgba(254, 210, 92, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid #0078e3;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.8) 0%, rgba(0, 91, 181, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0078e3 0%, #fed25c 50%, #005bb5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-member:hover::before {
    opacity: 1;
}

.member-image {
    margin-bottom: 2rem;
}

.member-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.team-member:hover .member-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.member-placeholder i {
    font-size: 3rem;
    color: white;
}

.member-info h3 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #0078e3;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(254, 210, 92, 0.1) 100%);
    color: #0078e3;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 120, 227, 0.2);
}

.values-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0078e3 0%, #fed25c 50%, #005bb5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 120, 227, 0.3);
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #0078e3, #fed25c, #005bb5);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.value-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.value-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #0078e3;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-highlight {
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%);
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 3px 12px rgba(254, 210, 92, 0.3);
}

.why-choose-us {
    padding: 5rem 0;
}

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.choose-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

.choose-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reason-item i {
    color: #0078e3;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.reason-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-item p {
    color: #666;
    line-height: 1.5;
}

.choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-cta {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.about-cta .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation Active State */
.nav-link.active {
    color: #0078e3;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Services Page Styles */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    margin-top: 80px;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.services-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.services-showcase {
    padding: 5rem 0;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #0078e3;
    position: relative;
}

.service-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

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

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

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

.service-content {
    padding: 2rem;
}

.service-content .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-content .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-features i {
    color: #0078e3;
    font-size: 0.9rem;
}

.services-process {
    background: #f8f9fa;
    padding: 5rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step .step-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-step .step-content p {
    color: #666;
    line-height: 1.6;
}

.why-choose-services {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #0078e3;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.services-cta .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.services-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    margin-top: 80px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Remove animations from contact hero */
.contact-hero .hero-bg-image {
    animation: none;
}

.contact-hero .hero-overlay::before,
.contact-hero .hero-overlay::after {
    display: none;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-feature i {
    color: #fed25c;
    font-size: 1.2rem;
}

.contact-info-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-methods > p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.2rem;
    color: white;
}

.method-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.method-info p {
    margin-bottom: 0.5rem;
}

.method-info a {
    color: #0078e3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.method-info a:hover {
    text-decoration: underline;
}

.method-info span {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    color: #333;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 120, 227, 0.1);
    border: 1px solid rgba(0, 120, 227, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0078e3, #005bb5);
}

/* Honeypot field - visually hidden but still accessible to bots */
.honeypot-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.contact-form h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0078e3, #005bb5);
    border-radius: 2px;
}

.contact-form > p {
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-icons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
}

/* Fire Pit Types, Wall Types, Pergola Types, Kitchen Features, Installation Types, Hardscape Elements, Project Types Sections */
.fire-pit-types, .wall-types, .pergola-types, .kitchen-features, .installation-types, .hardscape-elements, .project-types, .deck-types {
    background: #f8f9fa;
    padding: 5rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.type-icon i {
    font-size: 1.8rem;
    color: white;
}

.type-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
}

/* Common Problems Section */
.common-problems {
    padding: 5rem 0;
    background: #f8f9fa;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

.problems-note {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Wall Lifespan Section */
.wall-lifespan {
    padding: 5rem 0;
}

.lifespan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.lifespan-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.lifespan-item:hover {
    border-color: #0078e3;
    transform: translateY(-5px);
}

.lifespan-years {
    font-size: 3rem;
    font-weight: 700;
    color: #0078e3;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lifespan-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.lifespan-item p {
    color: #666;
    font-size: 0.9rem;
}

.lifespan-note {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* FAQ Section - Elegant Design */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 120, 227, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 210, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(0, 120, 227, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 120, 227, 0.2);
    margin-bottom: 1.5rem;
    color: #0078e3;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(0, 120, 227, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Guarantee */
.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsive Design for Types Sections */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 0;
    }
    
    .service-content {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .service-content-no-image {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .lifespan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lifespan-grid {
        grid-template-columns: 1fr;
    }
    
    .type-card {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .widget-toggle {
        animation: none;
    }
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #0078e3;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Why Professional Paver Installers Section */
.why-professional {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.professional-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.local-expertise {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.local-expertise h3 {
    color: #0078e3;
    margin-bottom: 1rem;
}

.local-expertise p {
    margin-bottom: 1.5rem;
}

.professional-images .image-gallery {
    display: grid;
    gap: 15px;
}

.professional-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.professional-images img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #f8faff;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #0078e3;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 120, 227, 0.1);
}

.faq-item h3 {
    color: #0078e3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Guide Article Styles */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.guide-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8f2ff;
}

.article-header h1 {
    color: #0078e3;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #999;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-section {
    margin-bottom: 60px;
}

.guide-section h2 {
    color: #333;
    border-bottom: 3px solid #0078e3;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.content-with-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.factor-card {
    background: #f8faff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
}

.factor-card i {
    font-size: 2rem;
    color: #0078e3;
    margin-bottom: 15px;
}

.factor-card h4 {
    color: #333;
    margin-bottom: 10px;
}

.process-steps {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8faff;
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .professional-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Featured Projects Section */
.featured-projects {
    padding: 80px 0;
    background: #f8faff;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.project-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: #0078e3;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design for Featured Projects */
@media (max-width: 768px) {
    .projects-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .project-info {
        padding: 20px;
    }
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: #fed25c;
    font-size: 1.2rem;
}

.hero-feature span {
    color: white;
    font-weight: 500;
}

/* Paver Materials Section */
.paver-materials {
    padding: 80px 0;
    background: #f8faff;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.material-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.material-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.material-icon i {
    color: white;
    font-size: 2rem;
}

.material-item h3 {
    color: #0078e3;
    margin-bottom: 10px;
}

.material-item p {
    margin-bottom: 15px;
    font-weight: 500;
}

.material-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.material-item li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.material-item li:before {
    content: "✓";
    color: #0078e3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Design Ideas Section */
.design-ideas {
    padding: 80px 0;
    background: white;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.design-item {
    background: #f8faff;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #0078e3;
    transition: all 0.3s ease;
}

.design-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 120, 227, 0.1);
}

.design-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fed25c 0%, #f4c430 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.design-icon i {
    color: #333;
    font-size: 1.5rem;
}

.design-item h3 {
    color: #0078e3;
    margin-bottom: 15px;
}

.design-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.design-item li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.design-item li:before {
    content: "•";
    color: #0078e3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Maintenance Tips Section */
.maintenance-tips {
    padding: 80px 0;
    background: #f8faff;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.maintenance-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.maintenance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.maintenance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.maintenance-icon i {
    color: white;
    font-size: 1.5rem;
}

.maintenance-item h3 {
    color: #0078e3;
    margin-bottom: 15px;
}

/* Comparison Table Section */
.comparison-table {
    padding: 80px 0;
    background: white;
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-grid {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-grid th,
.comparison-grid td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-grid th {
    background: #f8faff;
    font-weight: 600;
    color: #333;
    position: sticky;
    top: 0;
}

.comparison-grid th.highlight {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
}

.comparison-grid td.highlight {
    background: rgba(0, 120, 227, 0.05);
    font-weight: 500;
}

.comparison-grid i {
    margin-right: 8px;
}

.comparison-grid .fas.fa-star {
    color: #fed25c;
}

.comparison-grid .fas.fa-check {
    color: #28a745;
}

.comparison-grid .fas.fa-exclamation-triangle {
    color: #ffc107;
}

.comparison-grid .fas.fa-minus {
    color: #6c757d;
}

/* FAQ Section Enhancements */
.faq-section {
    padding: 80px 0;
    background: #f8faff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8faff;
}

.faq-question h3 {
    color: #0078e3;
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: #0078e3;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 1000px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-answer li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.faq-answer li:before {
    content: "•";
    color: #0078e3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .materials-grid,
    .design-grid,
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .material-item,
    .design-item,
    .maintenance-item {
        padding: 20px;
    }
    
    .comparison-grid th,
    .comparison-grid td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* Pergola-Specific Styles */
.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.hero-feature i {
    font-size: 1.2rem;
    color: #fed25c;
}

.pergola-definition {
    padding: 4rem 0;
    background: white;
}

.pergola-definition h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.pergola-definition p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.pergola-benefits {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pergola-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-section h3 {
    color: #0078e3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-section h3 i {
    font-size: 1.2rem;
}

.benefit-section ul {
    list-style: none;
    padding: 0;
}

.benefit-section li {
    padding: 0.5rem 0;
    color: #666;
}

.featured-pergolas {
    padding: 5rem 0;
    background: white;
}

.featured-pergolas h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.featured-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0078e3;
}

.featured-item h3 {
    color: #0078e3;
    margin-bottom: 1rem;
}

.pergola-selection {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pergola-selection h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.selection-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.selection-item h3 {
    color: #0078e3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.selection-item h3 i {
    font-size: 1.2rem;
}

.maintenance-tips {
    padding: 5rem 0;
    background: white;
}

.maintenance-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.tip-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #fed25c;
}

.tip-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tip-item h3 i {
    color: #0078e3;
    font-size: 1.2rem;
}

.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.cta-feature i {
    color: #0078e3;
    font-size: 1.2rem;
}

.cta-note {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for Pergola Sections */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pergola-definition p {
        font-size: 1rem;
    }
}

/* Hardscapes-Specific Styles */
.hardscapes-definition {
    padding: 4rem 0;
    background: white;
}

.hardscapes-definition h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.definition-content {
    max-width: 800px;
    margin: 0 auto;
}

.definition-section h3 {
    color: #0078e3;
    margin-bottom: 1rem;
}

.definition-section ul {
    list-style: none;
    padding: 0;
}

.definition-section li {
    padding: 0.5rem 0;
    color: #666;
    border-left: 3px solid #fed25c;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.planning-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.planning-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.planning-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.planning-item h3 {
    color: #0078e3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.planning-item h3 i {
    font-size: 1.2rem;
}

.planning-item ul {
    list-style: none;
    padding: 0;
}

.planning-item li {
    padding: 0.3rem 0;
    color: #666;
}

.preparation-section {
    padding: 5rem 0;
    background: white;
}

.preparation-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.preparation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.preparation-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #0078e3;
}

.preparation-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preparation-item h3 i {
    color: #0078e3;
    font-size: 1.2rem;
}

.preparation-item ul {
    list-style: none;
    padding: 0;
}

.preparation-item li {
    padding: 0.3rem 0;
    color: #666;
    border-left: 2px solid #fed25c;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
}

.installation-process {
    padding: 5rem 0;
    background: #f8f9fa;
}

.installation-process h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.process-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.process-intro p {
    font-size: 1.1rem;
    color: #666;
}

.installation-tips {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.installation-tips h3 {
    color: #0078e3;
    margin-bottom: 1rem;
}

.installation-tips ul {
    list-style: none;
    padding: 0;
}

.installation-tips li {
    padding: 0.5rem 0;
    color: #666;
    border-left: 3px solid #fed25c;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.hardscape-examples {
    padding: 5rem 0;
    background: white;
}

.hardscape-examples h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.example-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid #0078e3;
}

.example-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.example-item h3 i {
    color: #0078e3;
    font-size: 1.2rem;
}

.professional-benefits {
    padding: 5rem 0;
    background: #f8f9fa;
}

.professional-benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.professional-benefits > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #fed25c;
}

.benefit-card i {
    font-size: 2rem;
    color: #0078e3;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Responsive Design for Hardscapes Sections */
@media (max-width: 768px) {
    .planning-grid {
        grid-template-columns: 1fr;
    }
    
    .preparation-content {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .definition-section li {
        padding-left: 0.5rem;
    }
    
    .preparation-item li {
        padding-left: 0.5rem;
    }
    
    .installation-tips li {
        padding-left: 0.5rem;
    }
}

/* Paver Installation-Specific Styles */
.paver-benefits {
    padding: 5rem 0;
    background: #f8f9fa;
}

.paver-benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.paver-benefits > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.cost-breakdown {
    padding: 5rem 0;
    background: white;
}

.cost-breakdown h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.cost-breakdown > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

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

.cost-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #0078e3;
}

.cost-item.total-cost {
    background: #0078e3;
    color: white;
    border-top: 4px solid #fed25c;
}

.cost-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cost-item.total-cost h3 {
    color: white;
}

.cost-item h3 i {
    font-size: 1.2rem;
}

.cost-range {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0078e3;
    margin-bottom: 0.5rem;
}

.cost-item.total-cost .cost-range {
    color: #fed25c;
}

.diy-tips {
    padding: 5rem 0;
    background: #f8f9fa;
}

.diy-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #fed25c;
}

.tip-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tip-item h3 i {
    color: #0078e3;
    font-size: 1.2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.professional-cta {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #0078e3;
}

.professional-cta h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.professional-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.common-challenges {
    padding: 5rem 0;
    background: white;
}

.common-challenges h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.challenge-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0078e3;
}

.challenge-item h3 {
    color: #0078e3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge-item h3 i {
    font-size: 1.2rem;
}

.challenge-item p {
    margin-bottom: 0.5rem;
}

.challenge-item p:last-child {
    margin-bottom: 0;
}

.maintenance-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.maintenance-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.maintenance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.maintenance-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0078e3;
}

.maintenance-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.maintenance-item h3 i {
    color: #0078e3;
    font-size: 1.2rem;
}

/* Responsive Design for Paver Installation Sections */
@media (max-width: 768px) {
    .cost-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-content {
        grid-template-columns: 1fr;
    }
    
    .cost-range {
        font-size: 1.3rem;
    }
}

/* Driveway-Specific Styles */
.driveway-importance {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.driveway-importance h2 {
    color: #333;
    margin-bottom: 1rem;
}

.driveway-importance p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.construction-elements {
    padding: 5rem 0;
    background: #f8f9fa;
}

.construction-elements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.element-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0078e3;
}

.element-item h3 {
    color: #0078e3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.element-item h3 i {
    font-size: 1.2rem;
}

.element-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.element-item li {
    padding: 0.3rem 0;
    color: #666;
    border-left: 2px solid #fed25c;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
}

.driveway-styles {
    padding: 5rem 0;
    background: white;
}

.driveway-styles h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.style-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid #fed25c;
}

.style-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.style-item h3 i {
    color: #0078e3;
    font-size: 1.2rem;
}

/* Responsive Design for Driveway Sections */
@media (max-width: 768px) {
    .elements-grid {
        grid-template-columns: 1fr;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .element-item li {
        padding-left: 0.5rem;
    }
    
    .driveway-importance p {
        font-size: 1rem;
    }
}

/* Pool Benefits Section */
.pool-benefits {
    padding: 80px 0;
    background: white;
}

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

.pool-benefits .section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.pool-benefits .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8faff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8f2ff;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 120, 227, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Pool Benefits */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

/* Firepit Benefits Section */
.firepit-benefits {
    padding: 80px 0;
    background: #f8faff;
}

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

.firepit-benefits .section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.firepit-benefits .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Firepit Materials Section */
.firepit-materials {
    padding: 80px 0;
    background: white;
}

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

.firepit-materials .section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.firepit-materials .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Construction Process Section */
.construction-process {
    padding: 80px 0;
    background: #f8faff;
}

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

.construction-process .section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.construction-process .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Firepit Sections */
@media (max-width: 768px) {
    .firepit-benefits,
    .firepit-materials,
    .construction-process {
        padding: 60px 0;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
}
