/* ============================================
   Kridha Care Crew - Main Stylesheet
   Professional Home Healthcare Services
   ============================================ */

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

:root {
    --primary: #f06b5c;
    --primary-dark: #c84f3d;
    --secondary: #244b5a;
    --accent: #4f9c93;
    --light: #f8efe2;
    --gray: #9dc6c1;
    --dark: #23364a;
    --text: #2f4254;
    --muted: #6b7a86;
    --white: #ffffff;
    --bg-light: #f7f3ea;
    --shadow: 0 4px 20px rgba(36, 75, 90, 0.08);
    --shadow-lg: 0 10px 40px rgba(36, 75, 90, 0.12);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, #f06b5c 0%, #c84f3d 100%);
    --gradient-blue: linear-gradient(135deg, #244b5a 0%, #4f9c93 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

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

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

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

.section-title p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.88rem;
}

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

.top-bar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    color: var(--primary);
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.top-bar-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-menu > li > a {
    padding: 10px 16px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: rgba(230, 57, 70, 0.08);
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-menu .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub-submenu (3rd level) */
.nav-menu .dropdown-menu .has-submenu {
    position: relative;
}

.nav-menu .dropdown-menu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 101;
    max-height: 70vh;
    overflow-y: auto;
}

.nav-menu .dropdown-menu .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-menu .dropdown-menu .has-submenu > a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    margin-left: 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

.nav-menu .dropdown-menu .has-submenu:hover > a {
    background: var(--bg-light);
    color: var(--primary);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: var(--text);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--secondary);
    cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.85), rgba(69, 123, 157, 0.75)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920') center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.2), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text .badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary);
    display: block;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Hero enquiry form */
.enquiry-form {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.enquiry-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.enquiry-form .form-group,
.enquiry-form .form-row {
    margin-bottom: 0;
}

.enquiry-form .form-group.full-width,
.enquiry-form button.full-width,
.enquiry-form textarea.full-width {
    grid-column: span 2;
}

.enquiry-form h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
}

.enquiry-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

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

.enquiry-form button {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.enquiry-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* ============================================
   Page Banner
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(230, 57, 70, 0.7)), url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=1920') center/cover;
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.page-banner .breadcrumb a:hover {
    color: var(--primary);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 80px 0;
    background: var(--white);
}

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

.career-openings .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
    text-align: center;
    padding: 22px 14px 18px;
    border: 1px solid #f0f0f0;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.service-content {
    padding: 0 4px;
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 600;
}

.service-content p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.service-links a {
    width: 100%;
    max-width: 160px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.service-links .book {
    background: var(--primary);
    color: var(--white);
}

.service-links .book:hover {
    background: var(--primary-dark);
}

.service-links .call {
    background: var(--bg-light);
    color: var(--secondary);
    border: 1px solid #e0e0e0;
}

.service-links .call:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* ============================================
   Medical Equipment Section
   ============================================ */
.equipment {
    padding: 90px 0;
    background: var(--bg-light);
}

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

.equipment-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.equipment-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.equipment-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--bg-light);
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.08);
}

.equipment-card h4 {
    margin: 16px 0 8px;
    font-size: 1rem;
    color: var(--secondary);
}

.equipment-card .price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.equipment-card .actions {
    display: flex;
    gap: 6px;
    padding: 0 12px 16px;
    justify-content: center;
}

.equipment-card .actions a {
    flex: 1;
    padding: 8px 6px;
    border-radius: 6px;
    font-size: 0.78rem;
    text-align: center;
    font-weight: 600;
}

.equipment-card .rent {
    background: var(--primary);
    color: var(--white);
}

.equipment-card .rent:hover {
    background: var(--primary-dark);
}

.equipment-card .call {
    background: var(--secondary);
    color: var(--white);
}

.equipment-card .call:hover {
    background: var(--dark);
}

/* ============================================
   On-Call Services
   ============================================ */
.oncall {
    padding: 90px 0;
    background: var(--white);
}

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

.oncall-card {
    background: linear-gradient(135deg, var(--white), var(--bg-light));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 3px solid var(--primary);
}

.oncall-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.oncall-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.oncall-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f5, #fce8e8);
    margin-bottom: 12px;
}

.oncall-icon i {
    font-size: 2.4rem;
    color: var(--primary);
}

.oncall-card h4 {
    padding: 12px 12px 6px;
    font-size: 0.95rem;
}

.oncall-card .actions {
    display: flex;
    gap: 6px;
    padding: 0 12px;
    justify-content: center;
}

