/* Form Validation Styling */
.error-input {
    border: 2px solid #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
}

.error-input::placeholder {
    color: #e74c3c !important;
}

/* Emergency Call Button */
#emergency-call {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 999;
    transition: var(--transition);
}

#emergency-call:hover {
    transform: scale(1.1);
    background-color: #c0392b;
}

#emergency-call i {
    font-size: 1.5rem;
}

/* Booking Sticky Button */
.booking-sticky {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 998;
    text-align: center;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-3px);
}

/* Global Styles */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #f5c542;
    --accent-color: #3fb0ac;
    --text-dark: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scroll-timeline-axis: block;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button, 
input, 
select, 
textarea {
    font-family: inherit;
}

section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--primary-color);
    left: 25%;
    bottom: -10px;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.how-it-works .section-title p {
    color: #b4b4b4;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

/* Header & Navigation */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: headerSlideDown 0.8s ease-out;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    z-index: 1000;
    transition: background 0.3s ease;
}

/* Dropdown Menu */
.nav-links ul li.dropdown {
    position: relative;
}

.nav-links ul li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.nav-links ul li.dropdown .dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background 0.3s ease;
    font-size: 14px;
}

.nav-links ul li.dropdown .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #4a90e2 !important;
}

.nav-links ul li.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .nav-links ul li.dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.1);
        width: 100%;
        border-radius: 0;
    }
    
    .nav-links ul li.dropdown .dropdown-content a {
        color: #fff !important;
        padding-left: 30px;
    }
    
    .nav-links ul li.dropdown .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff !important;
    }
}

header.scrolled nav {
    padding: 15px 50px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

@keyframes navItemFadeIn {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    animation: navItemFadeIn 0.5s ease-out backwards;
}

.nav-links ul li:nth-child(1) { animation-delay: 0.3s; }
.nav-links ul li:nth-child(2) { animation-delay: 0.4s; }
.nav-links ul li:nth-child(3) { animation-delay: 0.5s; }
.nav-links ul li:nth-child(4) { animation-delay: 0.6s; }
.nav-links ul li:nth-child(5) { animation-delay: 0.7s; }
.nav-links ul li:nth-child(6) { animation-delay: 0.8s; }

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links .contact-btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.nav-links .contact-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.nav-links .contact-btn::before {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.4);
}

/* Showcase Section - Mobile First */
.showcase {
    padding: 60px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M0 0L60 60M60 0L0 60" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-title .subtitle {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.showcase-grid {
    display: grid;
    gap: 25px;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-content {
    padding: 25px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.25);
}

.showcase-icon i {
    font-size: 28px;
    color: white;
}

#service, #time {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.763L10.825 4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding: 10px 30px 10px 15px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: white;
    width: 100%;
    transition: border-color 0.3s ease;
}

#service:focus, #time:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

#service option, #time option {
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    background-color: white;
}

#service option:hover, #time option:hover,
#service option:focus, #time option:focus {
    background-color: var(--primary-color);
    color: white;
}

.service-title h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin: 0 0 5px;
    font-weight: 600;
}

