/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8556;
    --secondary-color: #004E89;
    --secondary-dark: #003D6B;
    --accent-color: #FFA630;

    --text-primary: #1A1A2E;
    --text-secondary: #5A5A6E;
    --text-light: #8A8A9E;

    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F0F2F5;

    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

/* Logo Styling - Large, Clear and Visible */
.logo {
    display: inline-block;
    line-height: 0;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-img {
    width: 200px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.btn-call:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('banner-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.05) 0%,
            rgba(0, 78, 137, 0.05) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 78, 137, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 900px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #ef612f;
    border: 1px solid rgb(255 255 255);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.feature-text span {
    font-size: 15px;
    color: #fff;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-normal);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-area {
    padding: 30px 0;
    background: #f8f9fc;
    font-family: "DM Sans", sans-serif;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-col {
    flex: 1;
}

.about-left img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.about-right {
    text-align: left;
}

.tagline {
    color: #ff6b00;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.about-right h2 {
    font-size: 30px;
    color: #163b66;
    margin: 5px 0 1px;
    text-align: left;
}

.about-right p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-right ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-right ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6b00;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 30px 0;
    background: #f4f6f9;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #163b66;
    margin-bottom: 20px;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
}

.active-card {
    border-bottom: 5px solid #ff4d2e;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a3d62;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-book {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #ff4d2e;
    color: #ff4d2e;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: #ff4d2e;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
}

.why-card .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.why-card p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 30px 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 17px;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-fast);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-hero {
    padding: 80px 20px;
    color: #000;
    font-family: 'DM Sans', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.trusted-badge {
    background: #003f75;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    color: #00d4ff;
}

.contact-left h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-left h1 span {
    color: #ff5a3c;
}

.contact-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.contact-features li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}

.call-btn {
    display: inline-block;
    background: #ff5a3c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-btn:hover {
    background: #ff3d1f;
}

.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.booking-card {
    background: #0b1e3b;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.booking-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.booking-card p {
    font-size: 14px;
    color: #b0c4ff;
    margin-bottom: 25px;
}

.booking-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-card select,
.booking-card input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #0f2a50;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.booking-card select:focus,
.booking-card input:focus {
    border-color: #00d4ff;
}

.booking-card button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #e3710f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking-card button:hover {
    opacity: 0.9;
}

/* ===================================
   POPUP & MOBILE ACTION BAR
   =================================== */
.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.offer-card {
    background: #ffffff;
    width: 90%;
    max-width: 380px;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.offer-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.offer-close:hover {
    color: #000;
}

.offer-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.offer-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
}

.mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.whatsapp-btn {
    background: #25d366;
}

.mobile-action-bar .call-btn {
    background: #ff3c00;
}

/* ===================================
   FOOTER
   =================================== */


/* Footer */
.footer-bottom {
    /* background: #111; */
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    color: #fff;
    font-size: 14px;
}

.footer-copyright a {
    color: #f5b400;
    text-decoration: none;
    margin: 0 5px;
    cursor: pointer;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 8% auto;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content h3 {
    margin-top: 0;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    color: #000;
}



.footer {
    background: #0b1e3b;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-description {
    /* opacity: 0.8; */
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    /* opacity: 0.8; */
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ff3c00;
    color: #fff;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    /* opacity: 0.6; */
    font-size: 18px;
}

/* ===================================
   MODAL
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-header h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.btn-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-normal);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   =================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .logo-img {
        width: 180px;
        height: 65px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* HEADER */
    .navbar {
        padding: 12px 0;
    }

    .logo-img {
        width: 160px;
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .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(6px, -6px);
    }

    .header-actions {
        display: none;
    }

    /* HERO */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    /* ABOUT */
    .about-area {
        padding: 60px 0;
    }

    .about-row {
        flex-direction: column;
        gap: 40px;
    }

    .about-right {
        text-align: center;
    }

    .about-right h2 {
        font-size: 28px;
    }

    /* SERVICES */
    .services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image img {
        height: 200px;
    }

    /* WHY */
    .why-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    /* CONTACT */
    .contact-hero {
        padding: 60px 16px;
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-left h1 {
        font-size: 32px;
    }

    .booking-card {
        padding: 30px 25px;
        max-width: 100%;
    }

    /* FOOTER */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* MODAL */
    .modal-content {
        padding: 30px 20px;
        margin: 0 16px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    /* SHOW MOBILE ACTION BAR */
    .mobile-action-bar {
        display: flex;
    }

    /* ADJUST SCROLL TOP BUTTON */
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .logo-img {
        width: 140px;
        height: 52px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .feature-text strong {
        font-size: 16px;
    }

    .feature-text span {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .about-right h2 {
        font-size: 24px;
    }

    .about-right p {
        font-size: 15px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-card .icon {
        font-size: 40px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }

    .contact-left h1 {
        font-size: 26px;
    }

    .contact-features li {
        font-size: 15px;
    }

    .booking-card {
        padding: 25px 20px;
    }

    .booking-card h3 {
        font-size: 20px;
    }

    .modal-content {
        padding: 24px 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .mobile-action-bar a {
        font-size: 14px;
        padding: 12px 0;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .logo-img {
        width: 120px;
        height: 45px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .contact-left h1 {
        font-size: 22px;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-submit {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .modal-content {
        max-height: 85vh;
    }
}