:root {
    --primary-blue: #0D2F4B;
    --primary-orange: #F39C12;
    --secondary-blue: #3498DB;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-off-white: #F9FAFB;
    --whatsapp-green: #25D366;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--bg-light);
    padding: 7.5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.logo img {
    width: 150px;
    height: auto;
}

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

.logo-text strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 10px;
    color: var(--secondary-blue);
    letter-spacing: 0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1.25em;
    padding-bottom: 5px;
    position: relative;
}

nav a.active,
nav a:hover {
    color: var(--primary-orange);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-orange);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.emergency-btn {
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 12.5px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17.5px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Navigation Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 1999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: var(--primary-blue);
}

.mobile-nav-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: var(--primary-orange);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background-color: #f5f5f5;
    color: var(--primary-orange);
}

.mobile-nav-contact {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9fafb;
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.mobile-nav-phone:hover {
    background-color: #e08c0b;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    color: var(--text-light);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 47, 75, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-left: 100px;
    width: 100%;
}

.hero h1,
.hero h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s;
}

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

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper .swiper-button-next {
    right: 30px;
}

.hero-swiper .swiper-button-prev {
    left: 30px;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-section .subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

/* Services Section */
#services {
    background-color: var(--bg-off-white);
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-card a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 2px;
}

/* Reviews Section */
#reviews {
    background-color: #F5F5F5;
    padding: 40px 0;
}

#reviews h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-size: 36px;
}

.reviews-carousel-wrapper {
    margin-bottom: 60px;
}

.reviews-platform-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.reviews-carousel-wrapper .swiper {
    padding: 20px 50px;
    position: relative;
}

.review-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.review-summary-card {
    text-align: center;
}

.review-platform-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.review-platform-header i {
    font-size: 28px;
}

.review-platform-info {
    display: flex;
    flex-direction: column;
}

.review-platform-info strong {
    color: var(--text-dark);
    font-size: 16px;
}

