/* ===== BASE STYLES ===== */
:root {
    --primary-color: #2C3E50; /* Dark blue-gray from "chen" */
    --secondary-color: #3498DB; /* Blue from "SERVICE POINT" */
    --accent-color: #E74C3C; /* Red-orange - accent color */
    --light-color: #f7f7f7;
    --dark-color: #2C3E50;
    --gray-color: #7F8C8D;
    --light-gray: #ECF0F1;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-slide {
    background-color: var(--accent-color);
    font-size: 1.1rem;
    padding: 15px 35px;
    margin-top: 20px;
}

.btn-slide:hover {
    background-color: #C0392B;
}

/* ===== HEADER ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.logo-text h1 span {
    color: var(--secondary-color);
}

.tagline {
    font-size: 0.8rem;
    color: var(--gray-color);
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin: 0 10px;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background-color: var(--secondary-color);
}

.header-contact {
    margin-left: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.contact-item .phone {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin-top: 80px;
    height: 900px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-bg-1 {
    background-image: url(img/slide1.png);
}

.slide-bg-2 {
    background-image: url(img/slide2.png);}

.slide-bg-3 {
   background-image: url(img/slide3.png);}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* ===== WELCOME SECTION ===== */
.welcome-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-text {
    flex: 1;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}

/* Fix welcome section image */
.welcome-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 420px;   /* keeps image proportional */
    text-align: center;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.image-placeholder {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-weight: 500;
}

/* ===== WHY CHOOSE US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--gray-color);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1558&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
    color: white;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
    min-height: 70px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== TRENDING SECTION ===== */
.trending-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.trending-tag {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #ddd;
}

.trending-tag:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2C3E50;
    color: #ddd;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3px;
}

.footer-logo .logo-text h2 span {
    color: var(--secondary-color);
}

.footer-logo .tagline {
    color: #aaa;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #34495E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-footer i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-info-footer a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-footer a:hover {
    color: var(--secondary-color);
}

.qr-code-container {
    margin-top: 25px;
}

.qr-code {
    background-color: #34495E;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.qr-code i {
    font-size: 4rem;
    color: white;
    margin-bottom: 15px;
}

.qr-code p {
    font-size: 0.9rem;
    color: #aaa;
}

.qr-text {
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

.domain a {
    color: var(--secondary-color);
    text-decoration: none;
}

.domain a:hover {
    text-decoration: underline;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.floating-btn::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.call-btn {
    background-color: var(--secondary-color);
}

.call-btn:hover {
    background-color: #2980B9;
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.enquiry-btn {
    background-color: var(--accent-color);
}

.enquiry-btn:hover {
    background-color: #C0392B;
    transform: scale(1.1);
}

/* ===== CURSOR EFFECT ===== */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.3);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero */
.about-hero {
    background: url('img/hero\ banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
    font-weight: 500;
}

/* About Content */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image .image-placeholder {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.about-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-image .image-placeholder p {
    font-weight: 500;
    font-size: 1.1rem;
}

.about-text {
    flex: 1;
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.experience-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 30px;
    border: 2px dashed var(--secondary-color);
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .label {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 500;
    margin-top: 5px;
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.vm-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vm-text {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Services Hero */
.services-hero {
    background:  url('img/services-banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Service Card Large */
.service-card-large {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-card-large {
        flex-direction: row;
        min-height: 350px;
    }
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    flex: 1;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 768px) {
    .service-image {
        min-height: auto;
        flex: 0 0 40%;
    }
}

.service-image-ac {
    background:  url('img/ac\ repair.jpg');
}

.service-image-fridge {
    background: url('img/fridge-repairing-service.jpg');
}

.service-image-washing {
    background:  url('img/washing\ machine\ service.png');
}

.service-image-ro {
    background:  url('img/ro.png');
}

.service-image-heater {
    background:  url('img/heater_services.jpg');
}

.service-image-microwave {
    background:  url('img/oven-repair.jpg');
}

.service-image-tv {
    background:  url('img/led-repair-service.jpg');
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.service-overlay .service-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-overlay .service-excerpt {
    font-size: 1rem;
    opacity: 0.9;
}

.service-content {
    flex: 1;
    padding: 30px;
}

@media (min-width: 768px) {
    .service-content {
        flex: 0 0 60%;
    }
}

.service-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #ddd;
}

.service-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-service {
    background-color: var(--secondary-color);
    padding: 12px 25px;
}

.btn-service:hover {
    background-color: var(--primary-color);
}

.btn-secondary-service {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
}

.btn-secondary-service:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Service Quick Links */
.service-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.service-quick-link {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #ddd;
}

.service-quick-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== ENQUIRY PAGE SPECIFIC STYLES ===== */

/* Enquiry Hero */
.enquiry-hero {
    background:  url('img/enquiry-banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.enquiry-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.enquiry-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero */
.contact-hero {
    background:  url('img/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-card-content {
    flex: 1;
    margin-bottom: 5px;
}

.contact-card-content p {
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.6;
}

.contact-card-content p strong {
    color: var(--primary-color);
}

/* Phone Numbers */
.phone-number {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.phone-number:hover {
    background-color: #e8f4fc;
    transform: translateX(5px);
}

.phone-number i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 30px;
}

.phone-number div {
    text-align: left;
    flex: 1;
}

.phone-number a {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    margin-bottom: 4px;
    transition: var(--transition);
}

.phone-number a:hover {
    color: var(--secondary-color);
}

.phone-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Email Addresses */
.email-address {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.email-address:hover {
    background-color: #f0f8ff;
    transform: translateX(5px);
}

.email-address i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 30px;
}

.email-address div {
    text-align: left;
    flex: 1;
}

.email-address a {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 4px;
    word-break: break-all;
    transition: var(--transition);
}

.email-address a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.email-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Timing Slots */
.timing-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.timing-slot:last-child {
    border-bottom: none;
}

.timing-day {
    font-weight: 500;
    color: var(--dark-color);
    text-align: left;
    flex: 1;
}

.timing-hours {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.timing-slot.emergency {
    background-color: #fff8e1;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
    border: 1px solid #ffecb3;
}

.timing-slot.emergency .timing-day {
    color: #e65100;
}

.timing-slot.emergency .timing-hours {
    color: #ff9800;
}

/* Contact Card Link */
.contact-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
}

.contact-card-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    border-color: var(--secondary-color);
}

/* Map Section */
.map-section {
    background-color: #f8f9fa;
}

.map-container {
    width: 100%;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f1f1;
}

.map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .welcome-content {
        flex-direction: column;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list li {
        margin: 5px 0;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .enquiry-hero {
        padding: 100px 0 60px;
    }
    
    .enquiry-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .enquiry-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

/* ============================
   SERVICE ENQUIRY FORM STYLING
   ============================ */

#form {
    max-width: 720px;
    margin-top: 10px;
}

/* Input, textarea, select */
#form .form-control,
#form select {
    height: 46px;
    border-radius: 6px;
    border: 1px solid #d1d9e0;
    font-size: 15px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

/* Description field */
#form #desc {
    height: 50px;
}

/* Focus effect */
#form .form-control:focus,
#form select:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 0.15rem rgba(30, 136, 229, 0.2);
    outline: none;
}

/* Select dropdown */
#form select {
    width: 100%;
    background-color: #fff;
    cursor: pointer;
}

/* Captcha image */
#form img {
    border-radius: 6px;
    border: 1px solid #d1d9e0;
    padding: 3px;
}

/* Captcha note */
#form .form-group {
    margin-bottom: 14px;
}

#form .form-group:last-child {
    margin-bottom: 0;
}

/* Submit button */
#form .btn-primary {
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    border: none;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Button hover */
#form .btn-primary:hover {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    transform: translateY(-1px);
}

/* Text note under captcha */
#form .col-lg-12.form-group {
    font-size: 13px;
    color: #555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #form {
        max-width: 100%;
    }

    #form .btn-primary {
        width: 100%;
    }
}
/* CENTER THE SERVICE ENQUIRY FORM */
#form {
    margin-left: auto;
    margin-right: auto;
}

/* Center the form section content */
#get-your-appliance-fixed,
.service-enquiry,
.form-section {
    display: flex;
    justify-content: center;
}

/* If form is inside Bootstrap row */
#form .row {
    justify-content: center;
}
.enquiry-form-wrapper .form-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}



