@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

/* =========================================
   VARIABLES & SETUP (Corporate Theme)
========================================= */
:root {
    /* Colors */
    --navy: #1a2949;
    --navy-dark: #0f182b;
    --red: #e63946;
    --red-hover: #d62828;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #495057;
    --text-main: #333333;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.05);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--red);
}

.section-subtitle {
    color: var(--red);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   BUTTONS (Corporate)
========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--red);
}

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

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* =========================================
   NAVIGATION (Corporate White)
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.navbar.scrolled {
    padding: 10px 0;
}

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

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

.logo {
    height: 60px;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    height: 50px;
}

.company-info h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--navy-dark);
    margin: 0;
    white-space: nowrap;
}

.company-info p {
    font-size: 0.85rem;
    color: var(--red);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-top: 3px solid var(--red);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--box-shadow-hover);
    padding: 10px 0;
}

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

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--gray-medium);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* =========================================
   HERO SLIDER (Corporate)
========================================= */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 0;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 41, 73, 0.9) 0%, rgba(26, 41, 73, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.hero-content .container {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 span {
    color: var(--red);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 40px;
}

/* Custom Swiper Controls */
.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5 !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 8px !important;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: var(--red) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}

/* =========================================
   LICENSES & CERTIFICATIONS SECTION
========================================= */
.licenses-section {
    background: var(--gray-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.license-badge {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    padding: 15px 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.license-badge:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-3px);
}

.license-badge i {
    font-size: 2.5rem;
    color: var(--navy);
}

.badge-text h4 {
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin: 0;
}

/* =========================================
   ABOUT PREVIEW SECTION
========================================= */
.about-preview {
    background: var(--white);
}

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

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.about-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    flex: 1;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--navy-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.about-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.about-visual img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--box-shadow-hover);
    border: 5px solid var(--white);
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 600;
}

/* =========================================
   SERVICES GRID SECTION
========================================= */
.services-section {
    background: var(--gray-light);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    cursor: pointer;
}

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

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: var(--box-shadow);
}

.service-content {
    padding: 30px;
    padding-top: 40px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.service-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.service-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-link:hover {
    color: var(--navy);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   PAGE HEADER (For Inner Pages)
========================================= */
.page-header {
    margin-top: 0;
    padding: 210px 0 80px; /* Compensated for removed margin */
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: var(--gray-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--red);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: var(--navy-dark);
    padding: 80px 0 20px;
    color: var(--gray-light);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--red);
}

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

.footer-links a {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--red);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--red);
}

/* =========================================
   CONTACT PAGE FORM
========================================= */
.contact-form {
    background: var(--white) !important;
    border: 1px solid var(--gray-medium) !important;
    box-shadow: var(--box-shadow) !important;
}

.contact-form input,
.contact-form textarea {
    background: var(--white) !important;
    border: 1px solid var(--gray-medium) !important;
    color: var(--text-main) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 2px rgba(26, 41, 73, 0.1);
}

/* =========================================
   IMAGE MODAL
========================================= */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.image-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.image-modal .close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.image-modal .close-modal:hover,
.image-modal .close-modal:focus {
    color: var(--red);
}

/* =========================================
   PRODUCT GRID (Service Pages)
========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid var(--gray-medium);
}

.product-card h4 {
    font-size: 1rem;
    padding: 15px;
    color: var(--navy-dark);
    margin: 0;
}

/* =========================================
   PORTS SECTION
========================================= */
.ports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.port-card {
    background: var(--white);
    padding: 15px 10px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--gray-medium);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: default;
}

.port-card:hover {
    transform: translateY(-3px);
    background: var(--navy-dark);
    color: var(--white);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--navy-dark);
}

/* =========================================
   CREATIVE POINTS (Why Choose Us)
========================================= */
.creative-points {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.point-pill {
    background: var(--white);
    color: var(--navy-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(15, 24, 43, 0.08);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}
.point-pill i {
    color: var(--red);
    font-size: 1.1rem;
}
.point-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.point-pill:hover i {
    color: var(--white);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* =========================================
   GLOBAL CTA & CONTACT MODAL
========================================= */
.global-cta-section {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--navy-dark);
}

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

.cta-button {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    animation: pulse-ring 2s infinite;
}

.cta-button:hover {
    background: #d62828;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Custom Contact Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-box {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.custom-modal-overlay.active .custom-modal-box {
    transform: translateY(0);
}

.close-custom-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-dark);
    transition: var(--transition);
}
.close-custom-modal:hover {
    color: var(--red);
}

.custom-modal-box h3 {
    margin-top: 0;
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-options-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-option-card {
    flex: 1;
    background: var(--gray-light);
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 25px 15px;
    text-decoration: none;
    color: var(--navy);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-option-card i {
    font-size: 2.5rem;
}

.contact-option-card .fa-phone-alt { color: #007bff; }
.contact-option-card .fa-whatsapp { color: #25D366; }
.contact-option-card .fa-envelope { color: var(--red); }

.contact-option-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .nav-container {
        position: relative;
    }
    .mobile-toggle {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: transparent;
        color: var(--navy-dark);
        padding: 10px;
        font-size: 1.5rem;
    }
    /* Mobile Menu Styling Fixes */
    .nav-links a {
        color: var(--white) !important;
        padding: 15px 20px !important;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        padding-left: 20px !important;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
    .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .badges-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Layout & Padding */
    .section-padding {
        padding: 50px 0;
    }
    .page-header {
        margin-top: 0;
        padding: 150px 0 50px;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    /* Typography */
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    /* Footer Alignments */

    .contact-options-grid {
        flex-direction: column;
    }
    .contact-option-card {
        flex-direction: row;
        padding: 20px;
        justify-content: center;
    }
    .contact-option-card i {
        font-size: 2rem;
    }

    .footer-grid {
        text-align: left;
    }
    .footer-about {
        align-items: flex-start;
    }
    .footer-about div {
        justify-content: flex-start;
    }
    .footer-about h4,
    .footer-about p {
        white-space: normal !important;
    }
    
    /* Specific Components */
    .contact-form {
        padding: 20px !important;
    }
    .contact-info-blocks ul li {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
        margin-bottom: 15px;
    }
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    /* Navbar Scaling */
    .company-info h1,
    .company-info p {
        white-space: normal !important;
    }
    .company-info h1 {
        font-size: 1.1rem !important;
    }
    .company-info p {
        font-size: 0.65rem !important;
    }
    .logo {
        height: 40px !important;
    }
    .navbar {
        padding: 10px 0;
    }
    
    /* Content Scaling */
    .hero-content h2 {
        font-size: 1.6rem !important;
    }
    .section-title {
        font-size: 1.6rem !important;
    }
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        width: 95% !important;
    }

    .floating-call {
        bottom: 15px;
        right: 15px;
        height: 45px;
        padding: 0 15px;
        gap: 8px;
    }
    .floating-call i {
        font-size: 16px;
    }
    .floating-call-text small {
        font-size: 0.55rem;
    }
    .floating-call-text strong {
        font-size: 0.75rem;
    }
}

/* =========================================
   FLOATING CALL BUTTON
========================================= */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 60px;
    padding: 0 25px;
    background-color: var(--red);
    color: var(--white);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-ring 2s infinite;
    text-decoration: none;
}

.floating-call-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.floating-call-text small {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.floating-call-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.floating-call i {
    transform: rotate(90deg);
}

.floating-call:hover {
    background-color: var(--navy-dark);
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(15, 24, 43, 0.4);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* =========================================
   HERO ANIMATION
========================================= */
.swiper-slide-active .slide-bg {
    animation: zoomInOut 15s linear infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
