/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefcf7;
    color: #1f2937;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER (sticky) ===== */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo i {
    background: none;
    color: #2a5298;
    font-size: 1.8rem;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img
 {
    width:100%;
 }
.nav-links {
    display: flex;
    gap: 28px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #2563eb;
}
/* Header layout */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== CITY SELECTOR ===== */
.city-selector {
    display: inline-flex;
    align-items: center;
}

.city-select {
    padding: 10px 36px 10px 18px;          /* extra right padding for arrow */
    border-radius: 60px;                   /* pill shape */
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1e293b;
    cursor: pointer;
    outline: none;
    appearance: none;                      /* hide default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 140px;
}

.city-select:hover {
    border-color: #cbd5e1;
}

.city-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    gap: 4px;
}
.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #1e293b;
    border-radius: 4px;
    transition: 0.3s;
}
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 16px 0;
        text-align: center;
        background: white;
        border-top: 1px solid #e2e8f0;
        margin-top: 8px;
    }
    .nav-links.open {
        display: flex;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .header-inner .nav-links a {
        padding: 8px 0;
        font-size: 1rem;
        border-bottom: 1px solid #f1f5f9;
    }
    .header-inner .nav-links a:last-child {
        border-bottom: none;
    }
}

/* Responsive – smaller on mobile */
@media (max-width: 700px) {
    .city-select {
        padding: 8px 32px 8px 14px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

/* ===== HERO SECTION (Google-like search) ===== */
.hero {
    text-align: center;
    padding: 56px 0 48px;
    background: linear-gradient(145deg, #fef9ed 0%, #ffffff 100%);
    border-radius: 0 0 36px 36px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    background: linear-gradient(120deg, #1f2b48, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.search-container {
    max-width: 680px;
    margin: 0 auto 12px;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 18px 24px 18px 56px;
    font-size: 1.1rem;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.search-box:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.15);
}

.search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.3rem;
    pointer-events: none;
}

.search-hint {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 12px;
}

.search-container {
    position: relative;
}

.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none; /* Hidden by default */
    padding: 8px 0;
}

.suggestions-dropdown.active {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f1f5f9;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.highlighted {
    background: #f1f5f9;
}

.suggestion-item .icon {
    color: #2563eb;
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.suggestion-item .content {
    flex: 1;
}

.suggestion-item .content .main-text {
    font-weight: 500;
    color: #0f172a;
    font-size: 0.95rem;
}

.suggestion-item .content .main-text strong {
    color: #2563eb;
}

.suggestion-item .content .sub-text {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.suggestion-item .match-type {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: 20px;
    background: #e2e8f0;
    color: #475569;
    white-space: nowrap;
}

.suggestion-item .match-type.category {
    background: #dbeafe;
    color: #1d4ed8;
}

.suggestion-item .match-type.business {
    background: #dcfce7;
    color: #15803d;
}

.suggestion-item .match-type.service {
    background: #fce7f3;
    color: #be185d;
}

.suggestion-item .match-type.address {
    background: #fef3c7;
    color: #b45309;
}

.suggestions-dropdown .no-results {
    padding: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    margin: 32px 0 24px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #3b82f6;
    font-size: 1.6rem;
}

.categories-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.cat-chip {
    background: #f1f5f9;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
    backdrop-filter: blur(2px);
}

.cat-chip i {
    margin-right: 8px;
    font-size: 0.85rem;
}

.cat-chip:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.cat-chip.active {
    background: #1e3a8a;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.2);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ===== LISTINGS HEADER ===== */
.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 16px 0 28px;
}

.result-count {
    font-size: 0.95rem;
    background: #eef2ff;
    padding: 6px 14px;
    border-radius: 40px;
    color: #1e3a8a;
    font-weight: 500;
}

/* ===== BUSINESS GRID (cards) ===== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

@media (max-width: 700px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
}
.business-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.card-img {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.badge-status.open {
    background: #10b981;
}

.badge-status.closed {
    background: #ef4444;
}

.card-content {
    padding: 20px 20px 22px;
    flex: 1;
}

.business-name {
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.verified {
    color: #3b82f6;
    font-size: 0.85rem;
    background: #eef2ff;
    border-radius: 30px;
    padding: 3px 9px;
    font-weight: 500;
    font-size: 0.7rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 10px;
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.review-count {
    font-size: 0.8rem;
    color: #5b6e8c;
}

.desc {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #5b6e8c;
    margin: 8px 0;
}

.info-row i {
    width: 20px;
    color: #3b82f6;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9fb;
    border-radius: 48px;
    color: #475569;
}

/* ===== ACTION BUTTONS (Two main buttons) ===== */
.action-buttons {
    display: flex;
    gap: 12px;
    margin: 16px 0 12px;
}

.btn-main {
    flex: 1;
    text-align: center;
    color: #2563eb;
    padding: 10px 0;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    border: 2px solid #2563eb;
    cursor: pointer;
}

.btn-main:hover {
    background: #2563eb;
    color:white;
    transform: translateY(-1px);
}

.enquiry-btn {
    background: #2563eb;
    color:white;
}

.enquiry-btn:hover {
    background: #2563eb;
}

.btn-views-service
{
    border:1px solid #2563eb;
}
/* ===== CIRCULAR ICON BUTTONS ===== */
.icon-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 16px 0;
}

.circle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #1f2937;
    text-decoration: none;
    transition: 0.2s;
    font-size: 1.2rem;
    border: 1px solid #e2e8f0;
}

.circle-icon:hover {
    transform: translateY(-2px);
    background: #e2e8f0;
}

.circle-icon.whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.circle-icon.whatsapp:hover {
    background: #128C7E;
}

.circle-icon.call {
    background: #3b82f6;
    color: white;
    border: none;
}

.circle-icon.call:hover {
    background: #2563eb;
}

.circle-icon.direction {
    background: #ef4444;
    color: white;
    border: none;
}

.circle-icon.direction:hover {
    background: #dc2626;
}

/* ===== TAGS ROW ===== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eef2f0;
}

.tag {
    background: #f3f4f6;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #4b5563;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 28px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: black;
}

.modal-content h3 {
    margin-bottom: 20px;
}

.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-family: inherit;
}

.modal-content button[type="submit"] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid #e9edf2;
    padding: 32px 0;
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .business-grid {
        grid-template-columns: 1fr;
    }
    .cat-chip {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .icon-actions {
        justify-content: space-around;
    }
}

/* ===== DETAILS PAGE SPECIFIC STYLES ===== */

/* Override default link styles for buttons only */
a:not(.btn-main):not(.circle-icon):not(.back-link):not(.social-links a) {
    text-decoration: none;
    color: inherit;
}

/* Back link styling */
.back-link {
    display: inline-block;
    margin: 20px 0;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.back-link:hover {
    text-decoration: underline;
}

/* Enquiry form styling */
.enquiry-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin: 8px 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: 0.2s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.enquiry-form button[type="submit"] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    width: auto;
    min-width: 150px;
}

.enquiry-form button[type="submit"]:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Form message styling */
#formMessage {
    margin-top: 15px;
    font-size: 0.85rem;
}

/* Section headings consistency */
.section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1e293b;
}

/* Contact info grid improvements */
.contact-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-info div {
    line-height: 1.5;
}

.contact-info i {
    width: 28px;
    color: #2563eb;
    font-size: 1.1rem;
}

/* Social links styling */
.social-links {
    display: flex;
    gap: 12px;
    margin: 15px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
}

/* ===== ABSTRACT MODERN SERVICES & PRODUCTS ===== */
.abstract-section {
    margin: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(37,99,235,0) 70%);
    filter: blur(40px);
    z-index: 0;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.section-header p {
    color: #64748b;
    margin-top: 8px;
    font-size: 0.9rem;
}

/* Abstract Grid – Asymmetric, floating */
.abstract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Abstract Card – Glassmorphism + gradient border + floating */
.abstract-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.abstract-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 48px;
    padding: 2px;
    background: linear-gradient(135deg, #fbbf24, #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.abstract-card:hover::before {
    opacity: 1;
}

.abstract-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 45px -15px rgba(0,0,0,0.2);
}

