:root {
    --primary-blue: #0047AB;
    /* Deeper blue from image */
    --primary-green: #32CD32;
    /* Brighter green */
    --secondary-blue: #003380;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #f8f9fa;
    --bg-light: #F5F7FA;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-product-card);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

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

.btn-green:hover {
    background-color: #28a428;
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

/* Header */
.main-header {
    background-color: #0d47a1;
    /* Deep blue */
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    max-width: 1400px;
    padding: 0 40px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 45px;
    background-color: #fff;
    border-radius: 8px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: serif;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

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

/* Header Buttons */
.btn-white {
    background-color: var(--white);
    color: #0d47a1;
    border: 1px solid var(--white);
}

.btn-white:hover {
    background-color: #f0f0f0;
    color: #002171;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-yellow {
    background-color: #FFD700;
    color: #000;
}

.btn-yellow:hover {
    background-color: #FFC107;
}

/* Hero Section */
.hero {
    background: linear-gradient(105deg, #003399 0%, #0056b3 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1400px;
    /* Wider container for hero */
    padding: 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 90%;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    /* No background/padding for hero image to look cleaner */
}

/* Product Sections */
.product-section {
    padding: 80px 0 30px;
}

.product-card {
    max-width: 1200px;
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    /* Increased padding */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* Increased gap */
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    margin: auto;
}

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

.product-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 15px 0;
    font-weight: 700;
}

.product-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.tag-blue,
.tag-pink,
.tag-blue-light {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-blue {
    background-color: #E3F2FD;
    color: #1976D2;
}

.tag-blue-light {
    background-color: #E1F5FE;
    color: #0288D1;
    font-size: 0.8rem;
    text-transform: none;
    /* As per image */
}

.tag-pink {
    background-color: #FCE4EC;
    color: #C2185B;
}

.feature-list,
.feature-list-blue {
    list-style: none;
    margin-bottom: 35px;
}

.feature-list li {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
}

.feature-list-blue li {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.feature-list-blue li::before {
    content: "✔";
    /* Different checkmark style */
    color: #039BE5;
    /* Light blue check */
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 15px;
}

/* Product Buttons */
.btn-solid-blue {
    background-color: #1565C0;
    color: var(--white);
    border: 1px solid #1565C0;
}

.btn-solid-blue:hover {
    background-color: #0D47A1;
}

.btn-outline-blue-text {
    background-color: var(--white);
    color: #039BE5;
    border: 1px solid #039BE5;
}

.btn-outline-blue-text:hover {
    background-color: #E1F5FE;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
}

/* Rental Section */
/* Rental Section */
.rental-section {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: 40px;
}

.rental-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px;
    border: 1px solid #eee;
    max-width: 1200px;
    margin: 0 auto;
}

.rental-header {
    text-align: left;
    /* Aligned left as per image */
    margin-bottom: 40px;
}

.rental-header h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.rental-header p {
    color: #444;
    max-width: 100%;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.rental-col {
    background: #F8FBFF;
    /* Light blueish white */
    padding: 30px;
    border-radius: 12px;
    border: none;
    border-left: 5px solid #0d47a1;
    /* Thick vertical blue line */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rental-col h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.rental-col ul {
    list-style: none;
}

.rental-col ul li {
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
    padding-left: 0;
    position: relative;
    font-weight: 500;
}

.rental-info-box {
    background-color: #E3F2FD;
    /* Light blue bg */
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rental-info-box h3 {
    color: #0d47a1;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.rental-info-box p {
    color: #333;
    margin: 0;
    font-size: 1rem;
}

.rental-actions {
    display: flex;
    gap: 15px;
}

.btn-light-blue {
    background-color: #E3F2FD;
    color: #0d47a1;
    font-weight: 600;
}

.btn-light-blue:hover {
    background-color: #BBDEFB;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F8F9FA;
    /* Light gray background */
}

.section-title {
    text-align: center;
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-container {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.faq-item {
    background: transparent;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #eee;
    max-width: 100%;
    /* Reset max-width */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item details {
    padding: 20px 10px;
    cursor: pointer;
}

.faq-item summary {
    font-weight: 700;
    color: #333;
    list-style: none;
    position: relative;
    padding-right: 30px;
    font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #0d47a1;
    font-weight: 700;
    top: -2px;
}

.faq-item details[open] summary::after {
    content: '-';
    top: -4px;
}

.faq-item p {
    margin-top: 10px;
    color: #555;
    padding-top: 0;
    border-top: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #F5F7FA;
}

.contact-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    background-color: #1976D2;
    /* Blue header */
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.contact-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    color: #1565C0;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.btn-dark-blue {
    background-color: #1565C0;
    color: var(--white);
    border: none;
}

.btn-dark-blue:hover {
    background-color: #0D47A1;
}

.btn-whatsapp-green {
    background-color: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp-green:hover {
    background-color: #128C7E;
}

.btn-dark-gray {
    background-color: #555;
    color: var(--white);
    border: none;
}

.btn-dark-gray:hover {
    background-color: #333;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pink Theme Styles */
.tag-pink-light {
    background-color: #FCE4EC;
    color: #E91E63;
    font-size: 0.8rem;
    text-transform: none;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-list-pink {
    list-style: none;
    margin-bottom: 35px;
}

.feature-list-pink li {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.feature-list-pink li::before {
    content: "✔";
    color: #E91E63;
    /* Pink check */
    font-weight: bold;
}

.btn-outline-pink {
    background-color: var(--white);
    color: #E91E63;
    border: 1px solid #E91E63;
}

.btn-outline-pink:hover {
    background-color: #FCE4EC;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    /* Hidden by default, shown on mobile */
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

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

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

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-call {
    background: linear-gradient(135deg, #0d47a1 0%, #1976D2 100%);
}

.fab-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    color: var(--white);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Mobile Devices (≤480px) */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 15px;
    }

    .main-header .container,
    .hero .container {
        padding: 0 20px;
    }

    /* Header */
    .main-header {
        padding: 12px 0;
    }



    .logo h1 {
        font-size: 1.2rem;
    }

    /* Hide header buttons on mobile */
    .header-actions {
        display: none;
    }

    /* Show floating buttons on mobile */
    .floating-buttons {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tags span {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    /* Product Cards */
    .product-section {
        padding: 60px 0 20px;
    }

    .product-card {
        padding: 20px;
        gap: 30px;
        border-radius: 12px;
    }

    .product-content h2 {
        font-size: 1.5rem;
    }

    .product-content p {
        font-size: 0.95rem;
    }

    .tag-blue,
    .tag-pink,
    .tag-blue-light,
    .tag-pink-light {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .feature-list li,
    .feature-list-blue li,
    .feature-list-pink li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .product-actions {
        flex-direction: column;
        width: 100%;
    }

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

    /* Rental Section */
    .rental-section {
        padding: 40px 0;
    }

    .rental-card {
        padding: 20px;
    }

    .rental-header h2 {
        font-size: 1.5rem;
    }

    .rental-header p {
        font-size: 0.95rem;
    }

    .rental-col {
        padding: 20px;
    }

    .rental-col h3 {
        font-size: 1.1rem;
    }

    .rental-col ul li {
        font-size: 0.85rem;
    }

    .rental-info-box {
        padding: 20px;
    }

    .rental-info-box h3 {
        font-size: 1.1rem;
    }

    .rental-actions {
        flex-direction: column;
    }

    .rental-actions .btn {
        width: 100%;
    }

    /* FAQ Section */
    .faq-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .faq-container {
        padding: 15px;
    }

    .faq-item summary {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }

    .contact-header {
        padding: 20px;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-body {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info h4 {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .contact-map {
        min-height: 200px;
    }

    .contact-buttons {
        flex-direction: column;
    }

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

/* Tablet Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 20px;
    }

    .main-header .container,
    .hero .container {
        padding: 0 30px;
    }



    /* Hide header buttons on tablet */
    .header-actions {
        display: none;
    }

    /* Show floating buttons on tablet */
    .floating-buttons {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
    }

    /* Product Cards */
    .product-card {
        padding: 40px;
        gap: 50px;
    }

    .product-content h2 {
        font-size: 1.75rem;
    }

    /* Rental Section */
    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rental-grid .rental-col:last-child {
        grid-column: 1 / -1;
    }

    /* Contact Section */
    .contact-body {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-buttons .btn {
        flex: 1;
        min-width: 150px;
    }
}

/* Small Tablets & Large Phones (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {

    /* Product Cards */
    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .product-image {
        order: -1;
    }

    .feature-list li,
    .feature-list-blue li,
    .feature-list-pink li {
        justify-content: center;
    }

    .product-actions {
        justify-content: center;
    }

    /* Rental Section */
    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-grid .rental-col:last-child {
        grid-column: 1 / -1;
    }
}

/* General Mobile Styles (≤768px) */
@media (max-width: 768px) {

    /* Header */
    .header-content {
        display: block;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
    }

    /* Rental */
    .rental-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-body {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }
}

/* Medium Screens (≤992px) */
@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .product-image {
        order: -1;
    }

    .feature-list li,
    .feature-list-blue li,
    .feature-list-pink li {
        justify-content: center;
    }

    .product-actions {
        justify-content: center;
    }
}