* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}
.skip-to-main:focus {
    top: 0;
}
/* Navbar */
nav {
    background: #dfe7dd;
    display: block;
    width: 100%;
    padding: 24px 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
}
/* Social Media Icons */
.social-icons {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    z-index: 99;
    background: rgba(223, 231, 221, 0.95);
    border-top-left-radius: 10px;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.1);
}
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.social-icon.instagram {
    color: #E4405F;
}
.social-icon.facebook {
    color: #1877F2;
}
@media (max-width: 768px) {
    .social-icons {
        padding: 0.75rem;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
@media (max-width: 768px) {
    nav {
        padding: 16px 1rem;
    }
    nav ul {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }
    nav li {
        min-height: 44px; /* Ensure touch targets are at least 44x44px */
        display: flex;
        align-items: center;
    }
    nav a {
        min-height: 44px;
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }
    /* Hide items that should be in hamburger menu on mobile */
    nav ul li.nav-mobile-hidden {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    /* First row: Home, Current Page (if not home), Hamburger (always on right) */
    nav ul li.nav-home {
        order: 1;
        flex: 0 0 auto;
    }
    /* Show current page indicator on mobile */
    nav ul li.nav-current-page {
        order: 2;
        flex: 1 1 auto;
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }
    /* Hide current page indicator on home page since HOME button already shows it */
    nav ul li.nav-current-page.nav-home-page {
        display: none !important;
    }
    /* Hamburger always on the right end of first row */
    nav ul li.hamburger-menu-container {
        order: 3;
        flex: 0 0 auto;
        margin-left: auto;
    }
    /* Ensure first row items don't wrap before hamburger */
    nav ul li.nav-home,
    nav ul li.nav-current-page {
        flex-shrink: 0;
    }
    /* Second row: Call Us and WhatsApp - always together in second row */
    nav ul li.nav-mobile-row2 {
        order: 10;
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 0;
        justify-content: center;
        width: calc(50% - 0.25rem);
    }
    /* Ensure second row items are properly sized */
    nav #call-us-nav-item,
    nav #whatsapp-nav-item {
        display: flex;
        justify-content: center;
    }
    /* Make with-icon links smaller on mobile */
    nav a.with-icon {
        font-size: 14px;
        padding: 0.5rem 0.75rem;
    }
    nav a.with-icon svg {
        width: 20px;
        height: 20px;
    }
}
nav li {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}
/* Hide current page indicator on desktop - only show on mobile */
nav li.nav-current-page {
    display: none;
}
nav a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    white-space: nowrap;
}
nav a:hover {
    color: #efc14c;
}
nav a.active {
    color: #efc14c;
}
nav a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
nav a.with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19.5px; /* 1.5x the normal 13px */
    font-weight: 500;
    padding: 0.525rem 1.125rem; /* 1.5x the normal 0.35rem 0.75rem */
    color: #000 !important; /* Force black color */
}
/* Disable ALL color changes for Call Us and WhatsApp buttons */
nav a.with-icon:hover,
nav a.with-icon:active,
nav a.with-icon:focus,
nav a.with-icon:visited,
nav a.with-icon:visited:hover,
nav a.with-icon:visited:active,
nav a.with-icon:visited:focus {
    color: #000 !important;
    outline: none;
}
nav a.with-icon svg {
    width: 30px; /* 1.5x proportional size */
    height: 30px;
}
/* Hamburger Menu */
.hamburger-menu-container {
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
}
.hamburger-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 44px; /* Minimum touch target size */
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 7px; /* Padding to maintain 30px visual size with 44px touch target */
    z-index: 101;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}
.hamburger-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    min-height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger-menu-btn:hover span {
    background: #efc14c;
}
.hamburger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.hamburger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.hamburger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #dfe7dd;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
    padding-top: 80px;
    overflow-y: auto;
}
.hamburger-menu.active {
    right: 0;
}
.hamburger-menu-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
}
.hamburger-menu-link {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.hamburger-menu-link:hover,
.hamburger-menu-link.active {
    color: #efc14c;
    background: rgba(239, 193, 76, 0.1);
}
.hamburger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99;
}
.hamburger-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .hamburger-menu {
        width: 100%;
    }
    .hamburger-menu-container {
        display: block !important;
        visibility: visible !important;
    }
    .hamburger-menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