/* Abstract blob background */
.card-blob {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(251,191,36,0.2) 0%, rgba(59,130,246,0.1) 70%);
    border-radius: 62% 38% 72% 28% / 48% 32% 68% 52%;
    filter: blur(30px);
    z-index: -1;
    transition: all 0.5s;
}

.abstract-card:hover .card-blob {
    transform: rotate(10deg) scale(1.1);
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(251,191,36,0.15) 70%);
}

/* Icon */
.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2563eb, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Title */
.abstract-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

/* Abstract line */
.card-abstract-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #3b82f6);
    margin: 16px auto;
    border-radius: 4px;
}

/* Description */
.abstract-card .card-desc {
    color: #475569;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* Action Buttons – modern & rounded */
.card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 18px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    backdrop-filter: blur(4px);
}

.action-btn.whatsapp-btn {
    background: #25D366;
    border-color: transparent;
    color: white;
}
.action-btn.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.action-btn.enquiry-btn {
    background: #3b82f6;
    border-color: transparent;
    color: white;
}
.action-btn.enquiry-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Shine effect on hover */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.abstract-card:hover .card-shine {
    left: 200%;
}

/* Responsive */
@media (max-width: 700px) {
    .abstract-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .abstract-card {
        padding: 24px;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.2s;
}

.gallery img:hover {
    transform: scale(1.02);
}

/* Responsive touches */
@media (max-width: 700px) {
    .enquiry-form {
        padding: 20px;
    }
    .services-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

./* ===== REVIEWS & RATINGS SECTION - MODERN ===== */

 .reviews-container {
     margin: 40px 0;
 }

 .section-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
     color: #0f172a;
 }

 .section-title i {
     color: #f59e0b;
 }

 /* Average rating card */
 .average-rating-card {
     background: linear-gradient(135deg, #fef9e6, #fff8e7);
     border-radius: 32px;
     padding: 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
     margin-bottom: 30px;
     border: 1px solid #fde68a;
 }

 .average-score {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .big-rating {
     font-size: 3rem;
     font-weight: 800;
     color: #1e293b;
 }

 .big-rating span {
     font-size: 1.2rem;
     color: #64748b;
 }

 .stars-large {
     color: #fbbf24;
     font-size: 1.4rem;
     letter-spacing: 4px;
 }

 .total-reviews {
     color: #475569;
     font-weight: 500;
 }

 /* Review form - modern & attractive */
 .review-form {
     background: #ffffff;
     border-radius: 32px;
     padding: 28px;
     margin: 30px 0;
     box-shadow: 0 12px 30px rgba(0,0,0,0.05);
     border: 1px solid #eef2f0;
     transition: 0.2s;
 }

 .review-form h3 {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 /* Star rating input (modern) */
 .star-rating {
     display: flex;
     flex-direction: row-reverse;
     justify-content: flex-end;
     gap: 8px;
     margin: 20px 0;
 }

 .star-rating input {
     display: none;
 }

 .star-rating label {
     font-size: 32px;
     color: #cbd5e1;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .star-rating label:hover,
 .star-rating label:hover ~ label,
 .star-rating input:checked ~ label {
     color: #fbbf24;
     transform: scale(1.05);
 }

 /* Form fields */
 .review-form input[type="text"],
 .review-form textarea {
     width: 100%;
     padding: 14px 18px;
     margin: 12px 0;
     border: 1px solid #e2e8f0;
     border-radius: 28px;
     font-family: 'Inter', sans-serif;
     font-size: 0.95rem;
     transition: 0.2s;
     background: #fefcf7;
 }

 .review-form input[type="text"]:focus,
 .review-form textarea:focus {
     outline: none;
     border-color: #2563eb;
     box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
     background: white;
 }

 .review-form textarea {
     resize: vertical;
     min-height: 100px;
 }

 .submit-review-btn {
     background: linear-gradient(135deg, #2563eb, #1d4ed8);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 0.95rem;
     cursor: pointer;
     transition: 0.2s;
     width: 100%;
     margin-top: 12px;
 }

 .submit-review-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(37,99,235,0.3);
 }

 /* Reviews list */
 .reviews-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: 30px;
 }

 .review-card {
     background: #ffffff;
     border-radius: 28px;
     padding: 20px;
     border: 1px solid #eef2f0;
     transition: 0.2s;
 }

 .review-card:hover {
     transform: translateX(4px);
     border-color: #cbd5e1;
     box-shadow: 0 6px 14px rgba(0,0,0,0.03);
 }

 .review-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     flex-wrap: wrap;
     gap: 10px;
 }

 .reviewer-info {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .reviewer-avatar {
     width: 44px;
     height: 44px;
     background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.1rem;
     color: #1e3a8a;
 }

 .reviewer-name {
     font-weight: 700;
     font-size: 1rem;
     color: #1e293b;
 }

 .review-rating {
     color: #fbbf24;
     letter-spacing: 2px;
     font-size: 0.9rem;
 }

 .review-date {
     font-size: 0.75rem;
     color: #94a3b8;
     margin-top: 4px;
 }

 .review-comment {
     color: #334155;
     line-height: 1.5;
     margin-top: 8px;
     padding-left: 56px;
 }

 /* No reviews yet */
 .no-reviews {
     text-align: center;
     padding: 40px;
     background: #f8fafc;
     border-radius: 32px;
     color: #64748b;
 }

 /* Responsive */
 @media (max-width: 700px) {
     .average-rating-card {
         flex-direction: column;
         text-align: center;
     }
     .review-comment {
         padding-left: 0;
     }
     .review-header {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 /* ===== FLOATING SHARE BAR (ALWAYS VISIBLE) ===== */
 .floating-share-bar {
     position: fixed;
     left: 20px;
     top: 50%;
     transform: translateY(-50%);
     z-index: 1000;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
 }

 .share-trigger {
     background: #2563eb;
     color: white;
     width: 48px;
     height: 48px;
     border-radius: 60px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(37,99,235,0.3);
     transition: 0.2s;
     font-size: 0.7rem;
     font-weight: 600;
     gap: 4px;
 }

 .share-trigger i {
     font-size: 1.2rem;
 }

 .share-trigger:hover {
     transform: scale(1.05);
     background: #1d4ed8;
 }

 .share-icons {
     display: flex;
     flex-direction: column;
     gap: 10px;
     opacity: 0;
     visibility: hidden;
     transform: translateX(-20px);
     transition: all 0.3s ease;
 }

 .floating-share-bar:hover .share-icons {
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }

 .share-icon {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: white;
     color: #1e293b;
     text-decoration: none;
     box-shadow: 0 4px 10px rgba(0,0,0,0.1);
     transition: 0.2s;
     font-size: 1.2rem;
 }

 .share-icon:hover {
     transform: translateX(4px);
 }

 .share-icon.fb:hover { background: #1877f2; color: white; }
 .share-icon.wa:hover { background: #25D366; color: white; }
 .share-icon.tw:hover { background: #1DA1F2; color: white; }
 .share-icon.li:hover { background: #0077b5; color: white; }
 .share-icon.native:hover { background: #4b5563; color: white; }

 /* On small screens, move to bottom left */
 @media (max-width: 700px) {
     .floating-share-bar {
         top: auto;
         bottom: 20px;
         left: 20px;
         transform: none;
         flex-direction: row;
         background: rgba(255,255,255,0.9);
         backdrop-filter: blur(8px);
         padding: 8px 12px;
         border-radius: 60px;
         box-shadow: 0 4px 12px rgba(0,0,0,0.1);
     }
     .share-trigger {
         width: 40px;
         height: 40px;
         font-size: 0.6rem;
     }
     .share-icons {
         flex-direction: row;
         opacity: 1;
         visibility: visible;
         transform: none;
         gap: 8px;
     }
     .floating-share-bar:hover .share-icons {
         transform: none;
     }
     .share-icon {
         width: 36px;
         height: 36px;
         font-size: 1rem;
     }
 }

 /* ============================================
    MODERN SERVICES & PRODUCTS GRID (appended)
    ============================================ */

 /* Ensure section spacing */
 .section {
     padding: 2rem 0;
 }

 /* Section heading with icon (enhance existing) */
 .section h2 {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     font-size: 1.8rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 1.5rem;
 }

 .section h2 i {
     font-size: 1.6rem;
     background: linear-gradient(135deg, #4f46e5, #7c3aed);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Grid layouts */
 .businessService-grid,
 .businessProduct-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 1.75rem;
 }

 /* Card base */
 .businessService-card,
 .businessProduct-card {
     background: #ffffff;
     border-radius: 20px;
     padding: 1.75rem 1.5rem 1.5rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 10px 25px -3px rgba(0, 0, 0, 0.06);
     border: 1px solid rgba(226, 232, 240, 0.6);
     transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     display: flex;
     flex-direction: column;
     position: relative;
     overflow: hidden;
 }

 /* Top accent bar on hover */
 .businessService-card::before,
 .businessProduct-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #4f46e5, #7c3aed);
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .businessService-card:hover::before,
 .businessProduct-card:hover::before {
     opacity: 1;
 }

 .businessService-card:hover,
 .businessProduct-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 30px -8px rgba(79, 70, 229, 0.18), 0 8px 20px -6px rgba(0, 0, 0, 0.06);
     border-color: rgba(79, 70, 229, 0.15);
 }

 /* Icon */
 .businessService-icon,
 .businessProduct-icon {
     width: 100%;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.1rem;
     flex-shrink: 0;
     transition: all 0.3s ease;
     box-shadow: 0 6px 16px -4px rgba(79, 70, 229, 0.3);
 }

 .businessProduct-icon {
     background: linear-gradient(135deg, #0ea5e9, #2563eb);
     box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.3);
 }

 .businessService-card:hover .businessService-icon,
 .businessProduct-card:hover .businessProduct-icon {
     transform: scale(1.05) rotate(-2deg);
 }

 /* Card content */
 .businessService-card h3,
 .businessProduct-card h3 {
     font-size: 1.15rem;
     font-weight: 700;
     color: #0f172a;
     margin: 0 0 0.4rem 0;
     line-height: 1.3;
 }

 .businessService-card p,
 .businessProduct-card p {
     font-size: 0.92rem;
     color: #64748b;
     line-height: 1.6;
     margin: 0 0 1.2rem 0;
     flex: 1;
 }

 /* Card actions */
 .businessService-card .card-actions,
 .businessProduct-card .card-actions {
     display: flex;
     gap: 0.6rem;
     flex-wrap: wrap;
     margin-top: auto;
     padding-top: 0.5rem;
 }

 /* Buttons */
 .businessService-card .btn-sm,
 .businessProduct-card .btn-sm {
     display: inline-flex;
     align-items: center;
     gap: 0.45rem;
     padding: 0.5rem 1.1rem;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 600;
     border: none;
     cursor: pointer;
     transition: all 0.25s ease;
     font-family: inherit;
     letter-spacing: 0.01em;
     background: #f1f5f9;
     color: #1e293b;
 }

 .businessService-card .btn-sm i,
 .businessProduct-card .btn-sm i {
     font-size: 0.9rem;
 }

 /* WhatsApp button */
 .businessService-card .btn-sm.whatsapp,
 .businessProduct-card .btn-sm.whatsapp {
     background: #25d366;
     color: #ffffff;
     box-shadow: 0 4px 10px -2px rgba(37, 211, 102, 0.3);
 }

 .businessService-card .btn-sm.whatsapp:hover,
 .businessProduct-card .btn-sm.whatsapp:hover {
     background: #1ebe5a;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.35);
 }

 /* Enquiry button */
 .businessService-card .btn-sm.enquiry,
 .businessProduct-card .btn-sm.enquiry {
     background: linear-gradient(135deg, #4f46e5, #7c3aed);
     color: #ffffff;
     box-shadow: 0 4px 10px -2px rgba(79, 70, 229, 0.3);
 }

 .businessService-card .btn-sm.enquiry:hover,
 .businessProduct-card .btn-sm.enquiry:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px -4px rgba(79, 70, 229, 0.4);
     background: linear-gradient(135deg, #4338ca, #6d28d9);
 }

 /* Staggered fade-in animation */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .businessService-card,
 .businessProduct-card {
     animation: fadeUp 0.6s ease forwards;
     opacity: 0;
 }

 .businessService-card:nth-child(1),
 .businessProduct-card:nth-child(1) { animation-delay: 0.05s; }
 .businessService-card:nth-child(2),
 .businessProduct-card:nth-child(2) { animation-delay: 0.10s; }
 .businessService-card:nth-child(3),
 .businessProduct-card:nth-child(3) { animation-delay: 0.15s; }
 .businessService-card:nth-child(4),
 .businessProduct-card:nth-child(4) { animation-delay: 0.20s; }
 .businessService-card:nth-child(5),
 .businessProduct-card:nth-child(5) { animation-delay: 0.25s; }
 .businessService-card:nth-child(6),
 .businessProduct-card:nth-child(6) { animation-delay: 0.30s; }
 .businessService-card:nth-child(7),
 .businessProduct-card:nth-child(7) { animation-delay: 0.35s; }
 .businessService-card:nth-child(8),
 .businessProduct-card:nth-child(8) { animation-delay: 0.40s; }

 /* Reduce motion preference */
 @media (prefers-reduced-motion: reduce) {
     .businessService-card,
     .businessProduct-card {
         animation: none;
         opacity: 1;
     }
     .businessService-card:hover,
     .businessProduct-card:hover {
         transform: none;
     }
     .businessService-card .btn-sm:hover,
     .businessProduct-card .btn-sm:hover {
         transform: none !important;
     }
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .businessService-grid,
     .businessProduct-grid {
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
         gap: 1.5rem;
     }
     .section h2 {
         font-size: 1.6rem;
     }
 }

 @media (max-width: 768px) {
     .businessService-grid,
     .businessProduct-grid {
         grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
         gap: 1.25rem;
     }
     .businessService-card,
     .businessProduct-card {
         padding: 1.5rem 1.25rem 1.25rem;
     }
     .businessService-icon,
     .businessProduct-icon {
         width: 44px;
         height: 44px;
         font-size: 1.15rem;
     }
     .businessService-card h3,
     .businessProduct-card h3 {
         font-size: 1.05rem;
     }
     .businessService-card p,
     .businessProduct-card p {
         font-size: 0.85rem;
     }
     .businessService-card .btn-sm,
     .businessProduct-card .btn-sm {
         padding: 0.4rem 0.9rem;
         font-size: 0.75rem;
     }
 }

 @media (max-width: 480px) {
     .businessService-grid,
     .businessProduct-grid {
         grid-template-columns: 1fr;
         gap: 1rem;
     }
     .businessService-card,
     .businessProduct-card {
         padding: 1.25rem 1rem 1rem;
     }
     .businessService-card .card-actions,
     .businessProduct-card .card-actions {
         flex-direction: column;
         gap: 0.5rem;
     }
     .businessService-card .btn-sm,
     .businessProduct-card .btn-sm {
         justify-content: center;
         width: 100%;
     }
 }