/* ================================================
   RESPONSIVE PROFESSIONAL WEBSITE - CSS
   ================================================
   
   Layout: Fully responsive with flexible units
   Breakpoints: 320px, 375px, 425px, 768px, 1024px, 1440px
   Units: rem/em for typography, %, vw, vh for layouts
   Modern UI: Soft shadows, rounded corners, smooth transitions
   ================================================== */

/* ================================================
   1. ROOT & GLOBAL STYLES
   ================================================== */
:root {
    --color-primary: #1bb3a7;
    --color-primary-dark: #159b90;
    --color-secondary: #0ea5a4;
    --color-tertiary: #ff6347;
    --color-text-dark: #222;
    --color-text-light: #555;
    --color-text-muted: #888;
    --color-bg-light: #f9f9f9;
    --color-bg-lighter: #f5f5f5;
    --color-border: #e0e0e0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.12);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Font Sizing */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   2. CONTAINER & LAYOUT UTILITIES
   ================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    width: 100%;
    overflow-x: hidden;
}

/* ================================================
   3. NAVBAR & NAVIGATION
   ================================================== */
.navbar {
    background: #fff;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    overflow: visible;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Logo */
.logo {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.logo span {
    color: var(--color-secondary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
    z-index: 1001;
}

.hamburger span {
    width: 1.5rem;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 1px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Links */
nav {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    flex-wrap: wrap;
}

.nav-links li {
    cursor: pointer;
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.375rem 0;
    display: block;
}

.nav-links li a:hover {
    color: var(--color-primary);
}

.nav-links li.active {
    background: #eaf4f4;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
}

.nav-links li.active a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 280px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    z-index: 1010;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    border-top: 4px solid var(--color-primary);
    margin-top: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--color-text-dark);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.dropdown-menu li:first-child a {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.dropdown-menu li a:hover {
    background: #eef9f8;
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* ================================================
   4. HERO SECTION
   ================================================== */
.hero {
    height: 90vh;
    min-height: 550px;
    background: url("main.hero.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0c3b5a 30%, rgba(12, 59, 90, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: #19c1b5;
}

.hero p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
    color: #d6e2ea;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    width: 100%;
}

/* ================================================
   5. BUTTONS
   ================================================== */
.btn-primary,
.btn-secondary,
.btn-third {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    min-height: 44px;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #e6e6e6;
    color: var(--color-text-light);
}

.btn-secondary:hover {
    background: #d6d6d6;
    transform: translateY(-2px);
}

.btn-third {
    background: var(--color-tertiary);
    color: #fff;
}

.btn-third:hover {
    background: #e55642;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn {
    padding: 0.75rem 1.5625rem;
    border: none;
    border-radius: 100px;
    background: linear-gradient(90deg, #2a8cff, #26d0ce);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-weight: 500;
    min-height: 42px;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ================================================
   6. ABOUT SECTION
   ================================================== */
.about {
    padding: 3.75rem 5%;
    background: var(--color-bg-light);
    width: 100%;
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.125rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    min-width: 0;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.about-content h1 {
    font-size: 2.625rem;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
}

.about-content h1 span {
    color: var(--color-primary);
}

.about-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 1.5625rem;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.stats .box {
    background: #fff;
    padding: 1.5625rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.stats .box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stats .box h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 0.625rem;
}

.stats .box p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ================================================
   7. SERVICES SECTION
   ================================================== */
.services {
    width: 85%;
    margin: 0 auto;
    padding: 3.75rem 0;
}

.title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.625rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.title span {
    color: #2a8cff;
}

.subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3.125rem;
    font-size: 0.9375rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 3.125rem;
    margin-bottom: 5rem;
}

.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    min-width: 0;
}

.service-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-text {
    flex: 1;
    min-width: 0;
}

.service-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.service-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 0.975rem;
}

.service-text ul {
    margin-top: 0.9375rem;
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.service-text li {
    margin-bottom: 0.625rem;
    color: var(--color-text-light);
    font-size: 0.925rem;
}

/* ================================================
   8. INDUSTRIES SECTION
   ================================================== */
.industries {
    text-align: center;
    padding: 4.375rem 3.75rem;
    width: 100%;
}

.industries h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--color-text-dark);
}

.industries h1 span {
    color: #1da1b9;
}

.industry-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.875rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 2.1875rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.card i {
    font-size: 2.5rem;
    color: #2d8bc0;
    margin-bottom: 0.9375rem;
}

.card h3 {
    font-size: 1.125rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

/* ================================================
   9. TESTIMONIALS SECTION
   ================================================== */
.testimonials {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.75rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sub-title {
    color: #1c7ea6;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.section-header h1 span {
    color: #1c9bb3;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.875rem;
}

.quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.card::after {
    content: "❞";
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    font-size: 2.5rem;
    color: #d6e6ee;
    font-weight: bold;
}

.role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ================================================
   10. CLIENTS SECTION
   ================================================== */
.clients-section {
    padding: 5rem 1.25rem;
    text-align: center;
    width: 100%;
}

.small-title {
    color: #2b8db8;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.9375rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
}

.main-title span {
    color: #2aa4a8;
}

.description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3.75rem;
    line-height: 1.8;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5625rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-box {
    background: #fff;
    padding: 1.375rem 1.875rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-md);
    min-width: fit-content;
    text-align: center;
    transition: var(--transition);
}

.client-box:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   11. CONTACT SECTION
   ================================================== */
.contact-section {
    padding: 4.375rem 2.5rem;
    text-align: center;
    width: 100%;
}

.contact-container {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #1b7fa5, #31a79a);
    color: #fff;
    padding: 3.125rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.info-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 1.5625rem;
    font-size: 1.125rem;
}

.info-item i {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

input,
select {
    flex: 1;
    padding: 1rem;
    border: none;
    background: #eef2f5;
    border-radius: var(--radius-md);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

input:focus,
select:focus {
    background: #e0e8ed;
    box-shadow: 0 0 0 3px rgba(27, 179, 167, 0.1);
}

textarea {
    width: 100%;
    height: 120px;
    padding: 1rem;
    border: none;
    background: #eef2f5;
    border-radius: var(--radius-md);
    font-size: 1rem;
    margin-bottom: 1.5625rem;
    resize: none;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

textarea:focus {
    background: #e0e8ed;
    box-shadow: 0 0 0 3px rgba(27, 179, 167, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.125rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #1b7fa5, #31a79a);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: var(--transition);
    min-height: 44px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================
   12. BOOKING SECTION
   ================================================== */
.banner-content {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("/Assets/bookslot.jpg") center/cover no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 400px;
    width: 100%;
}

.banner-content h1 {
    font-size: 2.625rem;
    margin-bottom: 0.625rem;
    color: #fff;
}

.banner-content p {
    font-size: 1.125rem;
}

.why-book {
    text-align: center;
    padding: 3.75rem 10%;
    width: 100%;
}

.why-book h2 {
    font-size: 2rem;
    margin-bottom: 0.625rem;
    color: var(--color-text-dark);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5625rem;
    margin-top: 2.5rem;
}

.box {
    background: linear-gradient(90deg, #0f6ea7, #20b486);
    padding: 1.5625rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    color: #fff;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box h3 {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
}

.booking-form {
    background: #fff;
    padding: 3.75rem 10%;
    text-align: center;
    width: 100%;
}

.booking-form h2 {
    font-size: 2rem;
    margin-bottom: 0.625rem;
    color: var(--color-text-dark);
}

form {
    max-width: 800px;
    margin: 0 auto;
}

button {
    background: #0f8f75;
    color: #fff;
    border: none;
    padding: 0.875rem;
    width: 100%;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    min-height: 44px;
}

button:hover {
    background: #0c6e5b;
    transform: translateY(-2px);
}

.process {
    text-align: center;
    padding: 4.375rem 10%;
    width: 100%;
}

.process h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-dark);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 3.75rem;
    flex-wrap: wrap;
}

.step {
    max-width: 250px;
}

.number {
    width: 50px;
    height: 50px;
    background: #0f8f75;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9375rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ================================================
   13. FOOTER
   ================================================== */
.footer {
    background: linear-gradient(135deg, #1c7ea6, #2fa89b);
    color: #fff;
    padding: 3.75rem 2.5rem 1.875rem;
    border-radius: var(--radius-lg);
    margin: 1.25rem;
    width: calc(100% - 2.5rem);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2.5rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.footer-col h3 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.footer-col p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #e6f4f6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e6f4f6;
    font-size: 1.0625rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.125rem;
    font-size: 1.0625rem;
    color: #e6f4f6;
}

.contact-item i {
    font-size: 1.125rem;
}

.footer hr {
    margin: 2.5rem 0 1.25rem 0;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.copyright {
    text-align: center;
    color: #e6f4f6;
    font-size: 1rem;
}

/* ================================================
   14. FIXED ELEMENTS
   ================================================== */
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5625rem;
    right: 1.5625rem;
    background: #25D366;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Chat Icon */
.chatbot-icon {
    position: fixed;
    bottom: 6.25rem;
    right: 1.5625rem;
    background: var(--color-secondary);
    color: #fff;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.375rem;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 60px;
    height: 60px;
}

.chatbot-icon:hover {
    transform: scale(1.1);
    background: #0d8b89;
}

/* Chatbox */
.chatbot-box {
    position: fixed;
    bottom: 10rem;
    right: 1.5625rem;
    width: 340px;
    background: #fff;
    border-radius: var(--radius-md);
    display: none;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    z-index: 997;
    animation: slideInUp 0.3s ease;
    max-height: 80vh;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--color-secondary);
    color: #fff;
    padding: 0.625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9375rem;
}

.chat-body {
    height: 250px;
    padding: 0.625rem;
    overflow-y: auto;
    background: var(--color-bg-lighter);
}

.bot-msg {
    background: #e0e0e0;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.3125rem;
    max-width: 80%;
    font-size: 0.875rem;
}

.user-msg {
    background: var(--color-secondary);
    color: #fff;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    margin-left: auto;
    margin-bottom: 0.3125rem;
    max-width: 80%;
    font-size: 0.875rem;
}

.chat-footer {
    display: flex;
    border-top: 1px solid var(--color-border);
    min-height: 44px;
}

.chat-footer input {
    flex: 1;
    border: none;
    padding: 0.625rem;
    outline: none;
    font-size: 0.875rem;
    font-family: inherit;
}

.chat-footer button {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 0.625rem 1rem;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    width: auto;
    transition: var(--transition);
    min-height: 44px;
}

.chat-footer button:hover {
    background: #0d8b89;
}

/* ================================================
   15. RESPONSIVE MEDIA QUERIES
   ================================================== */

/* ===== EXTRA SMALL (320px - 374px) ===== */
@media screen and (max-width: 374px) {
    html {
        font-size: 14px;
    }

    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
    }

    .container {
        width: 95%;
        padding: 0 0.5rem;
    }

    /* Navbar - Enhanced Mobile Menu */
    .navbar {
        padding: 0.625rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        height: 56px;
    }

    .nav-container {
        width: 95%;
        padding: 0 0.75rem;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 1rem;
        gap: 0.3rem;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .hamburger {
        display: flex !important;
        cursor: pointer;
        gap: 0.25rem;
        z-index: 1001;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }

    .hamburger span {
        width: 1.25rem;
        height: 2px;
        background: var(--color-text-dark);
        border-radius: 1px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        display: flex !important;
    }

    nav.active {
        max-height: calc(100vh - 56px);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
    }

    .nav-links li a {
        font-size: 0.8rem;
        font-weight: 500;
        display: block;
        padding: 0.9rem 1.125rem;
        text-decoration: none;
        color: var(--color-text-light);
        transition: all 0.2s ease;
    }

    .nav-links li a:hover {
        color: var(--color-primary);
        background: #f5f5f5;
        padding-left: 1.375rem;
    }

    .nav-links li.active {
        background: #eaf4f4;
        padding: 0;
        border-radius: 0;
    }

    .nav-links li.active a {
        color: var(--color-primary);
        font-weight: 600;
        background: #eaf4f4;
    }

    .dropdown-menu {
        position: static;
        display: flex !important;
        box-shadow: none;
        padding: 0;
        background: #f5f5f5;
        width: 100%;
        border-radius: 0;
        border-left: 4px solid var(--color-primary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        flex-direction: column;
        opacity: 0;
        z-index: 1010;
        visibility: hidden;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu li a {
        padding: 0.8rem 1.125rem 0.8rem 2.1875rem;
        font-size: 0.75rem;
        display: block;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        color: var(--color-text-light);
    }

    .dropdown-menu li a:hover {
        background: #efefef;
        color: var(--color-primary);
        border-left-color: var(--color-primary);
        padding-left: 2.375rem;
    }

    .dropdown.active .dropdown-menu {
        display: flex !important;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            max-height: 500px;
        }
    }

    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
        margin-top: 56px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-third {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    /* About */
    .about {
        padding: 2rem 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content h1 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stats .box {
        padding: 1rem;
    }

    .stats .box h2 {
        font-size: 1.25rem;
    }

    .stats .box p {
        font-size: 0.7rem;
    }

    /* Services */
    .services {
        width: 95%;
        padding: 2rem 0;
    }

    .title {
        font-size: 1.25rem;
    }

    .service-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .service-text h2 {
        font-size: 1rem;
    }

    .service-text p {
        font-size: 0.8rem;
    }

    .service-img img {
        max-width: 100%;
    }

    /* Industries */
    .industries {
        padding: 2rem 1rem;
    }

    .industries h1 {
        font-size: 1.25rem;
    }

    .industry-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1rem;
    }

    .card i {
        font-size: 1.5rem;
    }

    .card h3 {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonials {
        width: 95%;
        padding: 2rem 0;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .section-header h1 {
        font-size: 1.25rem;
    }

    .quote {
        font-size: 0.8rem;
    }

    /* Clients */
    .clients-section {
        padding: 2rem 1rem;
    }

    .main-title {
        font-size: 1.25rem;
    }

    .description {
        font-size: 0.8rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .client-box {
        padding: 1rem;
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1rem;
    }

    .info-text {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    input,
    select,
    textarea {
        font-size: 0.875rem;
        padding: 0.75rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Booking */
    .banner-content {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .banner-content h1 {
        font-size: 1.25rem;
    }

    .why-book {
        padding: 2rem 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 2rem 1rem;
    }

    .process {
        padding: 2rem 1rem;
    }

    .steps {
        gap: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
        margin: 0.5rem;
        width: calc(100% - 1rem);
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-col h2 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 0.8rem;
    }

    /* Fixed Elements */
    .whatsapp-btn {
        bottom: 1rem;
        right: 0.75rem;
        width: 48px;
        height: 48px;
        padding: 0.5rem;
    }

    .whatsapp-btn img {
        width: 24px;
        height: 24px;
    }

    .chatbot-icon {
        bottom: 5.5rem;
        right: 0.75rem;
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .chatbot-box {
        bottom: 6.5rem;
        right: 0.75rem;
        width: calc(100% - 1.5rem);
        max-width: 280px;
        left: 0.75rem;
    }

    .chat-body {
        height: 180px;
    }
}

/* ===== SMALL (375px - 425px) ===== */
@media screen and (min-width: 375px) and (max-width: 425px) {
    html {
        font-size: 15px;
    }

    /* Navbar - Enhanced Mobile Menu */
    .navbar {
        padding: 0.75rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-container {
        width: 95%;
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.125rem;
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 1.625rem;
        height: 1.625rem;
    }

    .hamburger {
        display: flex !important;
        cursor: pointer;
        gap: 0.25rem;
        z-index: 1001;
    }

    .hamburger span {
        width: 1.25rem;
        height: 2px;
        background: var(--color-text-dark);
        border-radius: 1px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        display: flex !important;
    }

    nav.active {
        max-height: calc(100vh - 56px);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
    }

    .nav-links li a {
        font-size: 0.85rem;
        font-weight: 500;
        display: block;
        padding: 1rem 1.125rem;
        text-decoration: none;
        color: var(--color-text-light);
        transition: all 0.2s ease;
    }

    .nav-links li a:hover {
        color: var(--color-primary);
        background: #f5f5f5;
        padding-left: 1.375rem;
    }

    .nav-links li.active {
        background: #eaf4f4;
        padding: 0;
        border-radius: 0;
    }

    .nav-links li.active a {
        color: var(--color-primary);
        font-weight: 600;
        background: #eaf4f4;
    }

    .dropdown-menu {
        position: static;
        display: flex !important;
        box-shadow: none;
        padding: 0;
        background: #f5f5f5;
        width: 100%;
        border-radius: 0;
        border-left: 4px solid var(--color-primary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        flex-direction: column;
        opacity: 0;
        z-index: 1010;
        visibility: hidden;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu li a {
        padding: 0.8rem 1.125rem 0.8rem 2.25rem;
        font-size: 0.8rem;
        display: block;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        color: var(--color-text-light);
    }

    .dropdown-menu li a:hover {
        background: #efefef;
        color: var(--color-primary);
        border-left-color: var(--color-primary);
        padding-left: 2.375rem;
    }

    .dropdown.active .dropdown-menu {
        display: flex !important;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            max-height: 500px;
        }
    }

    /* Similar to above but with slightly larger sizes */
    .hero {
        margin-top: 56px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .about-content h1 {
        font-size: 1.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .industries h1 {
        font-size: 1.5rem;
    }

    .section-header h1 {
        font-size: 1.5rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    .chatbot-icon {
        width: 52px;
        height: 52px;
    }

    .chatbot-box {
        width: calc(100% - 1.5rem);
        max-width: 300px;
    }
}

/* ===== MEDIUM (426px - 768px) ===== */
@media screen and (min-width: 426px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        width: 92%;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        z-index: 1000;
        display: flex !important;
    }

    nav.active {
        max-height: 600px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1.25rem 0;
        width: 100%;
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0.9375rem 1.5625rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        display: flex !important;
        box-shadow: none;
        background: #f9f9f9;
        width: 100%;
        border-radius: 0;
        flex-direction: column;
        max-height: 600px;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1010;
        visibility: hidden;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu li a {
        padding: 0.875rem 3.125rem;
        font-size: 0.9rem;
        display: block;
        transition: all 0.2s ease;
        color: var(--color-text-light);
    }

    .dropdown-menu li a:hover {
        background: #f0f0f0;
        color: var(--color-primary);
    }

    .dropdown.active .dropdown-menu {
        display: flex !important;
        max-height: 600px;
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 2.5rem 1.875rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* About */
    .about-container {
        flex-direction: row;
        gap: 2.1875rem;
    }

    .about-content h1 {
        font-size: 1.75rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Services */
    .services {
        width: 90%;
    }

    .service-row {
        gap: 2.1875rem;
        margin-bottom: 3.75rem;
    }

    .service-text h2 {
        font-size: 1.5rem;
    }

    /* Industries */
    .industry-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5625rem;
    }

    /* Testimonials */
    .testimonial-container {
        grid-template-columns: 1fr;
    }

    /* Clients */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    /* Contact */
    .contact-container {
        flex-direction: column;
        gap: 1.875rem;
    }

    .form-row {
        flex-direction: column;
    }

    /* Booking */
    .banner-content {
        padding: 3.75rem 1.875rem;
    }

    .why-book {
        padding: 3.125rem 1.875rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        padding: 3.125rem 1.875rem;
    }

    /* Footer */
    .footer-container {
        flex-wrap: wrap;
        gap: 2.1875rem;
    }

    .footer-col {
        flex: 0 1 calc(50% - 1.09375rem);
    }

    /* Fixed Elements */
    .whatsapp-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 56px;
        height: 56px;
    }

    .chatbot-icon {
        bottom: 5.3125rem;
        right: 1.25rem;
        width: 56px;
        height: 56px;
    }

    .chatbot-box {
        bottom: 6.5625rem;
        right: 1.25rem;
        width: 320px;
    }
}

/* ===== LARGE (769px - 1199px) ===== */
/* ===== LARGE DESKTOP (769px - 1023px) ===== */
@media screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }

    nav {
        display: block !important;
        max-height: none !important;
    }

    .nav-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .nav-links li {
        padding: 0;
        border: none;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        width: 280px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        display: flex;
        flex-direction: column;
        padding: 0.75rem 0;
        margin-top: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1010;
        border-radius: var(--radius-md);
        border-top: 4px solid var(--color-primary);
        transform: translateY(-4px);
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu li a {
        padding: 0.875rem 1.25rem;
        display: block;
        transition: all 0.3s ease;
        color: var(--color-text-dark);
        text-decoration: none;
        border-left: 3px solid transparent;
        font-weight: 500;
    }

    .dropdown-menu li a:hover {
        background: #eef9f8;
        color: var(--color-primary);
        border-left-color: var(--color-primary);
        padding-left: 1.5rem;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* ===== 1024px LAPTOP OPTIMIZATION ===== */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .hamburger {
        display: none;
    }

    nav {
        display: block !important;
        max-height: none !important;
    }

    .nav-container {
        width: 95%;
        padding: 0;
    }

    .logo {
        font-size: 1.125rem;
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .nav-links {
        flex-direction: row;
        gap: 0.875rem;
        font-size: 0.75rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        padding: 0;
        border: none;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-links li a {
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.25rem 0;
        text-decoration: none;
        color: var(--color-text-light);
    }

    .nav-links li a:hover {
        color: var(--color-primary);
    }

    .nav-links li.active {
        background: #eaf4f4;
        padding: 0.25rem 0.5rem;
        border-radius: 15px;
    }

    .nav-links li.active a {
        color: var(--color-primary);
        font-weight: 600;
    }

    .btn-primary,
    .btn-secondary,
    .btn-third {
        padding: 0.625rem 1rem;
        font-size: 0.7rem;
        border-radius: 0.75rem;
    }

    .dropdown-menu {
        position: absolute;
        display: none;
        background: #fff;
        width: 180px;
        box-shadow: var(--shadow-lg);
        top: 1.875rem;
        left: -1.5rem;
        padding: 0.5rem 0;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
    }

    .dropdown-menu li a {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

    /* Hero */
    .hero {
        height: 90vh;
        min-height: 650px;
        padding: 0;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* About */
    .about-container {
        flex-direction: row;
        gap: 3.125rem;
    }

    .about-content h1 {
        font-size: 2.625rem;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Services */
    .services {
        width: 85%;
    }

    .service-row {
        gap: 3.125rem;
        margin-bottom: 5rem;
    }

    /* Industries */
    .industry-container {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Testimonials */
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Clients */
    .clients-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Contact */
    .contact-container {
        flex-direction: row;
        gap: 2.5rem;
    }

    .form-row {
        flex-direction: row;
    }

    /* Booking */
    .banner-content {
        min-height: 450px;
    }

    .booking-form {
        max-width: 100%;
    }

    /* Footer */
    .footer-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
        min-width: 200px;
    }

    /* Fixed Elements */
    .whatsapp-btn {
        bottom: 1.5625rem;
        right: 1.5625rem;
        width: 60px;
        height: 60px;
    }

    .chatbot-icon {
        bottom: 6.25rem;
        right: 1.5625rem;
        width: 60px;
        height: 60px;
    }

    .chatbot-box {
        bottom: 10rem;
        right: 1.5625rem;
        width: 340px;
    }


/* ===== EXTRA LARGE (1200px+) ===== */
@media screen and (min-width: 1200px) {
    .container {
        width: 90%;
        max-width: 1200px;
    }

    .services {
        width: 85%;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

    /* Optimize card layouts */
    .industry-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.875rem;
    }

    .clients-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ULTRA WIDE (1440px+) ===== */
@media screen and (min-width: 1440px) {
    :root {
        --font-size-base: 1.0625rem;
    }

    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .about-content h1 {
        font-size: 2.8rem;
    }
}

/* ================================================
   16. UTILITY CLASSES & ANIMATIONS
   ================================================== */

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Smooth animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .whatsapp-btn,
    .chatbot-icon,
    .chatbot-box,
    .navbar {
        display: none;
    }
}
