/* New Screenshot CSS Overhaul */
:root {
    --primary-navy: #1F3255;
    --primary-teal: #2EAEB6;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 90px 0;
}

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

h1,
h2,
h3,
h4 {
    color: var(--primary-navy);
    font-weight: 700;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

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

.section-title span {
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.2rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

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

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

/* Header */
.top-bar {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 0.9rem;
    background-color: #24959c;
    color: var(--white)
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    padding: 0;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    font-weight: 600;
    color: var(--primary-navy);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-navy);
}

/* Hero Slider Clone */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--primary-navy);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 50, 85, 0.7);
    /* Navy overlay */
}

.slider-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.5s;
    padding-bottom: 80px;
    /* Space for the overlapping form */
}

.slide.active .slider-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-content h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slider-content h1 {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.slider-content p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-nav {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-teal);
    transform: scale(1.3);
}

/* Overlapping Estimate Form */
.estimate-form-wrapper {
    position: absolute;
    bottom: -60px;
    /* Overlaps bottom edge */
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 20px;
}

.estimate-form-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--primary-navy);
    /* Replaced bright blue with Navy Blue */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    position: relative;
}

.form-header {
    background-color: var(--primary-teal);
    /* Accent header */
    padding: 20px 40px;
    position: relative;
}

.form-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.watermark-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.estimate-inline-form {
    display: flex;
    padding: 30px 40px;
    gap: 15px;
    background-color: var(--primary-navy);
}

.estimate-inline-form input,
.estimate-inline-form select {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-dark);
}

.estimate-inline-form input:focus,
.estimate-inline-form select:focus {
    outline: 2px solid var(--primary-teal);
}

.btn-submit {
    background-color: var(--primary-teal);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background-color: #24959c;
}

/* About */
.about {
    padding-top: 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-md);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.exp-badge h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0;
}

.exp-badge span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.about-text h4 {
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    text-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-teal);
    box-shadow: var(--shadow-hover);
}

.service-img {
    position: relative;
    height: 220px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-navy);
}

.service-content {
    padding: 45px 20px 30px;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    border-top: 2px dashed #ddd;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background-color: var(--primary-navy);
}

/* Gallery Fullwidth */
.gallery-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.gallery-row img {
    width: 25%;
    height: 250px;
    object-fit: cover;
}

/* Choose Us */
.choose-us {
    padding: 80px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-text ul {
    margin-top: 20px;
}

.choose-text li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.choose-text i {
    color: var(--primary-teal);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.choose-imgs {
    display: flex;
    gap: 20px;
}

.choose-imgs img {
    width: 50%;
    border-radius: 50%;
    border: 10px solid var(--bg-light);
    object-fit: cover;
    aspect-ratio: 1;
}

.choose-imgs img:nth-child(2) {
    transform: translateY(40px);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Choose Us Modern */
.choose-us-modern {
    background-color: var(--primary-navy);
    color: var(--white);
}

.choose-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-modern-content .sub-title {
    color: var(--primary-teal);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.choose-modern-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.choose-modern-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.choose-modern-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.choose-modern-list li {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.choose-modern-list li i {
    color: var(--primary-teal);
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-orange {
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.btn-orange:hover {
    background-color: #24959c;
    transform: translateY(-2px);
    color: var(--white);
}

.choose-modern-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background-color: #273A5C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: #2D4268;
}

.stat-card i {
    color: var(--primary-teal);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat-card p {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin: 0;
}

/* Banner Strip */
.contact-strip {
    background-color: var(--primary-teal);
    padding: 40px 0;
    text-align: center;
    color: var(--white);
}

.contact-strip h2 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer p,
.footer a {
    color: #a1a1aa;
}

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

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

.footer-contact p {
    display: flex;
    margin-bottom: 10px;
}

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

.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    background-color: #111827;
    padding: 20px 0;
    text-align: center;
}

/* Inner pages generic */
.page-header {
    background: var(--primary-navy);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #ccc;
}

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

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-teal);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.contact-info-boxes {
    display: grid;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-right: 20px;
    margin-top: 5px;
}

.info-box h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.info-box p {
    margin: 0;
    color: var(--text-muted);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 50px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .estimate-inline-form {
        flex-wrap: wrap;
    }

    .estimate-inline-form input,
    .estimate-inline-form select {
        flex: 1 1 45%;
    }

    .btn-submit {
        flex: 1 1 100%;
    }

    .slider-content h1 {
        font-size: 3.5rem;
    }

    .hero-grid,
    .about-grid,
    .choose-grid,
    .choose-modern-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .gallery-row img {
        width: 50%;
    }

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

/* Locations Section */
.locations-section {
    background-color: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background-color: var(--primary-navy);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--primary-teal);
}

.location-header {
    padding: 20px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.location-header i {
    color: var(--primary-teal);
    margin-right: 15px;
    font-size: 1.3rem;
}

.location-map-wrap iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-navy);
    color: var(--white);
}

.testimonials-section .section-title h2 {
    color: var(--white);
}

.testimonials-section .section-title span {
    color: var(--primary-teal);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

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

.testimonial-card {
    background-color: #273A5C;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3b82f6;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
}

.author-avatar.purple {
    background-color: #8b5cf6;
}

.author-info h4 {
    color: var(--white);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .estimate-inline-form {
        flex-direction: column;
    }

    .estimate-inline-form input,
    .estimate-inline-form select {
        flex: 1 1 100%;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .estimate-form-wrapper {
        bottom: -120px;
    }

    .about {
        padding-top: 150px;
    }

    .hero-grid,
    .about-grid,
    .choose-grid,
    .contact-grid {
        gap: 30px;
    }

    .choose-modern-list {
        grid-template-columns: 1fr;
    }
    
    .choose-modern-stats {
        grid-template-columns: 1fr;
    }
    
    .choose-modern-content h2 {
        font-size: 2.2rem;
    }

    /* Adjust about padding to compensate for taller form */
    .services-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .locations-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .gallery-row img {
        width: 100%;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }
}

/* Sticky Contact Buttons */
.sticky-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.sticky-call {
    left: 20px;
    background-color: var(--primary-teal);
}

.sticky-call:hover {
    background-color: #24959c;
}

.sticky-whatsapp {
    right: 20px;
    background-color: #25D366;
}

.sticky-whatsapp:hover {
    background-color: #1ebe57;
}

@media (max-width: 768px) {
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
    }
}

/* Video Section */
.video-section {
    background-color: var(--bg-light);
}

.pill-badge {
    display: inline-block;
    background-color: rgba(46, 174, 182, 0.1);
    color: var(--primary-teal);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    width: 100%;
}

/* 9:16 Aspect Ratio for Shorts */
.video-wrapper.shorts {
    padding-bottom: 177.77%; 
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}