.oncall-card .actions a {
    flex: 1;
    padding: 7px 0;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.oncall-card .read {
    background: var(--secondary);
    color: var(--white);
}

.oncall-card .call {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-us {
    padding: 90px 0;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
}

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

.why-us .section-title h2::after {
    background: var(--primary);
}

.why-us .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.feature-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================
   About / Info Section
   ============================================ */
.about-section {
    padding: 90px 0;
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: var(--white);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge .number {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.about-image .experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .small-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.about-list i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ============================================
   Stats / Counter
   ============================================ */
.stats {
    padding: 60px 0;
    background: var(--gradient);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: 90px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 22px;
    font-size: 4.5rem;
    color: rgba(230, 57, 70, 0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 2px;
    font-size: 1rem;
    color: var(--secondary);
}

.testimonial-author .date {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ============================================
   Awards
   ============================================ */
.awards {
    padding: 80px 0;
    background: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.award-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    background: var(--bg-light);
    transition: var(--transition);
}

.award-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.award-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.award-card .award-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.4rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    transition: var(--transition);
}

.award-card:hover .award-icon {
    transform: scale(1.1) rotate(-5deg);
}

.award-card h5 {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.92), rgba(230, 57, 70, 0.85)), url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=1920') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 90px 0;
    background: var(--white);
}

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

.contact-info {
    background: var(--secondary);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 14px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info > p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item .info h5 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-item .info p,
.contact-item .info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item .info a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 14px;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* Map */
.map-section {
    padding: 0 0 60px;
}

.map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

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

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 90px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 14px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: #0f1a2e;
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary);
    font-weight: bold;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 55px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-contact {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.88rem;
}

/* ============================================
   WhatsApp / Floating Buttons
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   Service Detail / Process
   ============================================ */
.process {
    padding: 90px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 25px 18px;
    position: relative;
}

.process-step .number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.process-step h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.process-step p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================
   Detailed Service Page (Careoxy Style)
   ============================================ */
.service-hero {
    position: relative;
    min-height: 480px;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(69, 123, 157, 0.85)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920') center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

.service-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.6;
}

.service-enquiry-bar {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    margin-top: 30px;
}

.service-enquiry-bar .form-group {
    margin-bottom: 0;
}

.service-enquiry-bar input,
.service-enquiry-bar select {
    padding: 10px 14px;
    font-size: 0.88rem;
    background: var(--bg-light);
}

.service-enquiry-bar button {
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.service-enquiry-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* What We Provide */
.provide-section {
    padding: 80px 0;
    background: var(--white);
}

.provide-section.bg-alt {
    background: var(--bg-light);
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provide-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.provide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.provide-card .img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.provide-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.provide-card:hover .img-wrap img {
    transform: scale(1.06);
}

.provide-card .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}

.provide-card .card-body {
    padding: 24px 22px;
}

.provide-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.provide-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.provide-card .card-actions {
    display: flex;
    gap: 8px;
}

.provide-card .card-actions a {
    flex: 1;
    padding: 9px 12px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
}

.provide-card .card-actions .book {
    background: var(--primary);
    color: var(--white);
}

.provide-card .card-actions .call {
    background: var(--bg-light);
    color: var(--secondary);
    border: 1px solid #e0e0e0;
}

/* Variations Grid */
.variations-section {
    padding: 80px 0;
    background: var(--white);
}

.variations-section.bg-alt {
    background: var(--bg-light);
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.variation-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border-left: 4px solid transparent;
}

.variation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
}

.variation-card .var-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-light);
}

.variation-card .var-content h4 {
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.variation-card .var-content p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.variation-card .var-actions {
    display: flex;
    gap: 6px;
}

.variation-card .var-actions a {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.variation-card .var-actions .book {
    background: var(--primary);
    color: var(--white);
}

.variation-card .var-actions .call {
    background: var(--bg-light);
    color: var(--secondary);
}

/* For Whom Section (accordions) */
.for-whom {
    padding: 80px 0;
    background: var(--white);
}

.for-whom-list {
    max-width: 850px;
    margin: 40px auto 0;
}

.for-whom-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.for-whom-item:hover {
    box-shadow: var(--shadow-lg);
}

.for-whom-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.02rem;
}

.for-whom-question .fw-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.for-whom-question i {
    margin-left: auto;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.for-whom-item.active .for-whom-question i {
    transform: rotate(180deg);
}

.for-whom-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.for-whom-item.active .for-whom-answer {
    max-height: 600px;
}

.for-whom-answer .answer-inner {
    padding: 0 25px 22px 90px;
    color: var(--muted);
    line-height: 1.7;
}

.for-whom-answer ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.for-whom-answer ul li {
    padding: 4px 0;
    position: relative;
    padding-left: 22px;
}

.for-whom-answer ul li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Why Choose Grid (icons) */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--bg-light);
}

.why-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-item .why-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.why-item .why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(69, 123, 157, 0.12));
    color: var(--primary);
    font-size: 1.9rem;
    box-shadow: inset 0 0 0 1px rgba(230, 57, 70, 0.12);
}

.why-item:hover .why-icon {
    transform: translateY(-2px);
}

.why-item h5 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