/* Main Content */
main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
#content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    border: 1px solid #00000080;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    color: #000000cc;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    line-height: 1.4;
    white-space: nowrap;
    text-decoration: none;
}
.home-button:hover {
    color: #fff;
    border-color: #efc14c;
    background: #efc14c;
}
/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
    min-width: 300px;
}
.hero-content h2 {
    font-size: 0.9rem;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.hero-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-content .brand-name {
    color: #f80202;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    border: 1px solid #00000080;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    color: #000000cc;
    margin-top: 1rem;
    white-space: nowrap;
    text-decoration: none;
}
.hero-button:hover {
    color: #fff;
    border-color: #efc14c;
    background: #efc14c;
}
.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* Favourite Finds Section */
.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    width: 100%;
    background: #eeeeed;
}
.max-width-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}
.section-heading-section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.section-heading-text1 {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000cc;
}
.section-heading-text2 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-top: 0.5rem;
}
.home-cards-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: center;
    overflow-x: auto;
    overflow-y: visible;
    padding: 3rem 0;
    min-height: 250px;
}
.category-card-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000cc;
    transition: transform 0.3s, color 0.3s;
    flex: 0 0 auto;
    min-width: 150px;
}
.category-card-category-card:hover {
    transform: scale(1.2);
    color: #efc14c;
}
.category-card-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}
.category-card-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
/* Pricing and Information Sections */
.info-section {
    width: 100%;
    padding: 3rem 0;
    background: white;
}
.info-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.info-section h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000cc;
    margin-bottom: 1.5rem;
}
.info-section h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000cc;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.info-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000cc;
    margin-bottom: 1rem;
}
.info-section ul {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #000000cc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.info-section li {
    margin-bottom: 0.5rem;
}
.info-section hr {
    border: none;
    border-top: 2px solid #efc14c;
    margin: 2rem 0;
}
/* Contact Page Specific Styles */
.contact-info-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}
.contact-info-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.contact-shop-photo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shop-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-details {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 2rem 0;
}
.contact-details h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000cc;
    margin-bottom: 1.5rem;
}
.contact-detail-item {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #000000cc;
    margin-bottom: 1.5rem;
}
.contact-detail-item strong {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}
.contact-detail-item a {
    color: #f80202;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-detail-item a:hover {
    color: #efc14c;
    text-decoration: underline;
}
.contact-detail-item address {
    font-style: normal;
    line-height: 1.6;
    margin: 0;
    color: #000000cc;
}
.contact-form-section {
    background: #e8f4f8;
    padding: 1.5rem 0;
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .contact-info-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-shop-photo,
    .contact-details {
        max-width: 100%;
    }
    .shop-image {
        max-width: 250px;
    }
    .contact-form-section {
        padding: 2rem 0;
    }
}
.pricing-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    margin: 1.5rem 0;
    background: white;
}
.pricing-table thead {
    background: #dfe7dd;
}
.pricing-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #000;
    border: 1px solid #d0d9c8;
    white-space: nowrap;
}
.pricing-table th:first-child {
    min-width: 150px;
}
.pricing-table td {
    padding: 0.875rem 1rem;
    border: 1px solid #d0d9c8;
    color: #000000cc;
}
.pricing-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.pricing-table tbody tr:hover {
    background: #f0f5ee;
}
.payment-note {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: #000000cc;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-left: 3px solid #efc14c;
}
/* Services Tabs */
.services-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.services-main-heading {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #f80202;
    text-align: center;
    margin-bottom: 2rem;
}
.services-tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 2px solid #d0d9c8;
    margin-bottom: 2rem;
}
.services-tab-button {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #000000cc;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    margin-bottom: -2px;
}
.services-tab-button:hover {
    color: #efc14c;
    background: #f9f9f9;
}
.services-tab-button.active {
    color: #efc14c;
    border-bottom-color: #efc14c;
    font-weight: 600;
}
.services-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}
.services-tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.services-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000cc;
    margin-bottom: 1.5rem;
}
.services-content h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000cc;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.services-content p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000cc;
    margin-bottom: 1rem;
}
.services-content ul,
.services-content ol {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #000000cc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.services-content li {
    margin-bottom: 0.5rem;
}
.services-content ol li {
    margin-bottom: 0.75rem;
}
.services-content hr {
    border: none;
    border-top: 2px solid #efc14c;
    margin: 2rem 0;
}
/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.two-column h3 {
    margin-top: 0;
}
/* FAQ Accordion */
.faq-accordion {
    margin: 2rem 0;
}
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #efc14c;
    border-radius: 0;
}
.faq-question {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000cc;
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-question:hover {
    background: #f0f5ee;
    color: #efc14c;
}
.faq-question.active {
    background: #dfe7dd;
    color: #000;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-question.active::after {
    content: '−';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}
.faq-answer.active {
    max-height: 500px;
    padding: 1rem 1.5rem;
}
.faq-answer p {
    margin: 0;
}
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}
/* Gallery Styles */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.gallery-main-heading {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #f80202;
    text-align: center;
    margin-bottom: 3rem;
}
.gallery-category {
    margin-bottom: 4rem;
}
.gallery-category-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000cc;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #efc14c;
}
.gallery-subcategory {
    margin-bottom: 3rem;
}
.gallery-subcategory-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000cc;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-transform: capitalize;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #f9f9f9;
    aspect-ratio: 1;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item.hidden {
    display: none;
}
.view-all-button {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    margin-top: 1.5rem;
    background: transparent;
    border: 1px solid #00000080;
    color: #000000cc;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
    display: inline-block;
}
.view-all-button:hover {
    color: #fff;
    border-color: #efc14c;
    background: #efc14c;
}
.view-all-container {
    text-align: center;
    margin-top: 1rem;
}
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}
.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}
.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
.lightbox-close:hover {
    color: #efc14c;
    background: rgba(0, 0, 0, 0.7);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}
.lightbox-nav:hover {
    color: #efc14c;
    background: rgba(0, 0, 0, 0.7);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    .gallery-main-heading {
        font-size: 2rem;
    }
    .gallery-category-title {
        font-size: 1.5rem;
    }
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .hero-section {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .home-cards-container {
        justify-content: flex-start;
    }
}
/* Contact CTA Section */
.contact-cta-section {
    background: #dfe7dd;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}
.contact-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-cta-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000cc;
    margin-bottom: 1.5rem;
}
.contact-cta-button {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: #f80202;
    padding: 12px 32px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #f80202;
}
.contact-cta-button:hover {
    background: #efc14c;
    border-color: #efc14c;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .contact-cta-section {
        padding: 2rem 1rem;
    }
    .contact-cta-text {
        font-size: 1.25rem;
    }
    .contact-cta-button {
        font-size: 1rem;
        padding: 10px 24px;
    }
}
/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}
footer p {
    margin: 0.5rem 0;
}
/* Zapier form styling */
zapier-interfaces-page-embed {
    display: block;
    width: 100%;
    min-height: 600px;
    height: auto;
}
zapier-interfaces-page-embed iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 600px !important;
    border: none;
}