/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

img,
iframe {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #003366 0%, #1a5490 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo,
.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.header-contact {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header-btn svg {
    width: 18px;
    height: 18px;
}

.header-btn.call-btn {
    background: #003366;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-btn.whatsapp-btn {
    background: #25D366;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .header-contact {
        margin-right: 15px;
        gap: 8px;
    }

    .header-btn span {
        display: none;
    }

    .header-btn {
        padding: 8px;
        border-radius: 50%;
    }

    .header-btn svg {
        width: 20px;
        height: 20px;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/home/home1.jpg') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Button Styles */
.btn {
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #003366;
    color: white;
    border: 2px solid #003366;
}

.btn-primary:hover {
    background: #002244;
    border-color: #002244;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: #1a5490;
    color: white;
    border: 2px solid #1a5490;
}

.btn-secondary:hover {
    background: #144070;
    border-color: #144070;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

/* Products Section */
.products {
    padding: 60px 0;
    background: #f5f5f5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Image Slider */
.card-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.slider-container img {
    min-width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 51, 102, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin: 0 10px;
}

.slider-btn.next {
    right: 0;
}

.slider-btn.prev {
    left: 0;
}

.slider-btn:hover {
    background: rgba(0, 51, 102, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.product-card .card-slider,
.service-card .card-slider {
    border-bottom: 1px solid #eee;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    color: #003366;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.product-info p {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

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

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: white;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.feature-number {
    width: 60px;
    height: 60px;
    background: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-content p {
    color: #666;
    line-height: 1.8;
}

.why-us-description {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.why-us-description p {
    color: #666;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

/* Services Section */
.services-preview,
.services-section {
    padding: 80px 0;
    background: white;
}

.services-preview h2,
.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: #003366;
    margin-bottom: 50px;
    font-weight: 700;
}

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

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .card-slider {
    position: relative;
}

.service-overlay {
    background: rgba(0, 51, 102, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
}

.service-overlay h3 {
    font-size: 18px;
    font-weight: 700;
}

.service-card p {
    padding: 20px;
    text-align: center;
    color: #666;
    line-height: 1.8;
    min-height: 120px;
}

.service-buttons {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.about-images {
    display: grid;
    gap: 20px;
}

.about-img-large {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-img-small {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-text h3 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 15px;
}

.about-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003366 0%, #1a5490 100%);
    padding: 60px 0;
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cta-buttons .btn {
    background: white;
    color: #003366;
    border-color: white;
}

.cta-buttons .btn:hover {
    background: #f0f0f0;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.gallery-section h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.gallery-section h2 .highlight {
    color: #1a5490;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: white;
}

.contact-page h2 {
    text-align: center;
    font-size: 36px;
    color: #003366;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-large h3 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item-large p {
    color: #666;
    line-height: 1.8;
}

.contact-item-large a {
    color: #1a5490;
    text-decoration: none;
}

.contact-item-large a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

footer h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.footer-section .map iframe {
    border-radius: 8px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-item h4 {
    color: #1a5490;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    background: #0d0d0d;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.email-btn {
    background: #003366;
}

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

.phone-btn {
    background: #1a5490;
}

/* Enquire Now Tab */
.enquire-now-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom right;
    z-index: 998;
}

.enquire-now-tab a {
    display: block;
    background: #003366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.enquire-now-tab a:hover {
    background: #002244;
}

/* Placeholder Image */
img[src="Cabin_homepage.png"],
img[src="msb.png"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: block;
}

/* ============================================
   MOBILE RESPONSIVE STYLES - V2
   ============================================ */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .service-grid,
    .service-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

/* Mobile Breakpoint */
@media (max-width: 768px) {

    /* Header Mobile */
    header {
        padding: 0;
    }

    header .container {
        padding: 0 15px;
        height: 60px;
    }

    .logo img {
        height: 60px;
        display: block;
    }

    /* Mobile Navigation - Hamburger Menu */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 270px;
        height: 100vh;
        background: white;
        z-index: 9999;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li a {
        display: block;
        padding: 18px 25px;
        color: #333;
        font-size: 16px;
        border-radius: 0;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: #f5f5f5;
        color: #003366;
    }

    /* Hamburger Button */
    .hamburger {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        z-index: 10000;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 50%;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 8000;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Close button in nav */
    nav::before {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: #333;
        cursor: pointer;
        pointer-events: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Top Call Bar */
    header::before {
        content: 'Call Us : +91 9987914263';
        display: block;
        background: #1a5490;
        color: white;
        text-align: right;
        padding: 8px 15px;
        font-size: 13px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    header {
        padding-top: 35px;
        /* 35px for call bar */
        padding-bottom: 0;
        position: relative;
        z-index: 9000;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 500px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Products Section Mobile */
    .products {
        padding: 40px 0;
    }

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

    .product-card img {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .product-buttons .btn {
        width: 100%;
    }

    /* Why Us Mobile */
    .why-us {
        padding: 40px 0;
    }

    .why-us h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .why-us .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-content h3 {
        font-size: 16px;
    }

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

    .why-us-description {
        padding: 25px 20px;
    }

    .why-us-description p {
        font-size: 14px;
        text-align: justify;
    }

    /* Services Mobile */
    .services-preview,
    .services-section {
        padding: 40px 0;
    }

    .services-preview h2,
    .services-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .services-section h2 {
        font-size: 28px;
    }

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

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

    .service-card img {
        height: 220px;
    }

    .service-card p {
        padding: 15px;
        min-height: auto;
        font-size: 14px;
    }

    .service-buttons {
        flex-direction: column;
        padding: 0 15px 15px;
        gap: 8px;
    }

    .service-buttons .btn {
        width: 100%;
    }

    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }

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

    .about-images {
        order: 1;
    }

    .about-text {
        order: 2;
    }

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

    .about-text h3 {
        font-size: 18px;
    }

    .about-text h4 {
        font-size: 16px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .about-buttons .btn {
        width: 100%;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section .container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 24px;
    }

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

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Gallery Mobile */
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

    .gallery-item img {
        height: 180px;
    }

    /* Contact Page Mobile */
    .contact-page {
        padding: 40px 0;
    }

    .contact-page h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

    .contact-details {
        gap: 20px;
    }

    .contact-item-large h3 {
        font-size: 16px;
    }

    .contact-item-large p {
        font-size: 14px;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 0 0;
    }

    footer h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

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

    .footer-section .map iframe {
        height: 200px;
    }

    .contact-item h4 {
        font-size: 13px;
    }

    .contact-item p {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Floating Buttons Mobile - Adjusted Position */
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }

    .fab-btn {
        width: 55px;
        height: 55px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Enquire Now Tab Mobile */
    .enquire-now-tab {
        right: 0;
        top: 45%;
    }

    .enquire-now-tab a {
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* Button Sizes Mobile */
    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    .btn-small {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

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

    .why-us h2,
    .services-section h2,
    .gallery-section h2,
    .contact-page h2,
    .about-text h2 {
        font-size: 24px;
    }

    .services-preview h2 {
        font-size: 20px;
    }

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

    .gallery-item img {
        height: 220px;
    }

    .floating-buttons {
        right: 10px;
        bottom: 15px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
    }
}

/* Hamburger Menu Styles - Always Hidden on Desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .mobile-overlay {
        display: none !important;
    }

    header::before {
        display: none;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.close-modal {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #003366;
}

.modal-content h2 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 28px;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003366;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        padding: 25px 20px;
        width: 92%;
        max-width: 95%;
    }

    .modal-content h2 {
        font-size: 24px;
        padding-right: 30px;
    }

    .close-modal {
        font-size: 28px;
        position: absolute;
        top: 20px;
        right: 20px;
        float: none;
    }
}