:root {
    --walnut-brown: #6F4E37;
    --cream: #F5F5DC;
    --forest-green: #228B22;
    --soft-gold: #D4AF37;
    --dark-brown: #3E2723;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--cream);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============ WhatsApp Button ============ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* ============ Header & Navigation ============ */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--walnut-brown);
    z-index: 1001;
}

.logo span {
    color: var(--forest-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--walnut-brown);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    display: block;
}

.nav-links a:hover {
    color: var(--forest-green);
}

/* ============ Hero Section ============ */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;

    min-height: 100vh; /* ✅ safe */
    padding: 6rem 1rem 4rem; /* ✅ prevents header overlap */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    padding: 0 10px;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 4rem 5%;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ============ Buttons ============ */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.95rem;
}

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

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.btn-primary:hover {
    background-color: var(--walnut-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-inquire {
    background: var(--forest-green);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-inquire:hover {
    background: var(--walnut-brown);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============ Gallery Section ============ */
.gallery-section {
    padding: 4rem 5%;
    background-color: var(--cream);
}

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

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    color: var(--walnut-brown);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--dark-brown);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--walnut-brown);
    background: transparent;
    color: var(--walnut-brown);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--walnut-brown);
    color: white;
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.quick-view {
    background: white;
    color: var(--walnut-brown);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-view:hover {
    background: var(--walnut-brown);
    color: white;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    color: var(--walnut-brown);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.price {
    font-weight: bold;
    color: var(--forest-green);
    font-size: 1.1rem;
}

/* ============ Dining Packages ============ */
.dining-packages-section {
    margin: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid var(--soft-gold);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--soft-gold);
    color: var(--dark-brown);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.package-header h4 {
    color: var(--walnut-brown);
    font-size: 1.3rem;
    margin: 0;
}

.package-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--forest-green);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--dark-brown);
}

.package-features i {
    color: var(--forest-green);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* ============ Size Guide ============ */
.size-guide {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.size-guide h3 {
    text-align: center;
    color: var(--walnut-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.guide-table {
    overflow-x: auto;
}

.guide-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.guide-table th {
    background-color: var(--walnut-brown);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.guide-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--cream);
    color: var(--dark-brown);
}

.guide-table tr:hover {
    background-color: var(--cream);
}

/* ============ CTA Section ============ */
.gallery-cta {
    background: linear-gradient(135deg, var(--walnut-brown), var(--dark-brown));
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ============ Material Options ============ */
.material-options {
    background: var(--cream);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
}

.material-options h3 {
    text-align: center;
    color: var(--walnut-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.material-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.material-icon {
    width: 80px;
    height: 80px;
    background: var(--walnut-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.material-card h4 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.material-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============ Modal Styles ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-container {
    background: white;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--walnut-brown);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
}

.modal-content {
    padding: 2rem;
}

/* ============ About Section ============ */
.section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--walnut-brown);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--soft-gold);
    margin: 0.5rem auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, white 50%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

.about-heading {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--walnut-brown);
}

.about-paragraph {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

/* Features Grid */
.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    transition: 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--soft-gold);
    min-width: 30px;
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-brown);
}

.feature-item span {
    font-size: 0.9rem;
    color: #555;
}

/* ============ Product Categories ============ */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    margin-bottom: 0.5rem;
    color: var(--walnut-brown);
    font-size: 1.3rem;
}

/* ============ Contact Section ============ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem;
}

.contact-info-wrapper {
    display: flex;
    align-items: center;
}

.contact-info h3 {
    color: var(--walnut-brown);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--soft-gold);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item strong {
    display: block;
    color: var(--dark-brown);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--dark-brown);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-buttons .btn {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.9rem 1.5rem;
}

.contact-buttons .btn i {
    font-size: 1.1rem;
}

/* Map Styles */
.contact-map {
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.map-fallback {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1rem;
}

.map-overlay i {
    margin-right: 8px;
    color: var(--soft-gold);
}

.map-overlay .btn {
    background-color: white;
    color: var(--forest-green);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.map-info {
    background-color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info i {
    color: var(--forest-green);
    font-size: 1.2rem;
}

.map-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-brown);
}

/* ============ Social Media ============ */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--walnut-brown);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.facebook-bg { background-color: #1877F2; }
.instagram-bg { background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80); }
.tiktok-bg { background-color: #000000; }
.twitter-bg { background-color: #1DA1F2; }

/* ============ Footer ============ */
footer {
    background-color: var(--dark-brown);
    color: white;
    padding: 2.5rem 5% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--cream);
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--soft-gold);
    min-width: 20px;
}

.copyright {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* ============ Responsive Design ============ */

/* Tablet & Small Desktop */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image::after {
        display: none;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .contact-buttons .btn {
        min-width: 150px;
    }
}

/* Mobile & Tablet */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    /* Mobile Menu Styles */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
    }
    
    /* Menu toggle animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Overlay when menu is open */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }
    
    .overlay.active {
        display: block;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 1rem;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
        order: -1;
    }
    
    .gallery-cta,
    .size-guide,
    .material-options {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .materials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section {
        padding: 2.5rem 4%;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .categories {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-container {
        padding: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .map-overlay .btn {
        align-self: flex-start;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-heading {
        font-size: 1.4rem;
        text-align: center;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .price-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn-inquire {
        width: 100%;
        text-align: center;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-table table {
        min-width: 100%;
    }
    
    .category-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-container {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-item i {
        margin-bottom: 5px;
    }
    
    .map-container {
        min-height: 250px;
    }
}