:root {
    --primary-color: #218597;
    --secondary-color: #1a6a7a;
    --accent-color: #ff9800;
    --text-color: #2b2b2b;
    --light-bg: #f0f8f9;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 5%;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* International Tel Input Custom Styles */
.iti {
    width: 100%;
}

.iti__country-list {
    color: #333;
    text-align: left;
}

.phone-input {
    padding-left: 95px !important;
}

.iti__selected-dial-code {
    color: #444;
    font-weight: 600;
    margin-left: 4px;
}

.top-info a {
    color: var(--white);
    text-decoration: none;
}

.top-info i,
.top-hours i {
    margin-right: 0.5rem;
    color: var(--white);
}

.separator {
    opacity: 0.3;
}

header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-wrapper.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.mobile-nav-header,
.mobile-nav-footer {
    display: none !important;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown Styles */
.nav-links .dropdown {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 0.7rem 1.5rem;
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 1.8rem;
}

.nav-links a i {
    transition: transform 0.3s ease;
}

.dropdown:hover a i {
    transform: rotate(180deg);
}

.cta-btn {
    background: #218497;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.header-wrapper.scrolled .menu-toggle .bar {
    background-color: var(--primary-color);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.cta-btn:hover {
    background: #ff8b00;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: #111 url('assets/images/w1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 5% 5rem;
    margin-top: 0;
    overflow: hidden;
    isolation: isolate;
    /* Create new stacking context */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(33, 133, 151, 0.85) 0%, rgba(33, 133, 151, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    /* High z-index to be above overlay */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 3rem;
    color: #fff !important;
}

.hero-content {
    flex: 1;
    color: var(--white);
    text-align: left;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.hero-content p:not(.hero-subtitle) {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.primary-btn {
    background: #c87121;
    /* Match the orange/brown from screenshot but keep it premium */
    color: var(--white);
}

/* Let's try to match the exact orange from screenshot for that specific button as requested "aisa banner bna ke do" but I should probably stick to theme if they said "theme color ke acording" */
/* USER SAID: "website ke theme colour ke acording" -> Teal #218597 */

.primary-btn {
    background: #218497;
    color: var(--white);
}

.secondary-btn {
    background: var(--white);
    color: #333;
}

.primary-btn:hover {
    background: #ff8b00;
    transform: translateY(-3px);
}

.secondary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Hero Form wrapper */
.hero-form-wrapper {
    flex: 0 0 420px;
    background: #111;
    border-radius: 35px;
    /* Added border-radius */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-form-wrapper h3 {
    background: #218597;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Hero Form Container */
.hero-form-container {
    background: var(--white);
    padding: 2rem;
}

.hero-form-container .input-group {
    position: relative;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.hero-form-container .input-group i:not(.arrow-icon) {
    position: absolute;
    left: 1.2rem;
    color: #666;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 5;
}

.hero-form-container .input-group input,
.hero-form-container .input-group select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border-radius: 15px;
    /* Added border-radius */
    border: 1px solid #ddd;
    font-size: 0.95rem;
    background: #fdfdfd;
    outline: none;
    transition: var(--transition);
    appearance: none;
    position: relative;
}

.hero-form-container .input-group input:focus,
.hero-form-container .input-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 133, 151, 0.1);
}

.hero-form-container .arrow-icon {
    position: absolute;
    right: 1.2rem;
    left: auto !important;
    font-size: 0.8rem !important;
    color: #666;
    pointer-events: none;
}

.hero-form-container .submit-btn {
    background: #218497;
    border-radius: 50px;
    /* Added border-radius */
    font-size: 1.1rem;
    padding: 1.1rem;
    border: none;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(33, 132, 151, 0.2);
    width: 100%;
    margin-top: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-form-container .submit-btn:hover {
    background: #ff8b00;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(33, 133, 151, 0.3);
}



@media (max-width: 992px) {
    .hero {
        padding: 8rem 5% 4rem;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p:not(.hero-subtitle) {
        margin: 0 auto 2rem auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-form-wrapper {
        flex: 1;
        width: 100%;
        max-width: 450px;
    }
}

/* Services */
.services {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-table tr:hover {
    background: #f9f9f9;
}

.price-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(33, 133, 151, 0.1);
    transition: var(--transition);
}

.price-card:hover {
    transform: scale(1.05);
}

.price-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-card .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.price-card .sub {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
    display: block;
}

/* Types of AC */
.ac-types {
    padding: 5rem 5%;
}

/* Premium Testimonial Slider */
.testimonials-v2 {
    padding: 8rem 5%;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.testimonial-slider-v2 {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 2rem 1rem 4rem !important;
    /* Extra bottom padding for pagination */
}

.testi-card-v2 {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testi-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(33, 133, 151, 0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.testi-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.testi-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testi-user-v2 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.testi-user-v2 img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testi-info h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.testi-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color) !important;
    opacity: 0.2 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .testimonials-v2 {
        padding: 5rem 5%;
    }

    .testi-card-v2 {
        padding: 2.5rem 2rem;
    }
}

/* Stylish FAQ Section - Two Column Layout */
.faq-v2 {
    padding: 8rem 5%;
    background: #fff;
    position: relative;
}

.faq-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.faq-visuals {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.faq-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.faq-v2:hover .faq-visuals img {
    transform: scale(1.05);
}

.faq-content-v2 h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.faq-content-v2 h2 span {
    color: var(--primary-color);
}

.faq-accordion-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-v2 {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-v2:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(33, 133, 151, 0.05);
}

.faq-item-v2.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(33, 133, 151, 0.1);
}

.faq-question-v2 {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    background: #fff;
    transition: var(--transition);
}

.faq-question-v2 i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-item-v2.active .faq-question-v2 i {
    transform: rotate(180deg);
}

.faq-answer-v2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-item-v2.active .faq-answer-v2 {
    max-height: 500px;
}

.faq-answer-v2 p {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .faq-v2-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .faq-visuals {
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-content-v2 h2 {
        text-align: center;
        font-size: 2.3rem;
    }
}

@media (max-width: 992px) {
    .top-hours {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    .header-wrapper {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    header {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin-right: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        /* Standard sidebar width */
        height: 100vh;
        background: #218597;
        /* Teal background as requested */
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 0;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-nav-header {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0;
        margin: 0;
        background: #fff;
        width: 100%;
        position: relative;
    }

    .mobile-logo-box {
        padding: 1rem 1.5rem;
        background: #fff;
        width: 100%;
    }

    .mobile-logo-box img {
        height: 60px;
        display: block;
        margin-bottom: 0.5rem;
        object-fit: contain;
    }

    .mobile-logo-box p {
        font-size: 0.65rem;
        color: #333;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .menu-toggle.active .bar {
        background: #fff;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        font-size: 1.05rem;
        color: #fff !important;
        padding: 1.2rem 1.5rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

    /* Green Services Accent */
    .services-toggle-link {
        color: #2ecc71 !important;
        /* Green color from screenshot */
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .services-icon-circle {
        width: 32px;
        height: 32px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2ecc71;
        font-size: 0.9rem;
    }

    .dropdown.active .services-icon-circle {
        background: #2ecc71;
        color: #fff;
    }

    /* Dropdown Items - Teal Theme */
    .dropdown-menu {
        position: static !important;
        background: rgba(0, 0, 0, 0.1) !important;
        /* Slightly darker teal for depth */
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
    }

    .dropdown.active>.dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        padding: 1rem 1.5rem 1rem 3rem !important;
        /* More indentation */
        font-size: 1rem !important;
        color: #fff !important;
        /* Brighter white */
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        background: transparent !important;
    }

    .dropdown-menu li a::before {
        content: '↳';
        margin-right: 0.8rem;
        color: #2ecc71;
    }

    /* Mobile Nav Footer */
    .mobile-nav-footer {
        display: block !important;
        padding: 2.5rem 1.5rem;
        margin-top: 1rem;
        background: rgba(0, 0, 0, 0.15);
        /* Slightly darker for sectioning */
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .mobile-contact-item .icon-circle {
        width: 40px;
        height: 40px;
        background: #2ecc71;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .mobile-contact-item a {
        padding: 0;
        border: none;
        font-size: 1rem;
        color: #fff !important;
        width: auto;
        font-weight: 500;
    }

    .mobile-socials {
        display: flex;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1rem;
    }

    .mobile-socials a {
        padding: 0;
        border: none;
        font-size: 1.2rem;
        width: auto;
        color: #fff !important;
        opacity: 0.8;
    }

    .hero {
        padding: 8rem 5% 4rem;
    }

    .faq-v2 {
        padding: 6rem 5%;
    }

    .faq-question-v2 {
        padding: 1.5rem;
        font-size: 1.05rem;
    }

    .faq-answer-v2 p {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Final CTA Section */
.book-cta {
    padding: 8rem 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/images/s6.jpg') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.book-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us */
.features {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact */
.contact {
    padding: 5rem 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ultra-Premium Footer v3 */
.main-footer {
    background: #090e0f;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    padding: 6rem 5% 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-logo img {
    height: 70px;
    background: #fff;
    padding: 0.8rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(33, 133, 151, 0.3);
}

.links-widget ul {
    list-style: none;
}

.links-widget ul li {
    margin-bottom: 1.2rem;
}

.links-widget ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.links-widget ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.links-widget ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.links-widget ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    background: rgba(33, 133, 151, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid rgba(33, 133, 151, 0.2);
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.contact-item .text label {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-item .text a,
.contact-item .text p {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.footer-bottom {
    padding: 2rem 5%;
    background: #050808;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--primary-color);
}

/* Whatsapp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    background: #20b355;
}

/* Call Floating Icon */
.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(33, 133, 151, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-call 2s infinite;
}

.call-float:hover {
    transform: scale(1.1) rotate(-15deg);
    background: #1a6a7a;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 133, 151, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(33, 133, 151, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(33, 133, 151, 0);
    }
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-top {
        padding: 4rem 5%;
    }
}

/* Stylish About Section */
.about-stylish {
    padding: 8rem 5%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-stylish-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visuals {
    position: relative;
    padding: 2rem;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-decoration-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(33, 133, 151, 0.3);
    z-index: 3;
    animation: float_about 4s ease-in-out infinite;
}

.experience-badge h4 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.experience-badge p {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content-stylish h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content-stylish h2 span {
    color: var(--primary-color);
}

.about-content-stylish p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-features-stylish {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-features-stylish li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.about-features-stylish li i {
    width: 35px;
    height: 35px;
    background: rgba(33, 133, 151, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.about-content-stylish h6 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

@keyframes float_about {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .about-stylish-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-visuals {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 1.5rem;
    }

    .about-features-stylish {
        text-align: left;
    }
}

/* Stylish Pricing Cards V2 - 3 Column Grid */
.pricing-v2 {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card-v2 {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(33, 133, 151, 0.05);
    height: 100%;
}

.price-card-v2:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(33, 133, 151, 0.12);
}

.price-card-image {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.price-card-content {
    padding: 1.5rem 1.2rem;
    text-align: center;
    flex-grow: 1;
}

.price-card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-card-content .price-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-card-content .price-sub {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
    display: block;
}

.price-card-v2 .cta-btn {
    border-radius: 50px;
    padding: 1.2rem;
    text-align: center;
    background: #218497;
    display: block;
    width: 100%;
    margin-top: auto;
}

.price-card-v2:hover .cta-btn {
    background: #ff8b00;
}

@media (max-width: 1100px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* Stylish Our Services - Dark Theme */
.services-dark {
    padding: 8rem 5%;
    background: #1a4a5e;
    /* Dark teal background from image */
    color: var(--white);
    text-align: center;
}

.services-dark .section-title h2,
.services-dark .section-title p {
    color: var(--white);
}

.services-grid-ref {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-ref {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-ref:hover {
    transform: translateY(-10px);
}

.service-img-ref {
    height: 200px;
    width: 100%;
}

.service-img-ref img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content-ref {
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    /* Reduced padding, especially bottom */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-content-ref h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.service-content-ref p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    /* Reduced space above button */
}

.service-card-ref .cta-btn {
    width: 85%;
    margin-top: auto;
    /* Pushes button to bottom */
    margin-bottom: 0;
    /* Removed bottom margin */
    border-radius: 50px;
    padding: 0.7rem 1.2rem;
}

@media (max-width: 992px) {
    .services-grid-ref {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-dark {
        padding: 5rem 5%;
    }

    .services-grid-ref {
        grid-template-columns: 1fr;
    }
}

/* Ultra-Premium AC Types - Advanced Design */
.ac-types-v2 {
    padding: 6rem 5%;
    background: radial-gradient(circle at 10% 20%, rgba(33, 133, 151, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(33, 133, 151, 0.05) 0%, transparent 50%),
        #fff;
    position: relative;
    overflow: hidden;
}

.ac-types-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.ac-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.15;
}

.ac-dec-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -50px;
}

.ac-dec-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
}

.ac-types-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.ac-card-v2-ref {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.ac-card-v2-ref:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(33, 133, 151, 0.12);
    border-color: rgba(33, 133, 151, 0.1);
}

.ac-card-number {
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(33, 133, 151, 0.05);
    line-height: 1;
    transition: var(--transition);
}

.ac-card-v2-ref:hover .ac-card-number {
    color: rgba(33, 133, 151, 0.1);
    transform: scale(1.1);
}

.ac-card-img-wrapper {
    width: 100%;
    height: 180px;
    /* Reduced from 280px */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    /* Reduced from 2.5rem */
    position: relative;
}

.ac-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.ac-card-v2-ref:hover .ac-card-img-wrapper img {
    transform: scale(1.1);
}

.ac-card-v2-ref h3 {
    font-size: 1.4rem;
    /* Slightly smaller */
    color: var(--text-color);
    margin-bottom: 0.8rem;
    /* Reduced from 1.2rem */
    font-weight: 800;
    position: relative;
    padding-left: 1.5rem;
}

.ac-card-v2-ref h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.ac-card-v2-ref p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

@media (max-width: 1100px) {
    .ac-types-grid-v2 {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .ac-types-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ac-types-v2 {
        padding: 6rem 5%;
    }

    .ac-types-grid-v2 {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .ac-card-img-wrapper {
        height: 240px;
    }

    .ac-card-number {
        font-size: 4rem;
        right: 20px;
    }
}

/* --- Stylish Service Page Overhaul --- */

.service-intro-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #fff 0%, #f9fdfe 100%);
    position: relative;
    overflow: hidden;
}

.service-intro-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 133, 151, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.service-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-intro-text h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.service-intro-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-top: 15px;
    border-radius: 10px;
}

.service-intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-list-block {
    margin-top: 2.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-list-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list-block h3::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.service-list-block ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-list-block ul li {
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    color: #444;
}

.service-list-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-intro-image {
    position: relative;
}

.service-intro-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.2;
}

.service-intro-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.service-intro-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Stylish CTA Block */
.service-cta-block {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-block::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
}

.service-cta-block .section-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.service-cta-block h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-cta-block p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-cta-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(255, 139, 0, 0.4);
    transition: var(--transition);
}

.service-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 139, 0, 0.6);
}

/* Stylish How We Work */
.how-we-work {
    padding: 100px 5%;
    background: #fff;
}

.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.process-step {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 35px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(33, 133, 151, 0.1);
    border-color: rgba(33, 133, 151, 0.2);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(33, 133, 151, 0.3);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-step p {
    color: #666;
    font-size: 1rem;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.25rem;
    width: 2.5rem;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 1024px) {
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-intro-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-intro-text h2 {
        font-size: 2.5rem;
    }

    .service-list-block ul {
        grid-template-columns: 1fr;
    }

    .work-process-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-block h2 {
        font-size: 2.2rem;
    }

    .service-cta-block .section-container {
        padding: 2.5rem 1.5rem;
    }
}

/* Stylish Testimonials v2 Refinement */
.testimonials-v2 {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f9fdfe 0%, #fff 100%);
}

.testi-card-v2 {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    transition: var(--transition);
}

.testi-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(33, 133, 151, 0.1);
}

.testi-rating {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testi-text {
    font-style: italic;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.testi-user-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testi-user-v2 img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testi-info h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.testi-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(33, 133, 151, 0.1);
}

.testimonial-slider-v2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
}

.testimonial-slider-v2 .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* --- Inner Page Header --- */
.inner-page-header {
    padding: 12rem 5% 6rem;
    background: linear-gradient(rgba(33, 133, 151, 0.8), rgba(33, 133, 151, 0.8)), url('assets/images/w1.jpg') center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.inner-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Stats Counters --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background: #fff;
    margin-top: -3rem;
    z-index: 10;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-item .label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Mission & Vision --- */
.vision-mission {
    padding: 8rem 5%;
    background: var(--light-bg);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.vision-card {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 133, 151, 0.1);
}

.vision-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.vision-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .inner-page-header h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        margin-top: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page Styles --- */
.contact-details-v2 {
    padding: 8rem 5%;
    background: #fff;
}

.contact-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-card-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: var(--transition);
}

.info-card-v2:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-circle-v2 {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text-v2 h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.info-text-v2 p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.map-section-v2 {
    line-height: 0;
}

@media (max-width: 992px) {
    .contact-container-v2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-v2 {
        order: 2;
    }

    .contact-form-v2 {
        order: 1;
    }
}