:root {
    --primary-color: #2C5282;
    --secondary-color: #FF6B5A;
    --accent-color: #4A90E2;
    --dark-blue: #1A365D;
    --light-gray: #F7FAFC;
    --text-gray: #718096;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
}

.top-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.navbar {
    background-color: var(--primary-color) !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-contact {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #FF5A48;
    transform: translateY(-2px);
    color: white;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);

    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    height: 80vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 82, 130, 0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E2E8F0;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 15px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #FF5A48;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 90, 0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.contact-form {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 90, 0.2);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-form .btn {
    background: white;
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
}

.service-cards {
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

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

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

.service-card.featured {
    background: var(--secondary-color);
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card.featured h4 {
    color: white;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card.featured .service-icon {
    color: white;
}

.contact-form-large {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-large h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form-large .form-control {
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
}

.contact-form-large select.form-control {
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
}

.contact-form-large textarea.form-control {
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    resize: vertical;
}

.contact-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.working-hours {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
}

.working-hours h6 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.working-hours p {
    margin: 0;
    color: #A0AEC0;
    font-size: 14px;
}

.review-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stars i {
    color: #FFD700;
}

.reviewer img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

.navbar-scrolled {
    background-color: rgba(44, 82, 130, 0.95) !important;
    backdrop-filter: blur(10px);
}

.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes button-loading-spinner {
    from { transform: translate(-50%, -50%) rotate(0turn); }
    to { transform: translate(-50%, -50%) rotate(1turn); }
}

.navbar-toggler.active .navbar-toggler-icon {
    transform: rotate(90deg);
}

.contact-form-wrapper{
    z-index:1;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #28A745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 90, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 90, 0.6);
    background: #FF5A48;
}

.floating-call-btn i {
    color: white;
    font-size: 24px;
}

.floating-call-btn .call-text {
    position: absolute;
    right: 70px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-call-btn:hover .call-text {
    opacity: 1;
    transform: translateX(0);
}

.floating-call-btn .call-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

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

/* Emergency Section */
.emergency-banner {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: emergency-blink 1.5s infinite;
}

@keyframes emergency-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.emergency-phone {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.emergency-phone a {
    color: white;
    text-decoration: none;
}

.emergency-phone a:hover {
    color: #FFE5E5;
}

.emergency-badge {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}
/* Reusable utility classes */
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.bg-light-section {
    background-color: var(--light-gray);
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-phone-large {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.large-btn {
    padding: 15px 40px;
}

/* Process step styles */
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Pricing card styles */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E2E8F0;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item span {
    color: var(--text-gray);
}

.pricing-item strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.price-info {
    background: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}

/* Accordion styles */
.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-item {
    border: 1px solid #E2E8F0;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-body {
    background: white;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Service list styles */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Benefit card styles */
.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #FF8A7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.benefit-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Detailed service styles */
.detailed-service {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.detailed-service h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.detailed-service h3 i {
    color: var(--secondary-color);
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid #F7FAFC;
    position: relative;
    padding-left: 20px;
}

.service-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-details li:last-child {
    border-bottom: none;
}
    .contact-form h3{
        text-align: center;
    }

@media (max-width: 768px) {
    html, body{
        overflow-x: hidden;
    }
    .contact-form h3{
        font-size: unset !important;
    }
    .hero h1 {
        font-size: 2.2rem !important;
    }
    .hero {
        height: 100%;
        padding-bottom:20px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        display:flex;
    }

    .btn-primary-custom, .btn-secondary-custom {
        width: 100%;
        margin-right: 0 !important;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    .service-cards {
        margin-top: 20px;
    }
    /*#services{*/
    /*        margin-top: 100px;*/
    /*}*/
    /*.emergency-banner{*/
    /*    padding-top:340px;*/
    /*}*/
    
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-call-btn i {
        font-size: 20px;
    }
    
    .floating-call-btn .call-text {
        display: none;
    }
    
    .emergency-phone {
        font-size: 1.5rem !important;
    }
    
    .emergency-banner h2 {
        font-size: 1.8rem !important;
    }
    
    .emergency-banner p {
        font-size: 1rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}