.icon {
    width: 40px;
    height: auto;
}



/* ===============================
   SERVICE STACK SECTION ONLY
================================ */

.service-stack .services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-stack .service-card-large {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-stack .service-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE BANNER */
.service-stack .service-image {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* DARK GRADIENT OVERLAY */
.service-stack .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.25)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: #ffffff;
}

.service-stack .service-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-stack .service-excerpt {
    font-size: 1.05rem;
    max-width: 520px;
    color: #eaeaea;
}

/* CONTENT AREA */
.service-stack .service-content {
    padding: 30px;
}

.service-stack .service-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-stack .service-description {
    color: #6b7280;
    line-height: 1.7;
}

/* FEATURES */
.service-stack .service-features {
    margin: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-stack .feature-tag {
    padding: 7px 14px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
}

/* ACTIONS */
.service-stack .service-actions {
    margin-top: 20px;
    display: flex;
}

/* FADE-IN */
@keyframes serviceFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-stack .service-card-large.show {
    animation: serviceFadeUp 0.7s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service-stack .service-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .service-stack .services-grid {
        gap: 28px;
    }

    .service-stack .service-image {
        height: 230px;
    }

    .service-stack .service-overlay {
        padding: 24px;
    }

    .service-stack .service-title {
        font-size: 1.8rem;
    }
}



/* Bigger image banner */
.service-image {
    height: 380px;              /* MAIN CONTROL – increase/decrease if needed */
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark professional overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.25)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

/* Banner title */
.service-overlay .service-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/* Banner subtitle */
.service-overlay .service-excerpt {
    font-size: 1.05rem;
    color: #eaeaea;
    max-width: 520px;
}
@media (max-width: 768px) {
    .service-image {
        height: 260px;
        min-height: 260px;
    }

    .service-overlay {
        padding: 25px;
    }

    .service-overlay .service-title {
        font-size: 1.8rem;
    }
}














/* MOBILE HEADER SPACING FIX */
@media (max-width: 768px) {

    .logo-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;              /* ✅ THIS CREATES THE GAP */
        padding: 10px 14px;
    }

    .logo img {
        max-width: 130px;
        height: auto;
    }

    .mobile-menu-btn {
        margin-left: auto;     /* pushes menu to the right */
        padding-left: 180px;    /* extra breathing space */
    }
}

/* ===============================
   NEW FLOATING BUTTONS
================================ */

/* Facebook */
.floating-btn.facebook-btn {
    background: #1877f2;
}

.floating-btn.facebook-btn:hover {
    background: #145dbf;
}

/* Instagram */
.floating-btn.instagram-btn {
    background: linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.floating-btn.instagram-btn:hover {
    filter: brightness(1.1);
}

/* Back to Top */
.floating-btn.back-to-top-btn {
    background: #111827;
}

.floating-btn.back-to-top-btn:hover {
    background: #000000;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .floating-buttons {
        right: 14px;
        bottom: 14px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .floating-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