.yell-logo {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.review-rating {
    margin: 20px 0;
}

.rating-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

.review-rating .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.review-rating .stars i {
    color: #FFD700;
    font-size: 20px;
}

/* Facebook reviews - override to Facebook blue */
.facebook-reviews-swiper .review-rating .stars i {
    color: #1877F2 !important;
}

.review-count {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.review-action-btn {
    background-color: #0D2F4B;
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.review-action-btn:hover {
    background-color: var(--primary-orange);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar i {
    font-size: 40px;
    color: #999;
}

.reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-info strong {
    color: var(--text-dark);
    font-size: 16px;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-stars i {
    color: #1877F2;
    font-size: 16px;
}

/* Facebook reviews - all stars should be Facebook blue */
.facebook-reviews-swiper .review-stars i,
.facebook-reviews-swiper .review-stars svg,
.facebook-reviews-swiper .review-stars path {
    color: #1877F2 !important;
    fill: #1877F2 !important;
}

.facebook-reviews-swiper .review-rating .stars i,
.facebook-reviews-swiper .review-rating .stars svg,
.facebook-reviews-swiper .review-rating .stars path {
    color: #1877F2 !important;
    fill: #1877F2 !important;
}

/* Yell reviews - keep gold/yellow stars */
.yell-reviews-swiper .review-stars i,
.yell-reviews-swiper .review-stars svg,
.yell-reviews-swiper .review-stars path {
    color: #FFD700 !important;
    fill: #FFD700 !important;
}

.yell-reviews-swiper .review-rating .stars i,
.yell-reviews-swiper .review-rating .stars svg,
.yell-reviews-swiper .review-rating .stars path {
    color: #FFD700 !important;
    fill: #FFD700 !important;
}

.review-headline {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    font-size: 15px;
}

.review-link {
    color: #1877F2;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.review-link:hover {
    text-decoration: underline;
}

.review-link i {
    font-size: 12px;
}

/* Reviews Swiper Navigation */
.reviews-carousel-wrapper .swiper-button-next,
.reviews-carousel-wrapper .swiper-button-prev {
    color: #666;
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.reviews-carousel-wrapper .swiper-button-next:hover,
.reviews-carousel-wrapper .swiper-button-prev:hover {
    background-color: var(--bg-light);
    color: var(--primary-orange);
}

.reviews-carousel-wrapper .swiper-button-next::after,
.reviews-carousel-wrapper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.reviews-carousel-wrapper .swiper-button-next {
    right: 0;
}

.reviews-carousel-wrapper .swiper-button-prev {
    left: 0;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0;
}

.guarantee-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guarantee-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon .fa-stack-1x {
    color: var(--primary-orange);
}

.guarantee-icon .fa-stack-2x {
    color: var(--secondary-blue);
}

.guarantee-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: #E0E0E0;
    padding-top: 60px;
}

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

.footer-content h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

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

.footer-map img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-map a:hover img {
    transform: scale(1.02);
}

.map-modal-content {
    max-width: 900px !important;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #B0B0B0;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 40px;
        padding-left: 100px;
    }
}

@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .header-contact {
        margin-left: auto;
    }

    .header-contact .emergency-btn {
        display: flex;
        padding: 10px 18px;
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-map {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 500px;
    }

    .hero-content {
        max-width: 100%;
        padding: 80px 20px;
        text-align: center;
    }

    .hero h1,
    .hero h2 {
        font-size: 36px;
        max-width: 100%;
    }

    .hero p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .hero-swiper .swiper-button-next {
        right: 15px;
    }

    .hero-swiper .swiper-button-prev {
        left: 15px;
    }

    .services-grid,
    .guarantee-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        font-size: 28px;
    }

    header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-text strong {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .logo img {
        width: 100px;
        height: auto;
    }

    .header-contact {
        margin-left: auto;
    }

    .header-contact .emergency-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 6px;
    }

    .reviews-carousel-wrapper .swiper {
        padding: 20px 40px;
    }

    .reviews-carousel-wrapper .swiper-button-next,
    .reviews-carousel-wrapper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .reviews-carousel-wrapper .swiper-button-next::after,
    .reviews-carousel-wrapper .swiper-button-prev::after {
        font-size: 14px;
    }

    #reviews h2 {
        font-size: 28px;
    }

    .reviews-platform-title {
        font-size: 20px;
    }
}

/* Contact Form Styles */
.contact-form-container {
    width: 100%;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--bg-off-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.emergency-info {
    padding: 30px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.95), rgba(243, 156, 18, 0.85));
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(243, 156, 18, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.emergency-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.emergency-info * {
    position: relative;
    z-index: 1;
}

.emergency-info h3 {
    color: white;
    margin-bottom: 12px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.emergency-info p {
    margin-bottom: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #27ae60;
    background: #f8fff8;
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    text-align: left;
}

/* Form Buttons Container - Stacked Layout */
.form-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 320px;
    margin: 0 auto;
}

/* Send Message Button - 20% larger */
.btn-send-message {
    padding: 18px 36px;
    font-size: 19.2px;
    width: 100%;
}

/* OR Divider with line */
.form-divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 15px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.divider-text {
    padding: 0 15px;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Now Button - Smaller, blue outline style */
.btn-contact-now {
    background-color: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-contact-now:hover {
    background-color: var(--secondary-blue);
    color: white;
}

.btn-contact-now i {
    font-size: 14px;
}

.emergency-info .btn {
    background: white;
    color: var(--primary-orange);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.emergency-info .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
}

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

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
    display: none;
    font-weight: 500;
    text-align: left;
}

/* Guarantee Section Styling */
.guarantee-section {
    background-color: #f5f5f5;
    padding: 40px 0;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .emergency-info {
        padding: 30px 20px;
        margin: 20px 0;
    }

    .emergency-info h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .emergency-info p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .emergency-info .btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    user-select: none;
}

.project-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background-color: white;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    width: 90vw;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: none;
    background-color: var(--secondary-blue);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.project-carousel {
    width: 100%;
    height: 100%;
}

.project-swiper {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

.project-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.project-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
}

.project-swiper .swiper-button-next,
.project-swiper .swiper-button-prev {
    color: var(--primary-orange);
    background-color: var(--secondary-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: -30px;
    opacity: 0.9;
    transition: all 0.3s ease;
    outline: none;
}

.project-swiper .swiper-button-next:hover,
.project-swiper .swiper-button-prev:hover {
    background-color: var(--primary-orange);
    color: var(--secondary-blue);
    opacity: 1;
    transform: scale(1.1);
}

.project-swiper .swiper-button-next::after,
.project-swiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 900;
}

.project-swiper .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.7;
}

.project-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        height: 80vh;
        border-radius: 8px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .project-swiper .swiper-button-next,
    .project-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .project-swiper .swiper-button-next::after,
    .project-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-contact .emergency-btn {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 5px;
    }

    .modal-content {
        width: 98vw;
        height: 75vh;
    }

    .modal-header {
        padding: 10px 15px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-close {
        top: 8px;
        right: 12px;
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
}

/* Demo Mode Email Modal */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.demo-modal.active {
    display: flex;
}

.demo-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.demo-modal-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 20px 30px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-modal-header h2 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.demo-modal-close:hover {
    color: var(--primary-orange);
}

.demo-modal-body {
    padding: 30px;
    overflow-y: auto;
    font-size: 15px;
    color: #444;
}

.email-preview {
    background-color: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    font-family: monospace;
    white-space: pre-wrap;
}

.demo-note {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #ffeeba;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Glassix WhatsApp Widget Customization */
.glassix-whatsapp-header {
    background-color: var(--primary-orange) !important;
    background-image: url("https://cdn.glassix.com/content/images/svg-pattern-2.svg"),
        linear-gradient(65.68deg, var(--primary-orange) 19.27%, var(--primary-orange) 100%) !important;
}

.glassix-whatsapp-widget {
    background-color: #25D366 !important;
    /* Original WhatsApp Green */
}

/* Ensure the main bubble icon stays white on the green background */
.glassix-whatsapp-widget-icon svg path {
    fill: #FFFFFF !important;
}

.glassix-whatsapp-powered-by {
    background-color: var(--primary-blue) !important;
}

/* Emergency Item Styling (2nd item) */
.glassix-whatsapp-number:nth-of-type(2) {
    border-left: 4px solid #ff0000 !important;
}

.glassix-whatsapp-number:nth-of-type(2) .glassix-card-logo-wrapper svg path {
    fill: #ff0000 !important;
}

/* Contact Options Modal Styling */
.contact-options-content {
    max-width: 450px !important;
}

.contact-options-body {
    padding: 30px !important;
}

.contact-options-body p {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.contact-options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border: 1px solid #e1e4e8;
    gap: 15px;
}

.contact-option-card:hover {
    background: #fff;
    border-color: var(--primary-orange);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-option-card i {
    font-size: 24px;
    width: 32px;
    text-align: center;
    color: var(--primary-orange);
}

.contact-option-card.whatsapp i {
    color: #25D366;
}

.contact-option-info {
    display: flex;
    flex-direction: column;
}

.contact-option-info span {
    font-size: 13px;
    color: #777;
    margin-bottom: 2px;
}

.contact-option-info strong {
    font-size: 17px;
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-options-close:hover {
    color: var(--primary-orange);
}

/* Map Radius Animation */
.map-container {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.pulsating-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 1 / 1;
    background-color: rgba(243, 156, 18, 0.15);
    border: 3px solid rgba(243, 156, 18, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
    animation: pulsate-radius 3s infinite ease-in-out;
    pointer-events: none;
    z-index: 10;
}

@keyframes pulsate-radius {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
        background-color: rgba(243, 156, 18, 0.15);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
        box-shadow: 0 0 30px 5px rgba(243, 156, 18, 0.3);
        background-color: rgba(243, 156, 18, 0.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
        background-color: rgba(243, 156, 18, 0.15);
    }
}

/* Footer Areas Covered */
.footer-areas {
    background-color: #1a4669;
    /* Slightly lighter than primary blue */
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-areas h4 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.areas-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color: #BDC3C7;
    font-size: 13px;
    line-height: 2.2;
}

.areas-list span {
    display: inline-block;
}

.areas-list span:not(:last-child)::after {
    content: "•";
    margin: 0 10px;
    color: var(--primary-orange);
    font-weight: bold;
}