/* Profile Cards */
.profile-section {
    padding: 80px 0;
    background: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.profile-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.profile-card .profile-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.profile-card .profile-body {
    padding: 22px 18px;
}

.profile-card h5 {
    color: var(--secondary);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.profile-card .role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.profile-card .skills {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 16px;
    text-align: left;
    background: var(--bg-light);
    padding: 10px 14px;
    border-radius: 8px;
}

.profile-card .profile-btn {
    display: inline-block;
    padding: 9px 28px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.profile-card .profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* How to Book */
.book-steps {
    padding: 80px 0;
    background: var(--white);
}

.book-steps.bg-alt {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-card .step-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--bg-light);
}

.step-card .step-number {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.step-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Call Strip */
.call-strip {
    background: var(--gradient);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.call-strip h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.call-strip p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.call-strip .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
}

.call-strip .phone-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Content Section (long-form text) */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section.bg-alt {
    background: var(--bg-light);
}

.content-section h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-section h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.content-section p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.96rem;
}

.content-section ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.content-section ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--text);
}

.content-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 8px;
}

/* Service Sub-Nav (submenu) */
.service-subnav {
    background: var(--secondary);
    padding: 14px 0;
    position: sticky;
    top: 78px;
    z-index: 99;
    box-shadow: var(--shadow);
}

.service-subnav ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-subnav ul li a {
    color: rgba(255,255,255,0.85);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-subnav ul li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* ============================================
   Logo - Image Only
   ============================================ */
.navbar .logo img {
    height: 60px;
    width: auto;
    max-width: 220px;
}

/* ============================================
   Hero Form - 2x2 Grid Layout
   ============================================ */
.service-enquiry-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.service-enquiry-bar .form-group {
    margin-bottom: 0;
}

.service-enquiry-bar .form-group.full-width {
    grid-column: span 2;
}

.service-enquiry-bar input,
.service-enquiry-bar select,
.service-enquiry-bar textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
    background: var(--bg-light);
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    font-family: inherit;
}

.service-enquiry-bar button,
.service-enquiry-bar .btn-submit {
    padding: 12px 18px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-size: 0.9rem;
}

.service-enquiry-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

@media (max-width: 992px) {
    .service-enquiry-bar {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* ============================================
   Hero - Shine Color Overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    background:
        linear-gradient(135deg, rgba(230, 57, 70, 0.3) 0%, rgba(193, 18, 31, 0.2) 30%, rgba(29, 53, 87, 0.5) 60%, rgba(69, 123, 157, 0.4) 100%),
        linear-gradient(135deg, rgba(29, 53, 87, 0.6), rgba(69, 123, 157, 0.4)),
        url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=1920') center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.5) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    animation: shine-pulse 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69, 123, 157, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    animation: shine-pulse 6s ease-in-out infinite 3s;
}

@keyframes shine-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.service-hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(29, 53, 87, 0.45) 50%, rgba(69, 123, 157, 0.35) 100%),
        linear-gradient(135deg, rgba(29, 53, 87, 0.7), rgba(69, 123, 157, 0.5));
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    animation: shine-pulse 6s ease-in-out infinite;
    z-index: 1;
}

/* ============================================
   SVG Icons for Services & Equipment
   ============================================ */
.svg-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.svg-icon-large {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    display: block;
}

.svg-icon-xlarge {
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    display: block;
}

.svg-icon-card {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    border-radius: 14px 14px 0 0;
    padding: 20px;
    transition: var(--transition);
}

.svg-icon-card-large {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f5 0%, #fce8e8 100%);
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 15px;
}

.svg-icon-card-large i {
    font-size: 3rem;
    color: var(--primary);
}

.service-card:hover .svg-icon,
.service-card:hover .svg-icon-large,
.service-card:hover .svg-icon-xlarge,
.equipment-card:hover .svg-icon,
.equipment-card:hover .svg-icon-large {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.3));
}

.service-card,
.equipment-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.service-card:hover,
.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 { font-size: 2.4rem; }

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

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 75px);
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        align-items: stretch;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        border-radius: 0;
    }

    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        display: none;
    }

    .nav-menu .dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-menu .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        max-height: none;
        display: none;
    }

    .nav-menu .dropdown-menu .has-submenu.open .submenu {
        display: block;
    }

    .nav-menu .dropdown-menu .has-submenu > a::after {
        content: '\f107';
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        font-size: 0.78rem;
        gap: 12px;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .about-image img {
        height: 350px;
    }

    .about-image .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 18px;
    }

    .about-image .experience-badge .number {
        font-size: 1.8rem;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .oncall-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .oncall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    .enquiry-form form {
        grid-template-columns: 1fr;
    }
    .enquiry-form .form-group.full-width,
    .enquiry-form button.full-width,
    .enquiry-form textarea.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.9rem; }
    .section-title h2 { font-size: 1.5rem; }
    .btn { padding: 12px 22px; font-size: 0.88rem; }
}
