/* ===================================
   Ambulance Services - Modern CSS
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #303660;
    --secondary-color: #303660;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --success: #28a745;
    
    /* Fonts */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-bar {
    background: var(--dark-color);
    color: var(--white);
}

.header-top {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons a {
    color: var(--white);
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.header-main {
    padding: 15px 0;
    background: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Close Button - Hidden on Desktop by default */
.mobile-menu-close {
    display: none !important;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.logo-icon .fa-heart {
    color: var(--white);
    font-size: 24px;
    position: absolute;
}

.logo-icon .fa-plus {
    color: var(--white);
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text h1 {
    color: var(--dark-color);
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.logo-text p {
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}

/* Navigation */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.navbar > ul > li {
    position: relative;
}

.navbar > ul > li > a {
    display: block;
    padding: 12px 18px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 5px;
}

.navbar > ul > li > a:hover,
.navbar > ul > li > a.active {
    color: var(--primary-color);
    background: var(--light-color);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-request,
.btn-login {
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-request {
    background: var(--primary-color);
    color: var(--white);
}

.btn-request:hover {
    background: #1a1d3a;
}

.btn-login {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
}

.btn-login:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(48 54 96) 0%, rgba(200, 35, 51, 0.5) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.hero-image-section {
    position: relative;
}

.hero-ambulance {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-text-section {
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-enquire {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-enquire:hover {
    background: #1a1d3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #1a1d3a;
    color: #ffffff;
    border-color: #1a1d3a;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-read-more {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
    background: var(--primary-color);
    padding: 7px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}
* 

.btn-read-more:hover {
    background: #fff;
    color: var(--secondary-color);
    padding-left: 5px;
    border: 1px solid var(--primary-color);
}

/* Page Header */
.page-header {
    position: relative;
    background: url('../images/banner-2.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 54, 96, 0.85) 0%, rgba(26, 29, 58, 0.75) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1d3a 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Detail Section */
.service-detail-section {
    padding: var(--spacing-xl) 0;
    background: #f5f5f5;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column */
.service-detail-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-image-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-welcome-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-welcome-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.service-welcome-card p:last-child {
    margin-bottom: 0;
}

.welcome-text-continue {
    color: var(--text-light);
}

/* Right Column */
.service-detail-right {
    display: flex;
    align-items: flex-start;
}

.service-main-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

.service-main-card h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-accent-line {
    width: 60px;
    height: 4px;
    background: #303660;
    margin-bottom: 20px;
    border-radius: 2px;
}

.service-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features-section {
    margin-top: 30px;
}

.features-heading {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.features-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #303660;
    border-radius: 2px;
}

.features-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list-modern li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.features-list-modern li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #303660;
    font-size: 16px;
    font-weight: 600;
}

/* Book Service Section */
.book-service-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-book-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(48, 54, 96, 0.3);
}

.btn-book-service:hover {
    background: #1a1d3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 54, 96, 0.4);
}

.btn-book-service i {
    font-size: 20px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.why-choose-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-choose-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-choose-card.highlighted {
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
    transition: all 0.3s;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
    background: #1a1d3a;
}

.why-choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-choose-card.highlighted h3 {
    color: var(--primary-color);
}

.why-choose-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* About Section Home */
.about-section-home {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text-content {
    padding-right: 20px;
}

.about-text-content .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.about-text-content .lead-text {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.about-features li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.about-image-content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image-content:hover img {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 28px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-box h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info-box > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    color: var(--dark-color);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Happy Clients Section */
.happy-clients-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1d3a 100%);
    color: var(--white);
}

.happy-clients-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-color);
}

.gallery-section .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48,54,96,0.8) 0%, rgba(26,29,58,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 40px;
}

/* Feedback Section */
.feedback-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feedback-section .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feedback-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feedback-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 18px;
}

.feedback-rating i {
    margin-right: 3px;
}

.feedback-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1d3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: row;
        align-items: center;
    }
    
    .navbar {
        width: 100%;
        margin: 15px 0;
    }
    
    .header-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-section {
        order: 2;
    }
    
    .hero-text-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header {
        z-index: 1001;
    }
    
    .header-top-bar {
        display: none;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .header-content {
        flex-wrap: nowrap;
        flex-direction: row;
        position: relative;
        align-items: center;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .logo-section {
        flex: 0 0 auto;
    }
    
    .logo-image {
        height: 50px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
        order: 2;
    }
    
    .mobile-menu-close {
        display: none;
        position: relative;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        z-index: 1003;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        pointer-events: all;
        order: 3;
        margin-right: 15px;
    }
    
    .mobile-menu-close:hover {
        background: #1a1d3a;
        transform: scale(1.1);
    }
    
    .mobile-menu-close:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-close i {
        pointer-events: none;
    }
    
    .logo-section {
        order: 1;
    }
    
    /* Hide logo in mobile menu */
    .navbar .logo-section {
        display: none;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        z-index: 1002;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        order: unset;
        margin-top: 0;
        display: flex;
        pointer-events: all;
    }
    
    .navbar.mobile-active {
        right: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding: 0 20px 20px;
        list-style: none;
    }
    
    .navbar > ul > li {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .navbar > ul > li > a {
        width: 100%;
        text-align: left;
        padding: 15px;
        border-radius: 8px;
        font-size: 15px;
        display: block;
        pointer-events: all;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle i {
        float: right;
        margin-top: 3px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu li a {
        padding: 12px 25px;
        font-size: 14px;
        pointer-events: all;
        cursor: pointer;
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: all;
    }
    
    /* Overlay should not block navbar clicks */
    .navbar.mobile-active ~ .mobile-menu-overlay,
    .mobile-menu-overlay.active {
        pointer-events: auto;
    }
    
    /* When navbar is active, overlay should allow clicks through to navbar area */
    .navbar.mobile-active {
        pointer-events: auto !important;
    }
    
    /* Ensure navbar is above overlay and fully clickable */
    .navbar.mobile-active {
        pointer-events: all !important;
        z-index: 1002 !important;
    }
    
    .navbar.mobile-active,
    .navbar.mobile-active *,
    .navbar.mobile-active a,
    .navbar.mobile-active button,
    .navbar.mobile-active li {
        pointer-events: all !important;
        cursor: pointer !important;
        position: relative;
        z-index: 1003;
    }
    
    
    .navbar.mobile-active a,
    .navbar.mobile-active button {
        pointer-events: all !important;
        cursor: pointer !important;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content-wrapper {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image-content {
        order: -1;
    }
    
    .clients-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 150px;
    }
    
    .clients-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .service-main-card {
        padding: 25px;
    }
    
    .service-main-card h1 {
        font-size: 28px;
    }
    
    .service-detail-wrapper {
        gap: 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
}

/* Fixed WhatsApp and Call Buttons */
.fixed-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: var(--primary-color);
}

.call-btn:hover {
    background: #1a1d3a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(48, 54, 96, 0.4);
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark-color);
}

.fixed-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 768px) {
    .fixed-contact-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .fixed-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .btn-tooltip {
        display: none;
    }
}

