/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: #fcf8f2;
    color: #3e2c1b;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    background: #c77d4a;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #a86434;
}

.btn-outline {
    background: transparent;
    border: 2px solid #c77d4a;
    color: #c77d4a;
}

.btn-outline:hover {
    background: #c77d4a;
    color: #fff;
}

/* ---------- HEADER / NAV ---------- */
header {
    background: #fffcf7;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;  /* vertically centers the logo image */
    gap: 0.3rem;
}

/* Style for the logo image */
.logo-img {
    height: 50px;         /* adjust this to make the logo bigger or smaller */
    width: auto;          /* keeps the image proportions intact */
    max-height: 60px;     /* prevents it from growing too tall on large screens */
    display: block;
}

/* Logo link - makes the whole logo clickable */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    gap: 0.3rem;
}

/* Logo text next to the image */
.logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #c77d4a;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    background: #f3ede6;
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    white-space: nowrap;
}

/* Make the text smaller on mobile */
@media (max-width: 500px) {
    .logo-text {
        font-size: 1rem;
        margin-left: 0.3rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    font-weight: 500;
}

.nav-links a {
    color: #4d3824;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #c77d4a;
}

.nav-links .btn-small {
    background: #c77d4a;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-links .btn-small:hover {
    background: #a86434;
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: #3e2c1b;
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #f3ede6;
    color: #b07d52;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.25rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #2d1f12;
}

.hero h2 span {
    font-weight: 600;
    color: #c77d4a;
}

.hero p {
    max-width: 580px;
    margin: 1.2rem auto 2rem;
    font-size: 1.15rem;
    color: #6b5540;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- MENU / PRODUCTS ---------- */
.menu-section {
    padding: 3.5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: #8a735c;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fffcf7;
    border-radius: 24px;
    padding: 1.8rem 1.5rem 1.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    border: 1px solid #f3ede6;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.product-icon {
    font-size: 2.4rem;
    color: #c77d4a;
    margin-bottom: 0.75rem;
}

/* Special styling for product icons that are logos */
.product-icon-logo {
    font-size: 5rem;
    color: #c77d4a;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-logo-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: #fcf8f2;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(199, 125, 74, 0.15);
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card .price {
    font-size: 1.4rem;
    font-weight: 300;
    color: #c77d4a;
    margin: 0.4rem 0 0.2rem;
}

.product-card .note {
    font-size: 0.85rem;
    color: #8a735c;
}

/* ---------- FLIP ANIMATION ---------- */
.flip-container {
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100px;
    height: 100px;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    margin: 0 auto;
}

/* Flip on hover - the entire product card triggers it */
.product-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcf8f2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.flip-back {
    transform: rotateY(180deg);
}

.flip-hint {
    font-size: 0.7rem;
    color: #8a735c;
    margin-top: 0.3rem;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.product-card:hover .flip-hint {
    opacity: 1;
}

/* Make the images fit properly */
.flip-front .product-logo-icon,
.flip-back .product-logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
}

/* ---------- ABOUT ---------- */
.about-section {
    padding: 3.5rem 0;
    background: #f3ede6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-text h2 span {
    font-weight: 600;
    color: #c77d4a;
}

.about-text p {
    color: #4d3824;
    margin-bottom: 1.2rem;
}

.about-text .signature {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    color: #b07d52;
    margin-top: 0.5rem;
}

.about-map {
    border-radius: 40px;
    height: 240px;
    overflow: hidden;   /* keeps the iframe inside the rounded corners */
    background: #e4d9cd; /* fallback background while loading */
}

.about-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- CONTACT SECTION (SIMPLIFIED) ---------- */
.contact-section {
    padding: 3.5rem 0;
    background: #fffcf7;
}

.contact-form {
    max-width: 650px;
    margin: 1.5rem auto 0;
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3ede6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4d3824;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e8dfd5;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    background: #fcfaf7;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    color: #3e2c1b;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c77d4a;
    box-shadow: 0 0 0 3px rgba(199, 125, 74, 0.15);
    background: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .contact-form {
        padding: 1.5rem 1.2rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem 1rem;
    }
}

footer {
    background: #fffcf7;
    border-top: 1px solid #f3ede6;
    padding: 2rem 0;
    text-align: center;
    color: #8a735c;
}

footer .footer-copyright {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

footer .footer-credit {
    font-size: 0.85rem;
    color: #b07d52;
}

footer .footer-credit a {
    color: #c77d4a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

footer .footer-credit a:hover {
    color: #a86434;
    text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image {
        height: 180px;
        background-size: 60px;
    }

    .hero h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 680px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fffcf7;
        padding: 1rem 0 0.5rem;
        gap: 1rem;
        border-top: 1px solid #f3ede6;
        margin-top: 0.75rem;
    }

    .nav-links.open {
        display: flex;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 440px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }
}

/* ---------- BIG HERO LOGO ---------- */
.hero-logo {
    display: flex;
    justify-content: center;   /* centers the logo horizontally */
    margin-bottom: 1.5rem;     /* space between the logo and the badge below */
}

.hero-logo-img {
    max-width: 350px;          /* sets a maximum size, adjust to your liking */
    width: 100%;              /* makes it responsive on smaller screens */
    height: auto;             /* keeps the original aspect ratio */
    display: block;
}

/* Make it smaller on mobile phones */
@media (max-width: 600px) {
    .hero-logo-img {
        max-width: 220px;      /* scales down nicely on small screens */
    }
}

/* ---------- QUOTING SYSTEM ---------- */
/* Quantity Controls */
.qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.qty-btn {
    background: #f3ede6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3e2c1b;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #c77d4a;
    color: #fff;
}

.qty-display {
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    color: #3e2c1b;
}

.btn-add-to-quote {
    background: transparent;
    border: 2px solid #c77d4a;
    color: #c77d4a;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.6rem;
    width: 100%;
}

.btn-add-to-quote:hover {
    background: #c77d4a;
    color: #fff;
}

.btn-add-to-quote.added {
    background: #2b7d4b;
    border-color: #2b7d4b;
    color: #fff;
}

/* Quote Section */
.quote-section {
    margin-top: 3rem;
    padding: 0 0.5rem;
}

.quote-summary {
    background: #fffcf7;
    border: 1px solid #f3ede6;
    border-radius: 30px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3ede6;
}

.quote-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3e2c1b;
}

.quote-header h3 i {
    color: #c77d4a;
    margin-right: 0.5rem;
}

.quote-count {
    font-size: 0.9rem;
    color: #8a735c;
    background: #f3ede6;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
}

.quote-items {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    max-height: 150px;
    overflow-y: auto;
}

.quote-items li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f8f4ed;
    font-size: 0.95rem;
    color: #4d3824;
}

.quote-items li .item-details {
    display: flex;
    gap: 0.5rem;
}

.quote-items li .item-details .item-qty {
    font-weight: 600;
    color: #c77d4a;
}

.quote-items li .item-details .item-unit {
    color: #8a735c;
    font-size: 0.8rem;
}

.quote-items .empty-quote-msg {
    text-align: center;
    color: #b07d52;
    font-style: italic;
    padding: 1rem 0;
    border-bottom: none;
}

.quote-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 2px solid #f3ede6;
    font-size: 1.2rem;
    font-weight: 500;
    color: #3e2c1b;
}

.quote-total strong {
    color: #c77d4a;
    font-size: 1.4rem;
}

.quote-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.btn-get-quote {
    background: #c77d4a;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
    width: 100%;
    font-size: 1rem;
}

.btn-get-quote:hover {
    background: #a86434;
}

.btn-clear-quote {
    background: transparent;
    color: #8a735c;
    border: 1px solid #e8dfd5;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    width: 100%;
}

.btn-clear-quote:hover {
    background: #f3ede6;
    border-color: #b07d52;
    color: #4d3824;
}

/* Hide the quote section when empty */
.quote-summary.hidden {
    display: none;
}

/* Responsive quote */
@media (max-width: 600px) {
    .quote-summary {
        padding: 1rem 1.2rem;
    }

    .quote-header {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .quote-items li {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .btn-get-quote,
    .btn-clear-quote {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* ---------- QUOTE PERSONAL DETAILS ---------- */
.quote-personal-details {
    margin: 1rem 0 1.2rem;
    padding-top: 0.8rem;
    border-top: 2px solid #f3ede6;
}

.quote-personal-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #3e2c1b;
    margin-bottom: 0.8rem;
}

.quote-personal-details h4 i {
    color: #c77d4a;
    margin-right: 0.5rem;
}

.personal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.personal-field {
    display: flex;
    flex-direction: column;
}

.personal-field.full-width {
    grid-column: 1 / -1;
}

.personal-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4d3824;
    margin-bottom: 0.2rem;
}

.personal-field input {
    padding: 0.6rem 0.8rem;
    border: 1px solid #e8dfd5;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    background: #fcfaf7;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    color: #3e2c1b;
}

.personal-field textarea {
    padding: 0.6rem 0.8rem;
    border: 1px solid #e8dfd5;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    background: #fcfaf7;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    color: #3e2c1b;
    resize: vertical;
    width: 100%;
}

.personal-field textarea:focus {
    border-color: #c77d4a;
    box-shadow: 0 0 0 3px rgba(199, 125, 74, 0.15);
    background: #ffffff;
}

.personal-field textarea::placeholder {
    color: #b07d52;
    font-size: 0.8rem;
}

.personal-field input:focus {
    border-color: #c77d4a;
    box-shadow: 0 0 0 3px rgba(199, 125, 74, 0.15);
    background: #ffffff;
}

.personal-field input::placeholder {
    color: #b07d52;
    font-size: 0.8rem;
}

/* WhatsApp Button */
.btn-whatsapp-quote {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1rem;
}

.btn-whatsapp-quote:hover {
    background: #1da851;
}

.btn-whatsapp-quote i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Remove the old total display */
.quote-total {
    display: none;
}

/* Responsive personal details */
@media (max-width: 500px) {
    .personal-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CUSTOM CONFIRM MODAL ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fffcf7;
    border-radius: 30px;
    padding: 2.5rem 3rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid #f3ede6;
    animation: slideUp 0.3s ease;
}

.modal-icon {
    font-size: 3rem;
    color: #c77d4a;
    margin-bottom: 0.5rem;
}

.modal-icon i {
    background: #f3ede6;
    padding: 0.8rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3e2c1b;
    margin-bottom: 0.5rem;
}

.modal-message {
    font-size: 1rem;
    color: #6b5540;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    min-width: 120px;
}

.modal-btn-cancel {
    background: #f3ede6;
    color: #4d3824;
}

.modal-btn-cancel:hover {
    background: #e8dfd5;
}

.modal-btn-confirm {
    background: #c77d4a;
    color: #fff;
}

.modal-btn-confirm:hover {
    background: #a86434;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive modal */
@media (max-width: 500px) {
    .modal-box {
        padding: 2rem 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .modal-btn {
        width: 100%;
        min-width: unset;
        padding: 0.7rem 1.5rem;
    }
    
    .modal-icon i {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
    padding: 3.5rem 0;
    background: #fffcf7;
}

.gallery-curve {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem 2rem;
    margin-top: 2.5rem;
    padding: 2rem 0;
    position: relative;
}

/* Each image container */
.gallery-item {
    flex: 0 0 auto;
    width: 180px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    transform: translateY(var(--offset, 0)) rotate(var(--rotate, 0deg));
    animation: floatGallery 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    cursor: pointer;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #fffcf7;
    padding: 0.6rem;
    border: 1px solid #f3ede6;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover effect */
.gallery-item:hover {
    transform: translateY(calc(var(--offset, 0) - 16px)) rotate(var(--rotate, 0deg)) scale(1.05);
    box-shadow: 0 16px 40px rgba(199, 125, 74, 0.25);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Floating animation */
@keyframes floatGallery {
    0%, 100% {
        transform: translateY(var(--offset, 0)) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(calc(var(--offset, 0) - 14px)) rotate(calc(var(--rotate, 0deg) + 1deg));
    }
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .gallery-item {
        width: 140px;
    }
    .gallery-item img {
        height: 140px;
    }
    .gallery-curve {
        gap: 1rem;
    }
}

@media (max-width: 540px) {
    .gallery-item {
        width: 100px;
    }
    .gallery-item img {
        height: 100px;
    }
    .gallery-curve {
        gap: 0.8rem;
        padding: 1rem 0;
    }
}

/* WhatsApp Submit Button for Contact Form */
.btn-whatsapp-submit {
    background: #25D366 !important;
    color: #fff !important;
    border: none !important;
    transition: background 0.2s !important;
}

.btn-whatsapp-submit:hover {
    background: #1da851 !important;
}

.btn-whatsapp-submit i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
