/* ============================================
   RESPONSIVE — All Media Queries
   Comprehensive mobile-first responsive styles
   ============================================ */

/* ── Max 1200px ────────────────────────────── */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-bento-grid {
        max-width: 100%;
        gap: 12px;
    }

    section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .navbar-nav {
        margin-left: 20px;
    }

    .pricing-banner-container {
        padding: 12px 30px;
    }

    .pricing-banner-content {
        gap: 20px;
    }

    .pricing-banner-title {
        font-size: 1rem;
    }

    .pricing-banner-amount {
        font-size: 1.4rem;
    }

    /* Footer columns tighter */
    .footer {
        padding: 60px 0 0;
    }

    .footer-desc {
        max-width: 260px;
    }
}

/* ── Max 992px (Tablet) ────────────────────── */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 100px 0 35px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: var(--text-3xl);
    }

    .storage-card {
        min-width: 280px;
    }

    .storage-card-featured {
        transform: translateY(0);
    }

    .storage-card-featured:hover {
        transform: translateY(-8px);
    }

    /* Hide desktop-only elements */
    .gallery-thumbnails,
    .nav-link::after,
    .navbar-utils,
    .section-nav,
    .steps-line {
        display: none;
    }

    .step-card {
        margin-bottom: 30px;
    }

    /* Mouse scroll — hide on tablet */
    .mouse-scroll {
        display: none;
    }

    /* How It Works — stack on tablet */
    .hiw-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiw-highlights {
        grid-template-columns: 1fr 1fr;
    }

    /* FAQ — sidebar becomes horizontal pills on tablet */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-sidebar-inner {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-cat {
        padding: 9px 16px;
        width: auto;
        border-radius: var(--border-radius-full);
        border: 1px solid var(--border-light);
        font-size: var(--text-xs);
    }

    .faq-cat i {
        font-size: 11px;
    }

    .faq-sidebar-cta {
        display: none;
    }

    .contact-form,
    .contact-info {
        padding: 30px;
    }

    /* Contact dark — tablet */
    .contact-dark-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-dark-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contact-dark-social {
        grid-column: span 2;
    }

    .contact-dark-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* Navbar mobile */
    .header .navbar {
        padding: 10px 0;
        height: auto;
        min-height: 65px;
    }

    .header.scrolled .navbar {
        height: auto;
        min-height: 55px;
    }

    .logo-img {
        height: 45px;
    }

    .header.scrolled .logo-img {
        height: 38px;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        z-index: 1195;
        padding: 100px 20px 20px;
        transition: right 0.3s;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        margin-left: 0;
    }

    .nav-item {
        width: 100%;
        height: auto;
    }

    .nav-link {
        height: auto;
        padding: 12px 10px !important;
        font-size: 0.85rem;
        border-radius: var(--border-radius-md);
    }

    .nav-link.active,
    .nav-link:hover {
        background-color: rgba(234, 69, 38, 0.08);
    }

    .navbar-collapse .navbar-utils {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        width: 100%;
    }

    .navbar-collapse .book-now-btn,
    .navbar-collapse .language-toggle,
    .navbar-collapse .my-account-btn {
        margin: 10px 10px 10px 0;
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .navbar-collapse .my-account-btn {
        margin-top: 30px;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        padding: 10px 0;
        margin: 0;
        border: none;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
        animation: none;
        background-color: rgba(248, 249, 250, 0.5);
        border-radius: 8px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 8px 15px 8px 40px;
    }

    .dropdown-toggle::after {
        display: inline-block;
        position: absolute;
        right: 15px;
    }

    /* Mobile navbar utils */
    .mobile-navbar-utils {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-navbar-utils .book-now-btn,
    .mobile-navbar-utils .language-toggle,
    .mobile-navbar-utils .my-account-btn {
        width: 100%;
        justify-content: center;
        margin: 8px 0;
    }

    .notification-indicator {
        top: 12px;
        right: auto;
        left: 30px;
    }

    /* Mobile positioning — push above fixed banner */
    .toast-container,
    .whatsapp-float {
        bottom: 80px;
        left: 20px;
    }

    .toast-container {
        right: 20px;
    }

    .toast {
        min-width: unset;
        width: 100%;
    }

    /* Guide banner — tablet */
    .guide-banner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .guide-banner-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .guide-inline-steps {
        justify-content: center;
    }

    .guide-banner-btns {
        justify-content: center;
    }

    .guide-banner-visual {
        max-width: 100%;
    }

    /* Guide mobile */
    .guide-step {
        flex-direction: column;
        gap: 15px;
        padding-left: 10px;
    }

    .guide-step::after {
        left: 25px;
        top: 70px;
        height: calc(100% - 50px);
    }

    .guide-step-number {
        margin-bottom: 10px;
    }

    .furniture-item {
        flex: 0 0 100%;
    }

    /* Gallery mobile */
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-caption {
        font-size: 0.9rem;
        padding: 10px;
    }

    /* Pricing banner tablet — compact single row */
    .pricing-banner-container {
        padding: 10px 20px;
    }

    .pricing-banner-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        text-align: left;
        gap: 16px;
    }

    .pricing-banner-icon {
        width: 32px;
        height: 32px;
    }

    .pricing-banner-icon i {
        font-size: 14px;
    }

    .pricing-banner-text {
        flex: 1;
        min-width: 0;
    }

    .pricing-banner-subtitle {
        display: none;
    }

    .pricing-banner-price {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 14px;
    }

    .pricing-banner-cta {
        order: unset;
    }

    .pricing-banner-title {
        font-size: 0.9rem;
    }

    .pricing-banner-amount {
        font-size: 1.25rem;
    }

    .pricing-banner-close {
        right: -16px;
    }

    /* Footer tablet */
    .footer .row {
        gap: 0;
    }

    .footer-logo img {
        height: 50px;
    }

    /* About section — tablet */
    .about-layout {
        gap: 20px;
    }

    /* Storage options tablet */
    .storage-options {
        gap: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        margin: 0 10px 20px;
        padding: 30px;
    }

    /* CTA section */
    .cta-content {
        max-width: 90%;
    }

    .cta-price-amount {
        font-size: 3rem;
    }
}

/* ── Max 768px (Mobile landscape) ──────────── */
@media (max-width: 768px) {
    .cta-title,
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 110px 0 30px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 360px;
        margin: 0 auto;
        gap: 10px;
    }

    .hero-bento-card {
        padding: 16px 12px;
    }

    .hero-bento-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-bento-title {
        font-size: 0.8rem;
    }

    .hero-bento-desc {
        font-size: 0.7rem;
    }

    .hero-trust-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        margin-top: 40px;
    }

    /* Hero shapes — scale down */
    .hero-shape-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -10px;
    }

    .hero-shape-2 {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
    }

    /* Disable hover transforms on mobile */
    .about-feature-row,
    .about-hero-card,
    .about-stat,
    .contact-card,
    .hero-bento-card,
    .hiw-step-card,
    .step-card,
    .storage-card,
    .testimonial-card {
        transform: translateY(0) !important;
    }

    /* Storage cards stacked hover cleanup */
    .storage-card:hover {
        transform: translateY(-4px) !important;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: var(--text-sm);
    }

    /* About section — stack to single column */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .about-stat {
        padding: 16px 12px;
    }

    .about-stat-value {
        font-size: var(--text-2xl);
    }

    .about-hero-card {
        padding: 28px 24px;
    }

    .about-feature-row {
        padding: 22px 20px;
    }

    /* Storage options — single column */
    .storage-options {
        flex-direction: column;
        align-items: center;
    }

    .storage-card {
        min-width: 100%;
        max-width: 100%;
    }

    .storage-billing-toggle {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        margin-bottom: 30px;
    }

    .billing-option {
        font-size: var(--text-xs);
        padding: 8px 16px;
    }

    .storage-card-featured {
        transform: translateY(0);
    }

    .storage-card-featured:hover {
        transform: translateY(0) !important;
    }

    /* Storage card internal adjustments */
    .storage-image {
        height: 180px;
    }

    .storage-iso {
        height: 180px;
    }

    .storage-content {
        padding: 20px;
    }

    .storage-title {
        font-size: var(--text-xl);
    }

    .storage-price {
        font-size: var(--text-2xl);
    }

    .storage-features {
        padding: 12px;
    }

    .storage-meta {
        gap: 8px;
    }

    .storage-meta-item {
        font-size: var(--text-xs);
        padding: 3px 10px;
    }

    .storage-compare-link {
        font-size: var(--text-xs);
    }

    /* Contact info — stack */
    .contact-info {
        margin-bottom: 30px;
    }

    /* Contact dark — mobile */
    .contact-dark-info {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-dark-social {
        grid-column: auto;
    }

    .contact-dark-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-dark-form-card {
        padding: 24px 20px;
    }

    .gallery-slide img {
        max-width: 95%;
        max-height: 70vh;
    }

    /* CTA section */
    .cta-content {
        max-width: 100%;
    }

    .cta-text {
        font-size: var(--text-base);
    }

    .cta-price-amount {
        font-size: 2.8rem;
    }

    /* Pricing banner — mobile landscape */
    .pricing-banner-container {
        padding: 10px 16px;
    }

    .pricing-banner-content {
        gap: 12px;
    }

    .pricing-banner-icon {
        display: none;
    }

    .pricing-banner-title {
        font-size: 0.85rem;
    }

    .pricing-banner-subtitle {
        display: none;
    }

    .pricing-banner-amount {
        font-size: 1.15rem;
    }

    .pricing-banner-from {
        font-size: 8px;
    }

    .pricing-banner-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        width: auto;
    }

    .pricing-banner-price {
        padding: 0 12px;
    }

    .pricing-banner-circle-1,
    .pricing-banner-circle-2,
    .pricing-banner-circle-3 {
        display: none;
    }

    .pricing-banner-close {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .pricing-banner-close:hover {
        transform: scale(1.1);
    }

    /* Footer — two columns on tablet */
    .footer {
        padding: 50px 0 0;
    }

    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 30px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-title {
        font-size: var(--text-md);
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .footer-link {
        margin-bottom: 10px;
    }

    .footer-link a {
        font-size: var(--text-xs);
    }

    .footer-contact-item {
        margin-bottom: 14px;
        gap: 12px;
    }

    .footer-contact-icon {
        font-size: 15px;
    }

    .footer-contact-text {
        font-size: var(--text-xs);
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 20px 0;
    }

    .footer-copyright {
        font-size: var(--text-xs);
    }

    /* Guide section */
    .guide-section {
        padding: 60px 0;
    }

    .guide-banner-title {
        font-size: var(--text-2xl);
    }

    /* How it works */
    .hiw-hero-card {
        padding: 28px 24px;
    }

    .hiw-hero-title {
        font-size: var(--text-xl);
    }

    .hiw-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hiw-stat-value {
        font-size: var(--text-xl);
    }

    /* Testimonials */
    .testimonial-card {
        padding: 28px 22px;
        margin: 0 5px 15px;
    }

    .testimonial-text {
        font-size: var(--text-sm);
    }

    .testimonial-author {
        gap: 14px;
    }

    .testimonial-avatar {
        width: 46px;
        height: 46px;
    }

    .testimonial-info h5 {
        font-size: var(--text-sm);
    }

    .testimonial-info span {
        font-size: var(--text-xs);
    }

    .testimonial-quote {
        font-size: 2rem;
    }

    .testimonial-rating {
        font-size: 14px;
    }

    /* Calcumate */
    .calcumate-container {
        padding: 15px;
        border-radius: var(--border-radius-lg);
    }

    /* Modals */
    .modal-calculator .modal-header {
        padding: 15px 20px;
    }

    .modal-calculator .modal-body {
        padding: 20px;
    }

    .modal-calculator .modal-title {
        font-size: 1.1rem;
    }

    /* Whatsapp float */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* Loading overlay */
    .loader {
        width: 40px;
        height: 40px;
    }

    .loading-text {
        font-size: var(--text-sm);
    }

    /* Back to top */
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ── Max 576px (Mobile portrait) ───────────── */
@media (max-width: 576px) {
    /* ── HERO — Top padding for mobile ── */
    .hero-section {
        padding: 130px 0 25px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.85rem;
        padding-top: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: var(--text-sm);
    }

    .hero-bento-grid {
        max-width: 320px;
        gap: 8px;
    }

    .hero-bento-card {
        padding: 14px 10px;
        border-radius: var(--border-radius-lg);
    }

    .hero-bento-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: var(--border-radius-md);
        margin-bottom: 6px;
    }

    .hero-bento-title {
        font-size: 0.75rem;
    }

    .hero-bento-desc {
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .hero-trust-text {
        font-size: 0.65rem;
    }

    .hero-trust-badge {
        padding: 5px 14px;
        gap: 6px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-image img {
        border-radius: var(--border-radius-lg);
    }

    /* Hero shapes — smaller */
    .hero-shape-1 {
        width: 70px;
        height: 70px;
        opacity: 0.3;
    }

    .hero-shape-2 {
        width: 50px;
        height: 50px;
        opacity: 0.3;
    }

    /* ── Section defaults ── */
    section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .cta-title,
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: var(--text-xs);
        line-height: 1.6;
    }

    .container {
        padding: 0 16px;
    }

    /* ── CTA Section ── */
    .cta-buttons,
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .cta-price-amount {
        font-size: 2.5rem;
    }

    .cta-trust-row {
        gap: 10px;
    }

    .cta-trust-item {
        font-size: var(--text-xs);
    }

    .cta-text {
        font-size: var(--text-sm);
    }

    .cta-buttons .hero-btn {
        width: 100%;
    }

    .cta-content {
        padding: 0 10px;
    }

    /* ── About Section ── */
    .about-card,
    .about-hero-card,
    .testimonial-card {
        padding: 24px 18px;
    }

    .about-hero-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .about-hero-title {
        font-size: var(--text-xl);
    }

    .about-hero-text {
        font-size: var(--text-sm);
    }

    .about-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-stat {
        padding: 18px 14px;
    }

    .about-stat-value {
        font-size: var(--text-xl);
    }

    .about-stat-label {
        font-size: 10px;
    }

    .about-feature-row {
        padding: 20px 16px;
        gap: 14px;
    }

    .about-feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .about-feature-title {
        font-size: var(--text-md);
    }

    .about-feature-text {
        font-size: var(--text-xs);
    }

    .about-rental-tags {
        gap: 6px;
    }

    .about-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .about-link {
        font-size: var(--text-xs);
    }

    /* ── Storage Section ── */
    .storage-card {
        border-radius: var(--border-radius-lg);
    }

    .storage-image,
    .storage-iso {
        height: 160px;
    }

    .storage-content {
        padding: 18px 16px;
    }

    .storage-thumb {
        width: 54px;
        height: 54px;
        top: -32px;
        margin-bottom: -18px;
    }

    .storage-title {
        font-size: var(--text-lg);
    }

    .storage-description {
        font-size: var(--text-sm);
        line-height: 1.55;
    }

    .storage-price {
        font-size: var(--text-xl);
        margin-bottom: 14px;
    }

    .storage-button {
        padding: 12px 18px;
        font-size: var(--text-sm);
    }

    .storage-features {
        padding: 10px;
        margin-bottom: 16px;
    }

    .storage-feature {
        font-size: var(--text-xs);
        gap: 8px;
    }

    .storage-feature i {
        font-size: 12px;
    }

    .card-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: 12px;
        left: 12px;
    }

    .billing-option {
        padding: 7px 12px;
        font-size: 11px;
    }

    .billing-discount {
        font-size: 9px;
        padding: 2px 6px;
    }

    .storage-compare-link {
        font-size: var(--text-xs);
    }

    /* ── Guide Section ── */
    .guide-section {
        padding: 50px 0;
    }

    .guide-banner-title {
        font-size: var(--text-2xl);
    }

    .guide-banner-desc {
        font-size: var(--text-sm);
    }

    .guide-inline-steps {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .guide-inline-num {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .guide-inline-label {
        font-size: var(--text-xs);
    }

    .guide-cta-btn,
    .guide-outline-btn {
        padding: 12px 22px;
        font-size: var(--text-sm);
        width: 100%;
        justify-content: center;
    }

    .guide-banner-btns {
        flex-direction: column;
    }

    .guide-banner-visual {
        max-width: 100%;
    }

    .guide-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    /* ── How It Works ── */
    .hiw-hero-card {
        padding: 24px 18px;
    }

    .hiw-hero-title {
        font-size: var(--text-xl);
    }

    .hiw-hero-desc {
        font-size: var(--text-sm);
    }

    .hiw-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hiw-highlight-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
    }

    .hiw-highlight-text strong {
        font-size: var(--text-xs);
    }

    .hiw-highlight-text span {
        font-size: 10px;
    }

    .hiw-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hiw-stat {
        text-align: center;
        min-width: 80px;
    }

    .hiw-stat-value {
        font-size: var(--text-xl);
    }

    .hiw-stat-label {
        font-size: 10px;
    }

    .hiw-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .hiw-step-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .hiw-step-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: var(--text-sm);
    }

    .hiw-step-icon {
        display: none;
    }

    .hiw-step-title {
        font-size: var(--text-sm);
    }

    .hiw-step-desc {
        font-size: var(--text-xs);
    }

    /* ── FAQ ── */
    .faq-sidebar-inner {
        gap: 6px;
    }

    .faq-cat {
        padding: 8px 12px;
        font-size: 10px;
    }

    .faq-cat i {
        display: none;
    }

    .faq-question {
        padding: 16px 18px;
        gap: 12px;
    }

    .faq-question h5 {
        font-size: var(--text-sm);
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 10px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-answer-content {
        font-size: var(--text-sm);
        padding-top: 12px;
        padding-bottom: 16px;
    }

    .faq-answer-content ul {
        padding-left: 16px;
    }

    /* ── Contact Section ── */
    .contact-form-title,
    .contact-info-title {
        font-size: 1.5rem;
    }

    .contact-dark-form-title {
        font-size: var(--text-lg);
    }

    .contact-dark-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }

    .contact-dark-text h5 {
        font-size: var(--text-sm);
    }

    .contact-dark-text p {
        font-size: var(--text-xs);
    }

    .contact-dark-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-dark-input {
        padding: 12px 14px;
        font-size: var(--text-sm);
    }

    .contact-dark-textarea {
        min-height: 100px;
    }

    .contact-dark-label {
        font-size: var(--text-xs);
        margin-bottom: 6px;
    }

    .contact-dark-social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    /* ── Testimonials ── */
    .testimonial-card {
        padding: 22px 16px;
        margin: 0 0 12px;
    }

    .testimonial-text {
        font-size: var(--text-sm);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .testimonial-author {
        gap: 12px;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }

    .testimonial-quote {
        font-size: 1.8rem;
        top: 14px;
        right: 18px;
    }

    .testimonial-rating {
        margin-top: 10px;
        font-size: 13px;
    }

    /* ── Modals & Widgets ── */
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .whatsapp-float {
        bottom: 80px;
        left: 16px;
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .toast-container {
        bottom: 80px;
        left: 12px;
        right: 12px;
    }

    .toast {
        min-width: unset;
        max-width: 100%;
        padding: 14px 14px 14px 18px;
        gap: 10px;
    }

    .toast-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .toast-title {
        font-size: var(--text-xs);
    }

    .toast-message {
        font-size: 10px;
    }

    .toast-close {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .modal-calculator .modal-body {
        padding: 20px;
    }

    .modal-calculator .modal-title {
        font-size: 1.2rem;
    }

    .calculator-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .calculator-btn-book,
    .calculator-btn-reset {
        width: 100%;
        justify-content: center;
    }

    .gallery-nav {
        padding: 0 15px;
    }

    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-slide img {
        max-width: 98%;
        max-height: 65vh;
        border-radius: var(--border-radius-sm);
    }

    .gallery-caption {
        font-size: var(--text-xs);
        padding: 8px 12px;
        bottom: 20px;
    }

    /* ── Pricing Banner ── */
    .pricing-banner-container {
        padding: 8px 12px;
    }

    .pricing-banner-content {
        gap: 10px;
    }

    .pricing-banner-title {
        display: none;
    }

    .pricing-banner-amount {
        font-size: 1.05rem;
    }

    .pricing-banner-currency {
        font-size: 0.7rem;
    }

    .pricing-banner-from {
        font-size: 7px;
    }

    .pricing-banner-price {
        border: none;
        padding: 0;
    }

    .pricing-banner-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        gap: 5px;
    }

    /* ── Footer — single column mobile ── */
    .footer {
        padding: 40px 0 0;
    }

    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 28px;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-desc {
        max-width: 100%;
        font-size: var(--text-xs);
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-social-link {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .footer-title {
        font-size: var(--text-base);
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .footer-title::after {
        width: 30px;
        height: 2px;
    }

    .footer-link {
        margin-bottom: 8px;
    }

    .footer-link a {
        font-size: var(--text-xs);
        gap: 6px;
    }

    .footer-link a i {
        font-size: 10px;
    }

    .footer-contact-item {
        margin-bottom: 12px;
        gap: 10px;
    }

    .footer-contact-icon {
        font-size: 14px;
    }

    .footer-contact-text {
        font-size: var(--text-xs);
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 16px 0;
    }

    .footer-copyright {
        font-size: 11px;
    }

    /* ── Lightbox mobile ── */
    .storage-lightbox-panel {
        width: 95%;
        max-width: none;
    }

    .storage-lightbox-close {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* ── Scroll progress ── */
    .scroll-progress {
        height: 2px;
    }

    /* ── Ambient elements — scale down ── */
    .about-ambient,
    .faq-ambient,
    .hiw-ambient,
    .contact-ambient,
    .cta-ambient {
        width: 200px;
        height: 200px;
    }

    .about-ambient-2,
    .faq-ambient-2,
    .hiw-ambient-2,
    .contact-ambient-2,
    .cta-ambient-2 {
        width: 150px;
        height: 150px;
    }

    .guide-ambient {
        width: 200px;
        height: 200px;
    }

    .guide-ambient-2 {
        width: 150px;
        height: 150px;
    }
}

/* ── Max 400px (Small phones) ─────────────── */
@media (max-width: 400px) {
    .hero-section {
        padding: 125px 0 20px;
    }

    .hero-title {
        font-size: 1.55rem;
        padding-top: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-bento-grid {
        max-width: 280px;
        gap: 6px;
    }

    .hero-bento-card {
        padding: 12px 8px;
    }

    .hero-bento-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .hero-bento-title {
        font-size: 0.7rem;
    }

    .hero-bento-desc {
        font-size: 0.6rem;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: var(--text-xs);
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 28px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 11px;
    }

    .container {
        padding: 0 12px;
    }

    /* CTA */
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-price-amount {
        font-size: 2rem;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 12px 20px;
        font-size: var(--text-sm);
    }

    /* About */
    .about-hero-card {
        padding: 20px 16px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .about-stat {
        padding: 14px 10px;
    }

    .about-stat-value {
        font-size: var(--text-lg);
    }

    .about-feature-row {
        padding: 16px 14px;
        gap: 12px;
    }

    .about-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    /* Storage */
    .storage-image,
    .storage-iso {
        height: 140px;
    }

    .storage-content {
        padding: 16px 14px;
    }

    .storage-title {
        font-size: var(--text-md);
    }

    .storage-button {
        padding: 11px 16px;
        font-size: var(--text-xs);
    }

    /* Guide */
    .guide-banner-title {
        font-size: var(--text-xl);
    }

    .guide-banner-desc {
        font-size: var(--text-xs);
    }

    /* How it works */
    .hiw-hero-card {
        padding: 20px 16px;
    }

    .hiw-hero-title {
        font-size: var(--text-lg);
    }

    .hiw-step-card {
        padding: 14px 16px;
    }

    .hiw-step-num {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: var(--text-xs);
    }

    /* FAQ */
    .faq-cat {
        padding: 6px 10px;
        font-size: 9px;
    }

    .faq-question {
        padding: 14px 14px;
        gap: 10px;
    }

    .faq-question h5 {
        font-size: var(--text-xs);
    }

    .faq-toggle {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 9px;
    }

    .faq-answer {
        padding: 0 14px;
    }

    .faq-answer-content {
        font-size: var(--text-xs);
    }

    /* Contact */
    .contact-dark-form-card {
        padding: 20px 16px;
    }

    .contact-dark-form-title {
        font-size: var(--text-md);
    }

    .contact-dark-input {
        padding: 10px 12px;
        font-size: var(--text-xs);
    }

    .contact-dark-submit {
        padding: 12px 24px;
        font-size: var(--text-sm);
    }

    /* Footer */
    .footer {
        padding: 35px 0 0;
    }

    .footer-title {
        font-size: var(--text-sm);
    }

    /* Pricing banner */
    .pricing-banner-container {
        padding: 7px 10px;
    }

    .pricing-banner-amount {
        font-size: 0.95rem;
    }

    .pricing-banner-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* Toast */
    .toast {
        padding: 12px 12px 12px 16px;
    }

    .toast-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Back to top & Whatsapp */
    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: 13px;
        bottom: 78px;
        right: 12px;
    }

    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 78px;
        left: 12px;
    }
}

/* ── Max 350px (Very small phones) ──────────── */
@media (max-width: 350px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-bento-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 250px;
        gap: 5px;
    }

    .hero-bento-card {
        padding: 10px 6px;
    }

    .hero-bento-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .hero-bento-title {
        font-size: 0.65rem;
    }

    .hero-bento-desc {
        display: none;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    .about-stats-grid {
        gap: 6px;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .cta-price-amount {
        font-size: 1.8rem;
    }

    .storage-image,
    .storage-iso {
        height: 120px;
    }
}

/* ── Landscape-specific ─────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }

    .hero-image {
        display: none;
    }

    .mouse-scroll {
        display: none;
    }

    section {
        padding: 40px 0;
    }

    .modal-calculator .modal-body,
    .image-gallery-modal .modal-body {
        height: 80vh;
    }

    .gallery-slide img {
        max-height: 60vh;
    }
}

/* ── Safe area support (notched phones) ─────── */
@supports (padding: max(0px)) {
    .pricing-banner-container {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        left: max(16px, env(safe-area-inset-left));
    }

    .back-to-top {
        right: max(16px, env(safe-area-inset-right));
    }

    .toast-container {
        left: max(12px, env(safe-area-inset-left));
        right: max(12px, env(safe-area-inset-right));
    }
}

/* ── Touch device optimizations ─────────────── */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link {
        min-height: 44px;
    }

    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .faq-question {
        min-height: 52px;
    }

    .footer-link a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    .footer-social-link {
        min-width: 44px;
        min-height: 44px;
    }

    .contact-dark-social-link {
        min-width: 44px;
        min-height: 44px;
    }

    /* Remove hover effects that don't work on touch */
    .storage-card:hover,
    .about-feature-row:hover,
    .about-hero-card:hover,
    .about-stat:hover,
    .hiw-step-card:hover,
    .testimonial-card:hover,
    .hero-bento-card:hover {
        transform: none !important;
    }

    /* Ensure scroll snap areas */
    .storage-options {
        -webkit-overflow-scrolling: touch;
    }
}