.service-tag {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.service-features {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(74, 144, 226, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:active {
    background: rgba(74, 144, 226, 0.08);
    transform: scale(0.98);
}

.feature-item i {
    color: #2ecc71;
    font-size: 16px;
}

.feature-item span {
    color: var(--text-light);
    font-size: 15px;
}

/* Mobile-optimized button styles */
.showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ripple effect for touch feedback */
.showcase-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    padding-bottom: 120%;
    border-radius: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.3s;
    pointer-events: none;
}

.showcase-btn span {
    position: relative;
    z-index: 1;
    margin-right: auto;
}

.showcase-btn i {
    position: relative;
    z-index: 1;
    font-size: 18px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 8px;
}

/* Active state for touch devices */
.showcase-btn:active {
    transform: scale(0.97) translateY(2px);
    background: #3a7bc8;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.15);
}

.showcase-btn:active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0s;
}

.showcase-btn:active i {
    transform: translateX(4px);
}

/* Desktop hover effects */
@media (hover: hover) {
    .showcase-btn {
        cursor: pointer;
    }

    .showcase-btn:hover {
        background: #3a7bc8;
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3),
                    inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

    .showcase-btn:hover i {
        transform: translateX(4px);
    }
}

/* Tablet and larger */
@media (min-width: 768px) {
    .showcase {
        padding: 80px 20px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }

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

    .feature-item:hover {
        background: rgba(74, 144, 226, 0.08);
    }

    .showcase-btn:hover {
        background: #3a7bc8;
    }

    .showcase-btn:hover i {
        transform: translateX(5px);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .showcase-content {
        padding: 30px;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 60px 15px;
    background: var(--bg-light);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
    padding: 0 15px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: white;
    color: var(--text-light);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.portfolio-grid {
    display: grid;
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1.275);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-overlay h3 {
    font-size: 18px;
    margin: 0 0 5px;
}

.portfolio-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.portfolio-overlay .tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Portfolio hover effects */
.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Portfolio responsive */
@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio {
        padding: 80px 20px;
    }
}

/* Tablet and larger */
@media (min-width: 768px) {
    .showcase {
        padding: 60px 20px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .showcase-content {
        padding: 30px 25px;
    }

    .showcase-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .showcase-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
}

/* Emergency Call Button - Mobile First */
@keyframes ringing {
    0% {
        transform: rotate(0) scale(1);
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
    }
    15% {
        transform: rotate(-15deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 68, 68, 0.3);
    }
    30% {
        transform: rotate(15deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 68, 68, 0.3);
    }
    45% {
        transform: rotate(-15deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 68, 68, 0.3);
    }
    60% {
        transform: rotate(15deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 68, 68, 0.3);
    }
    75% {
        transform: rotate(-15deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 68, 68, 0.3);
    }
    85% {
        transform: rotate(15deg) scale(1.05);
        box-shadow: 0 5px 14px rgba(255, 68, 68, 0.25);
    }
    100% {
        transform: rotate(0) scale(1);
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

#emergency-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff4444;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
    z-index: 1000;
    animation: ringing 2s infinite;
    transition: all 0.3s ease;
}

#emergency-call::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ff4444;
    animation: pulse 2s infinite;
    z-index: -1;
}

#emergency-call:hover {
    background-color: #ff0000;
    transform: scale(1.1);
    animation: none;
}

#emergency-call:hover::before {
    animation: none;
}

#emergency-call i {
    font-size: 24px;
    animation: none;
}

#emergency-call:active {
    background-color: #c0392b;
    transform: scale(0.95);
}

/* Ensure button stays visible on all screen sizes */
@media screen and (max-width: 768px) {
    #emergency-call {
        bottom: 15px;
        right: 15px;
    }
}

/* Larger screens */
@media screen and (min-width: 769px) {
    #emergency-call {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
    }

    #emergency-call i {
        font-size: 24px;
    }

    #emergency-call:hover {
        background-color: #c0392b;
        transform: scale(1.1);
    }
}

.call-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-call-btn:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
}

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

