/* Elegant Paver Installation Page Styles */

/* Enhanced Hero Section */
.hero-elegant {
    position: relative;
    overflow: hidden;
}

.hero-elegant .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.75) 0%, rgba(0, 91, 181, 0.75) 100%);
}

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

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

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

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

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

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

.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-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
    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;
}

/* Enhanced Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    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;
}

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

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

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

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #fed25c 0%, #e9b949 100%);
    color: #1e293b;
    border: none;
    box-shadow: 0 10px 20px rgba(254, 210, 92, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(254, 210, 92, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.service-details::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%);
    pointer-events: none;
}

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

.service-text h2 {
    position: relative;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #1e293b;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0078e3 0%, #005bb5 100%);
    border-radius: 2px;
}

.service-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.2) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

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

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

.service-benefits {
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.benefit-item i {
    font-size: 2rem;
    color: #0078e3;
    background: rgba(0, 120, 227, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.benefit-item p {
    margin: 0;
    color: #64748b;
}

/* Installation Types Section */
.installation-types {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0078e3 0%, #005bb5 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.type-image {
    height: 180px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
    position: relative;
}

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

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

.type-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.type-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 120, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.type-price {
    display: inline-block;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 120, 227, 0.2);
}

.type-card:hover .type-icon {
    background: rgba(0, 120, 227, 0.2);
    transform: scale(1.1);
}

.type-icon i {
    font-size: 2rem;
    color: #0078e3;
}

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

.type-card p {
    color: #64748b;
    margin-bottom: 0;
    flex: 1;
}

/* Installation Process Section */
.installation-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.installation-process::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%);
    pointer-events: none;
}

.installation-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.process-intro p {
    color: #64748b;
    font-size: 1.2rem;
}

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

.process-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.process-image {
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative;
}

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

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

.process-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.process-number {
    position: absolute;
    top: 180px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 120, 227, 0.3);
    z-index: 2;
    border: 3px solid white;
}

.process-item h3 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.process-item ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.process-item ul li {
    color: #64748b;
    margin-bottom: 0.75rem;
    position: relative;
}

.process-item ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #0078e3;
    border-radius: 50%;
}

/* Cost Breakdown Section */
.cost-breakdown {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.cost-breakdown h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cost-breakdown > p {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.cost-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cost-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.cost-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.cost-item h3 i {
    color: #0078e3;
}

.cost-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0078e3;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #0078e3, #005bb5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cost-item p {
    color: #64748b;
    margin-bottom: 0;
}

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

.total-cost h3 {
    color: white;
}

.total-cost h3 i {
    color: #fed25c;
}

.total-cost .cost-range {
    color: white;
    background: linear-gradient(90deg, #fed25c, #e9b949);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.total-cost p {
    color: rgba(255, 255, 255, 0.8);
}

/* DIY Tips Section */
.diy-tips {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.diy-tips::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%);
    pointer-events: none;
}

.diy-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.tip-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.tip-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.tip-item h3 i {
    color: #e11d48;
}

.tip-item p {
    color: #64748b;
    margin-bottom: 0;
}

.professional-cta {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 120, 227, 0.2);
}

.professional-cta h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

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

.professional-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fed25c 0%, #e9b949 100%);
    color: #1e293b;
    border: none;
    box-shadow: 0 10px 20px rgba(254, 210, 92, 0.3);
}

.professional-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(254, 210, 92, 0.4);
}

/* Common Challenges Section */
.common-challenges {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

.common-challenges h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.challenge-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    height: 100%;
}

.challenge-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.challenge-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.challenge-item h3 i {
    color: #0078e3;
}

.challenge-item p {
    color: #64748b;
    margin-bottom: 1rem;
}

.challenge-item p strong {
    color: #1e293b;
    font-weight: 600;
}

/* Maintenance Section */
.maintenance-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.maintenance-section::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%);
    pointer-events: none;
}

.maintenance-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.maintenance-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.maintenance-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.maintenance-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.maintenance-item h3 i {
    color: #0078e3;
}

.maintenance-item p {
    color: #64748b;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.faq-item h3 {
    margin: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(0, 120, 227, 0.05) 0%, rgba(0, 120, 227, 0.1) 100%);
    color: #1e293b;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-content {
    padding: 1.5rem 2rem;
}

.faq-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content p strong {
    color: #1e293b;
    font-weight: 600;
}

/* Project Gallery */
.project-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.project-gallery::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%);
    pointer-events: none;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-caption {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-areas > p {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.area-item {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    color: #1e293b;
    font-weight: 500;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: white;
}

/* Enhanced CTA Section */
.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    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;
}

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

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

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem auto;
    max-width: 600px;
    transition: all 0.3s ease;
}

.satisfaction-guarantee:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fed25c 0%, #e9b949 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(254, 210, 92, 0.3);
}

.guarantee-icon i {
    font-size: 2rem;
    color: #1e293b;
}

.guarantee-text h3 {
    margin: 0 0 0.5rem;
    color: white;
    font-size: 1.3rem;
}

.guarantee-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

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

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fed25c 0%, #e9b949 100%);
    color: #1e293b;
    border: none;
    box-shadow: 0 10px 20px rgba(254, 210, 92, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(254, 210, 92, 0.4);
}

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

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .cost-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 80%;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-content {
        grid-template-columns: 1fr;
    }
    
    .professional-cta {
        padding: 2rem 1.5rem;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

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