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

:root {
    --primary-color: #0066CC;
    --secondary-color: #003D99;
    --accent-color: #0066CC;
    --text-dark: #000;
    --text-light: #fff;
    --bg-light: #f5f5f5;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin-top: 70px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============= NAVIGATION BAR ============= */
.navbar {
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: none;
}

.nav-sections {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ============= HERO SECTION ============= */
.hero-section {
    position: relative;
    width: 100vw;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066CC 0%, #003D99 100%);
    margin-top: -80px;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    filter: brightness(0.9);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 25;
    pointer-events: auto;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset -20px -20px 40px rgba(0, 0, 0, 0.2), 
                inset 20px 20px 40px rgba(255, 255, 255, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-up 12s linear infinite backwards;
    z-index: 30;
    pointer-events: auto;
}

.bubble:hover {
    transform: scale(1.1);
    box-shadow: inset -20px -20px 40px rgba(0, 0, 0, 0.2), 
                inset 20px 20px 40px rgba(255, 255, 255, 0.5),
                0 30px 80px rgba(0, 0, 0, 0.4);
}

.bubble-1 {
    width: 100px;
    height: 100px;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    left: 25%;
    animation-delay: 3s;
}

.bubble-3 {
    width: 120px;
    height: 120px;
    left: 50%;
    animation-delay: 6s;
}

.bubble-4 {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-delay: 9s;
}

.bubble-5 {
    width: 110px;
    height: 110px;
    left: 85%;
    animation-delay: 1.5s;
}

@keyframes float-up {
    0% {
        bottom: -600px;
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 500px;
        opacity: 0;
    }
}

.bubble-content {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
}

.bubble-content::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.bubble-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    clip-path: circle(50%);
}

.hero-overlay {
    position: absolute;
    z-index: 40;
    text-align: center;
    color: white;
    top: 50%;   
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    opacity: 0.9;
}

.hero-logo-box {
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 35px;
    z-index: 50;
    position: relative;
    pointer-events: none;
}

.hero-cta-text {
    color: white;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-logo-box .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    pointer-events: auto;
    margin: 0;
}

.hero-logo-box .btn {
    padding: 16px 35px;
    font-size: 1.1rem;
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 50;
    position: relative;
    pointer-events: auto;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.hero-logo-box .btn::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-logo-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.hero-logo-box .btn:hover::after {
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

.cta-section {
    display: none;
}

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn:hover::after {
    width: 100%;
}

.btn-quote {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
}

.btn-call {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

/* ============= REVIEW MODAL ============= */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.review-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.review-modal-content {
    background: white;
    padding: 15px;
    border-radius: 12px;
    max-width: 650px;
    width: 90%;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-bubble-display {
    flex-shrink: 0;
}

.review-bubble-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: inset -10px -10px 30px rgba(0, 0, 0, 0.2),
                inset 10px 10px 30px rgba(255, 255, 255, 0.3),
                0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    position: relative;
}

.review-bubble-image::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
}

.review-bubble-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-text {
    flex: 1;
}

.review-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

.coverage-areas-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.coverage-area-item {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.coverage-area-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.coverage-area-item h3 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
}

.coverage-area-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ============= SECTIONS ============= */
.section {
    width: 100%;
    padding: 40px 30px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

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

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ============= SERVICES SECTION ============= */
.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-text {
    flex: 1;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.service-card i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.service-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-card p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-image {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* ============= ABOUT US SECTION ============= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

.about-text h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-text p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-text h4 {
    color: var(--secondary-color);
    margin: 18px 0 10px 0;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    margin-left: 0;
}

.about-list li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.stat {
    text-align: center;
}

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

.stat-label {
    color: #666;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============= FAQ SECTION ============= */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #b4c6ff 100%);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    background: white;
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 14px;
    animation: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============= FORMS ============= */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 9px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.2);
}

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

.required {
    color: #ff0000;
}

/* ============= CONTACT SECTION ============= */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%),
                url('https://th.bing.com/th/id/R.7ac6afb8544acc13fd0e40100d020e16?rik=boWuQcqSgZ1yBA&pid=ImgRaw&r=0');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.65);
    z-index: 1;
}

.contact-section .section-container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============= QUOTE MODAL ============= */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.quote-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.quote-modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #000;
}

.quote-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

/* ============= NOTIFICATION TOAST ============= */
.notification-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 25px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    max-width: 400px;
    animation: slideDown 0.4s ease, slideUp 0.4s ease 4.6s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -70%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideUp {
    to {
        opacity: 0;
        transform: translate(-50%, -70%);
    }
}

/* ============= FOOTER ============= */
.footer {
    background: #000;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.tagline {
    font-style: italic;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a {
    color: #fff;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 768px) {
    body {
        margin-top: 60px;
    }

    .navbar {
        padding: 0 15px;
    }

    .nav-container {
        flex-wrap: wrap;
        height: 60px;
    }

    .nav-logo {
        height: 55px;
    }

    .nav-sections {
        gap: 15px;
        font-size: 0.85rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hero-section {
        height: 300px;
        margin-top: -60px;
        padding-top: 60px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo {
        height: 80px;
        margin-bottom: 10px;
    }

    .hero-logo-box {
        padding: 8px 12px;
        margin-top: 20px;
    }

    .hero-cta-text {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-logo-box .cta-buttons {
        gap: 10px;
    }

    .hero-logo-box .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

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

    .section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .review-modal-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .bubble-1 { width: 70px; height: 70px; }
    .bubble-2 { width: 60px; height: 60px; }
    .bubble-3 { width: 80px; height: 80px; }
    .bubble-4 { width: 65px; height: 65px; }
    .bubble-5 { width: 75px; height: 75px; }

    .review-bubble-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 50px;
    }

    .navbar {
        padding: 0 10px;
    }

    .nav-container {
        height: 50px;
    }

    .logo-section {
        gap: 8px;
    }

    .nav-logo {
        height: 38px;
    }

    .company-name {
        display: none;
    }

    .nav-sections {
        gap: 10px;
        font-size: 0.75rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .hero-section {
        height: 250px;
        margin-top: -50px;
        padding-top: 50px;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-overlay {
        width: 95vw;
    }

    .hero-logo {
        height: 60px;
        margin-bottom: 8px;
    }

    .hero-logo-box {
        padding: 6px 10px;
        margin-top: 8px;
    }

    .hero-cta-text {
        font-size: 1.15rem;
        margin-bottom: 12px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        white-space: nowrap;
    }

    .hero-logo-box .cta-buttons {
        gap: 8px;
    }

    .hero-logo-box .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        gap: 8px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .services-content {
        gap: 12px;
    }

    .service-card {
        padding: 15px;
        flex-direction: column;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-image {
        width: 100%;
        height: 180px;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .faq-answer.active {
        max-height: 600px;
        padding: 12px;
    }

    .quote-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 8px;
    }

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

    .contact-card {
        padding: 15px;
    }

    .contact-card i {
        font-size: 1.8rem;
    }

    .contact-card h4 {
        font-size: 1rem;
    }

    .bubble-1 { width: 50px; height: 50px; }
    .bubble-2 { width: 45px; height: 45px; }
    .bubble-3 { width: 60px; height: 60px; }
    .bubble-4 { width: 50px; height: 50px; }
    .bubble-5 { width: 55px; height: 55px; }

    .review-modal-content {
        max-width: 90%;
        padding: 15px;
    }

    .coverage-area-item {
        padding: 12px;
        border-left-width: 3px;
    }

    .coverage-area-item h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .coverage-area-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .review-bubble-image {
        width: 100px;
        height: 100px;
    }

    .review-text p {
        font-size: 0.9rem;
    }
}

/* ============= REVIEW POPUP ============= */
.review-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    display: none;
    animation: slideIn 0.4s ease-out;
}

.review-popup.active {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px) translateY(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

.review-popup-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.review-popup-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.review-popup-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-popup-review {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-popup-review:hover {
    background: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.popup-later {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.popup-later:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.05);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .review-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .review-popup-content {
        max-width: 100%;
        padding: 20px;
    }

    .review-popup-content h3 {
        font-size: 1.1rem;
    }

    .review-popup-content p {
        font-size: 0.9rem;
    }

    .btn-popup-review {
        font-size: 0.9rem;
        padding: 11px 18px;
    }
}