.floating-call-btn-wrapper {
    animation: float 3s ease-in-out infinite;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(245, 197, 66, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 20px;
    border: 2px dashed var(--secondary-color);
}

.emergency-badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.emergency-badge a {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    overflow: visible;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.custom-logo {
    position: relative;
    width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 800px;
    animation: floatLogo 8s ease-in-out infinite;
}

.custom-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.custom-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
}

@keyframes floatLogo {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(5px) rotate(-1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.house-roof {
    position: absolute;
    width: 280px;
    height: 100px;
    background: linear-gradient(135deg, #4a90e2 0%, #2970b8 100%);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    z-index: 2;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.house-roof::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    bottom: 0;
    left: 0;
}

.house-body {
    position: absolute;
    top: 90px;
    width: 240px;
    height: 130px;
    background: linear-gradient(180deg, #4a90e2 0%, #3a7bc8 100%);
    left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    gap: 10px;
    z-index: 1;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.house-window {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 6px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.house-window::before, .house-window::after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.house-window::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.house-window::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.tool-item {
    position: absolute;
    color: white;
    font-size: 20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: scale(1.2) rotate(0deg) !important;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tool-item.hammer {
    top: 25px;
    left: 35px;
    transform: rotate(-15deg);
}

.tool-item.hammer i {
    font-size: 22px;
    color: #ff7f00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool-item.drill {
    bottom: 30px;
    left: 35px;
    transform: rotate(10deg);
}

.tool-item.drill i {
    font-size: 18px;
    color: #ff7f00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool-item.saw {
    top: 25px;
    right: 35px;
    transform: rotate(15deg);
}

.tool-item.saw i {
    font-size: 22px;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool-item.helmet {
    bottom: 30px;
    right: 35px;
    transform: rotate(-10deg);
}

.tool-item.helmet i {
    font-size: 22px;
    color: #ff7f00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.logo-text p {
    font-size: 1rem;
    color: #222;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}

.logo-text p::before,
.logo-text p::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background: #b85c38;
    top: 50%;
    transform: translateY(-50%);
}

.logo-text p::before {
    left: -40px;
}

.logo-text p::after {
    right: -40px;
}

.orbit-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.orbit-icon:hover {
    transform: scale(1.3) !important;
    z-index: 10;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.5);
    border-color: rgba(74, 144, 226, 0.5);
    animation-play-state: paused;
}

.orbit-icon i {
    font-size: 24px;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.orbit-icon:hover i {
    transform: scale(1.1) rotate(10deg);
    color: #2970b8;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transform: scale(1) translateY(0);
    }
    50% {
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
        transform: scale(1.1) translateY(-5px) rotate(5deg);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transform: scale(1) translateY(0);
    }
}

/* Fixed positions for orbit icons */
.orbit-icon {
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}

/* Assign different starting positions and animations */
.orbit-icon.electrician {
    transform: rotate(0deg) translateX(300px) rotate(0deg);
    animation: revolve 30s linear infinite;
}

.orbit-icon.plumber {
    transform: rotate(45deg) translateX(300px) rotate(-45deg);
    animation: revolve 32s ease-in-out infinite 3.75s reverse;
}

.orbit-icon.cleaning {
    transform: rotate(90deg) translateX(300px) rotate(-90deg);
    animation: revolve 28s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite 7.5s;
}

.orbit-icon.painting {
    transform: rotate(135deg) translateX(300px) rotate(-135deg);
    animation: revolve 34s ease infinite 11.25s;
}

.orbit-icon.ac {
    transform: rotate(180deg) translateX(300px) rotate(-180deg);
    animation: revolve 30s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 15s reverse;
}

.orbit-icon.tools {
    transform: rotate(225deg) translateX(300px) rotate(-225deg);
    animation: revolve 36s ease-in-out infinite 18.75s;
}

.orbit-icon.gardening {
    transform: rotate(270deg) translateX(300px) rotate(-270deg);
    animation: revolve 33s linear infinite 22.5s;
}

.orbit-icon.appliance {
    transform: rotate(315deg) translateX(300px) rotate(-315deg);
    animation: revolve 30s linear infinite 26.25s;
}

@keyframes revolve {
    0% {
        transform: rotate(0deg) translateX(300px) rotate(0deg);
    }
    25% {
        transform: rotate(90deg) translateX(310px) rotate(-90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) translateX(300px) rotate(-180deg);
    }
    75% {
        transform: rotate(270deg) translateX(310px) rotate(-270deg) scale(0.9);
    }
    100% {
        transform: rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

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

/* Booking Sticky */
.booking-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.booking-sticky.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Why Choose Us Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
}

/* How It Works Section */
@keyframes neon-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes neon-title-pulse {
    0% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
    50% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
    100% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
}

.how-it-works {
    background: #0c0c0c !important;
    padding: 80px 0;
    position: relative;
}

.how-it-works h3 {
    color: #fff;
    margin: 15px 0;
    font-size: 1.5rem;
    text-shadow: 0 0 5px #4df7ff, 0 0 10px #4df7ff;
    font-weight: 500;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(74, 144, 226, 0.2);
    z-index: 1;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(77, 247, 255, 0.2);
    margin: 10px;
    cursor: pointer;
    padding: 0 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(77, 247, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 2px solid rgba(77, 247, 255, 0.5);
    text-shadow: 0 0 10px #4df7ff, 0 0 20px #4df7ff;
    animation: neon-pulse 1.5s ease-in-out infinite;
    position: relative;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 5px #4df7ff;
    font-weight: 500;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step p {
    color: #b4b4b4;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: rgba(74, 144, 226, 0.1);
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #ffc107;
    margin-right: 3px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.trust-item {
    text-align: center;
    padding: 25px;
    flex: 1;
    margin: 0 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-item.highlight {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.trust-item.highlight:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

.trust-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.trust-icon i {
    font-size: 28px;
    color: white;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    background: var(--primary-color);
}

.shield-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(10px);
    opacity: 0.5;
    animation: glow 2s infinite alternate;
}

.trust-item .trust-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    text-transform: uppercase;
    display: block;
}

.trust-item span {
    font-size: 14px;
    color: #555;
    display: block;
    margin: 8px 0;
    position: relative;
    padding-left: 5px;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: scale(0.8);
    }
    to {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Response Indicator */
.response-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
    opacity: 0.5;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.response-indicator p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.response-indicator .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.status-text {
    color: #22c55e !important;
    font-size: 14px !important;
    font-weight: 500;
}

/* Service Area Section */
.service-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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



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

#service-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f0f0f0;
    position: relative;
    z-index: 1;
}

/* Essential Leaflet map styles */
.leaflet-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.leaflet-control-container .leaflet-control {
    margin: 10px;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
}

.leaflet-control-geocoder {
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
}

.leaflet-control-geocoder-form input {
    font-size: 14px;
    padding: 8px;
    width: 300px;
    border: none;
    outline: none;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 10px;
}

.leaflet-popup-content {
    margin: 8px;
    font-family: 'Poppins', sans-serif;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.color-dot.immediate { background-color: #22c55e; }
.color-dot.standard { background-color: #3b82f6; }
.color-dot.extended { background-color: #f59e0b; }

.legend-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

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

.area-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.area-search {
    margin-bottom: 25px;
}

.area-search input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.area-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.check-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-btn:hover {
    background: #1a56db;
    transform: translateY(-2px);
}

.service-stats {
    margin-top: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.stat-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.stat-text {
    flex: 1;
}

.stat-text h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 5px;
}

.stat-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
    }

    .map-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #service-map {
        height: 300px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.contact .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c3e50;
}

.contact .section-title h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #007bff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.booking-form form {
    display: grid;
    gap: 24px;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group input::placeholder {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.form-group input:hover::placeholder {
    color: #007bff;
}

.form-group select {
    padding-right: 40px;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%232c3e50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

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

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #007bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-group select:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.form-group:hover {
    transform: translateY(-2px);
}

.form-group label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 15px;
    transition: color 0.3s ease;
}

.form-group:hover label {
    color: #007bff;
}

.booking-form button {
    width: 100%;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    margin-top: 16px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    overflow: hidden;
}

.booking-form button::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: all 0.5s ease;
}

.booking-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.booking-form button:hover::before {
    left: 100%;
}

.booking-form button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}



.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    transform-origin: left;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none;
    margin-bottom: 5px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label {
    animation: label-focus 0.3s forwards;
    transform: translateY(-5px) scale(0.95);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #4ECDC4, #FF9F4A);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.4);
}

.submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.whatsapp-button {
    margin-top: 20px;
    text-align: center;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-button a i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.whatsapp-button a:hover {
    background-color: #1da851;
    transform: translateY(-3px);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p a {
    color: var(--primary-color);
    font-weight: 500;
}

.emergency-contact {
    grid-column: span 2;
    background-color: rgba(245, 197, 66, 0.15);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    border: 2px dashed var(--secondary-color);
}

.emergency-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-contact h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.emergency-contact p {
    margin-bottom: 15px;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.emergency-btn i {
    margin-right: 8px;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: #a7b5c5;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: #a7b5c5;
    transition: var(--transition);
}

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

.footer-contact p {
    color: #a7b5c5;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #a7b5c5;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .steps::before {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Tablet orbit adjustments */
    .orbit {
        width: 450px;
        height: 450px;
    }
    
    .orbit-icon {
        width: 50px;
        height: 50px;
    }
    
    .orbit-icon.electrician {
        transform: rotate(0deg) translateX(225px) rotate(0deg);
    }
    
    .orbit-icon.plumber {
        transform: rotate(45deg) translateX(225px) rotate(-45deg);
    }
    
    .orbit-icon.cleaning {
        transform: rotate(90deg) translateX(225px) rotate(-90deg);
    }
    
    .orbit-icon.painting {
        transform: rotate(135deg) translateX(225px) rotate(-135deg);
    }
    
    .orbit-icon.ac {
        transform: rotate(180deg) translateX(225px) rotate(-180deg);
    }
    
    .orbit-icon.tools {
        transform: rotate(225deg) translateX(225px) rotate(-225deg);
    }
    
    .orbit-icon.gardening {
        transform: rotate(270deg) translateX(225px) rotate(-270deg);
    }
    
    .orbit-icon.appliance {
        transform: rotate(315deg) translateX(225px) rotate(-315deg);
    }
    
    @keyframes revolve {
        0% {
            transform: rotate(0deg) translateX(225px) rotate(0deg);
        }
        25% {
            transform: rotate(90deg) translateX(230px) rotate(-90deg) scale(1.1);
        }
        50% {
            transform: rotate(180deg) translateX(225px) rotate(-180deg);
        }
        75% {
            transform: rotate(270deg) translateX(230px) rotate(-270deg) scale(0.9);
        }
        100% {
            transform: rotate(360deg) translateX(225px) rotate(-360deg);
        }
    }
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        padding: 15px;
        margin: 0 15px 30px;
    }
    
    .trust-item {
        margin: 10px 0;
        padding: 20px;
    }
    
    .trust-item .trust-title {
        font-size: 18px;
    }
    
    .trust-item span {
        font-size: 13px;
        text-align: left;
        padding-left: 20px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon i {
        font-size: 24px;
    }

    /* Emergency call and booking button adjustments */
    #emergency-call {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
        z-index: 1002;
    }

    .booking-sticky {
        padding: 8px 15px;
        z-index: 1001;
        bottom: 10px;
    }

    .sticky-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    /* Logo adjustments for mobile */
    .logo h1 {
        font-size: 1.5rem;
    }

    nav {
        padding: 10px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        z-index: 1003;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    #open-menu, #close-menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-dark);
    }

    #open-menu {
        margin-right: 15px;
    }

    #close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1004;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .emergency-contact {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Mobile-friendly orbit adjustments */
    .orbit {
        width: 320px;
        height: 320px;
    }
    
    .orbit-icon {
        width: 40px;
        height: 40px;
    }
    
    .orbit-icon i {
        font-size: 18px;
    }
    
    .orbit-icon.electrician {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }
    
    .orbit-icon.plumber {
        transform: rotate(45deg) translateX(160px) rotate(-45deg);
    }
    
    .orbit-icon.cleaning {
        transform: rotate(90deg) translateX(160px) rotate(-90deg);
    }
    
    .orbit-icon.painting {
        transform: rotate(135deg) translateX(160px) rotate(-135deg);
    }
    
    .orbit-icon.ac {
        transform: rotate(180deg) translateX(160px) rotate(-180deg);
    }
    
    .orbit-icon.tools {
        transform: rotate(225deg) translateX(160px) rotate(-225deg);
    }
    
    .orbit-icon.gardening {
        transform: rotate(270deg) translateX(160px) rotate(-270deg);
    }
    
    .orbit-icon.appliance {
        transform: rotate(315deg) translateX(160px) rotate(-315deg);
    }
    
    @keyframes revolve {
        0% {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }
        25% {
            transform: rotate(90deg) translateX(165px) rotate(-90deg) scale(1.1);
        }
        50% {
            transform: rotate(180deg) translateX(160px) rotate(-180deg);
        }
        75% {
            transform: rotate(270deg) translateX(165px) rotate(-270deg) scale(0.9);
        }
        100% {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }
    
    .logo-text h2 {
        font-size: 2.5rem;
    }
    
    .house-logo {
        width: 220px;
        height: 180px;
    }
    
    .house-roof {
        width: 220px;
        height: 80px;
    }
    
    .house-body {
        width: 190px;
        height: 110px;
        left: 15px;
    }
}

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

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

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

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

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

.animate-slideInLeft {
    animation: slideInLeft 1s ease forwards;
}

.animate-slideInRight {
    animation: slideInRight 1s ease forwards;
}

.animate-slideInUp {
    animation: slideInUp 1s ease forwards;
}

/* Custom Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(74, 144, 226, 0.2);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.booking-form .loading {
    border: 5px solid rgba(74, 144, 226, 0.2);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
