:root {
    --primary-color: #006A5F;
    --secondary-color: #FF7F50;
    --accent-color: #F4A261;
    --text-dark: #2d3748;
    --text-light: #718096;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    border-radius: 8px;
}

.logo {
    width: 50px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.cart-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 0.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .cart-icon {
        padding: 0.5rem 0;
    }

    .cart-icon i {
        font-size: 1.2rem;
    }

    .cart-count {
        position: static;
        margin-left: 0.5rem;
        padding: 4px 6px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 40px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 1rem;
    width: 100%;
    margin: 0;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: slideUp 1s 0.2s ease backwards;
}

.button-container {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

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

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

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

/* Responsive Typography */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Stack buttons vertically on smaller screens */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
/* Why Choose Us Section */
.why-choose-section {
    padding: 4rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 162, 97, 0.1));
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--secondary-color);
}

/* Benefits Grid */
.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.benefit-card {
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Different shades of website's colors */
.benefit-card:nth-child(1) {
    background: rgba(0, 106, 95, 0.1);
}

.benefit-card:nth-child(2) {
    background: rgba(255, 127, 80, 0.1);
}

.benefit-card:nth-child(3) {
    background: rgba(244, 162, 97, 0.1);
}

.benefit-card:nth-child(4) {
    background: rgba(0, 106, 95, 0.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Icons */
.benefit-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-card:hover i {
    transform: scale(1.1);
}

/* CTA Container */
.why-choose-cta-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    text-align: center;
    background: rgba(0, 106, 95, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Paragraph Styling */
.why-choose-cta-container p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA Button Styling */
.why-choose-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for CTA Button */
.why-choose-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-choose-cta-container {
        padding: 1.5rem 1rem;
    }

    .why-choose-cta-container p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .why-choose-cta-btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-card {
        padding: 0.4rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .why-choose-cta-container p {
        font-size: 0.9rem;
    }

    .why-choose-cta-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Products Section */
#products {
    padding: 4rem 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 106, 95, 0.05);
    border-radius: 8px;
}

.filter,
.sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter label,
.sort label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter select,
.sort select {
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter select:focus,
.sort select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 106, 95, 0.2);
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    padding: 0.6rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

/* Default image height for larger screens */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 0.4rem;
    width: 100%;
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Customization Cards */
.product-card[data-category="customization"] {
    padding: 0.4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product-card[data-category="customization"] .btn-secondary {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.95rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.product-card[data-category="customization"] .btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        padding: 0.5rem;
    }

    .product-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 0.9rem;
    }

    /* Customization Cards for Tablets */
    .product-card[data-category="customization"] {
        padding: 0.6rem;
    }

    .product-card[data-category="customization"] .btn-secondary {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    .filter-sort-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .filter label,
    .sort label {
        font-size: 0.9rem;
    }

    .filter select,
    .sort select {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 0.4rem;
    }

    .product-card {
        padding: 0.4rem;
    }

    .product-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .product-description {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 0.8rem;
    }

    /* Customization Cards for Mobile */
    .product-card[data-category="customization"] {
        padding: 0.5rem;
    }

    .product-card[data-category="customization"] .btn-secondary {
        font-size: 0.85rem;
        padding: 0.3rem;
    }
}

/* Testimonials Section */
#testimonials {
    padding: 4rem 1rem;
    background: linear-gradient(rgba(0, 106, 95, 0.05), rgba(0, 106, 95, 0.05));
    overflow: hidden;
    position: relative;
}

.testimonials-carousel {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
    padding: 2rem 0;
    scroll-behavior: smooth;
    position: relative;
}

/* Hide scrollbar for Chrome/Safari */
.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(25% - 1.5rem);
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    scroll-snap-align: start;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Navigation Buttons */
.slider-prev,
.slider-next {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    position: absolute;
    top: calc(50% + 50px);
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
}

.slider-prev {
    left: calc((100vw - 1400px) / 2 - 60px);
}

.slider-next {
    right: calc((100vw - 1400px) / 2 - 60px);
}

/* Highlighted Testimonial Card */
.testimonial-card-highlight {
    border-left: 4px solid #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.testimonial-card-highlight::before {
    color: #ffc107;
    opacity: 0.3;
}

.testimonial-card-highlight p {
    font-weight: 600;
}

.testimonial-card-highlight h4 {
    color: #ffc107;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1.5rem);
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: -8px;
        left: 8px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .testimonial-card h4 {
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 100%;
        padding: 1rem;
    }

    .testimonial-card::before {
        font-size: 2.5rem;
        top: -6px;
        left: 6px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
    }

    .testimonial-card h4 {
        font-size: 0.9rem;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }
}

/* Contact Us Section */
#contact {
    padding: 4rem 1rem;
    max-width: 100vw;
    background: linear-gradient(rgba(0, 106, 95, 0.05), rgba(0, 106, 95, 0.05)), url('./img/hero4.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.90);
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-content {
    flex: 1;
    max-width: 600px;
}

#contact .section-title {
    font-size: 2rem;
    color: #006a5f;
    margin-bottom: 1rem;
}

#contact .contact-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

#contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#contact .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #999;
    font-size: 0.9rem;
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: #006a5f;
    box-shadow: 0 0 8px rgba(0, 106, 95, 0.2);
}

#contact .contact-form button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: #006a5f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#contact .contact-form button[type="submit"]:hover {
    background: #004d47;
    transform: translateY(-2px);
}

#contact .contact-form button[type="submit"]:active {
    transform: translateY(1px);
}

.success-message {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    text-align: center;
}

#contact .contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

#contact .info-card {
    background: rgba(0, 106, 95, 0.05);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact .info-card i {
    font-size: 1.75rem;
    color: #006a5f;
    margin-bottom: 0.75rem;
}

#contact .info-card h3 {
    font-size: 1.25rem;
    color: #006a5f;
    margin-bottom: 0.5rem;
}

#contact .info-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* 1024px and Below */
    #contact .contact-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    #contact .contact-content {
        max-width: 100%;
    }

    #contact .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    #contact .info-card {
        padding: 1rem;
    }

    #contact .section-title {
        font-size: 1.8rem;
    }

    #contact .contact-description {
        font-size: 0.95rem;
    }

    #contact input,
    #contact textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    #contact input::placeholder,
    #contact textarea::placeholder {
        font-size: 0.85rem;
    }

    #contact .contact-form button[type="submit"] {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    #contact .info-card i {
        font-size: 1.5rem;
    }

    #contact .info-card h3 {
        font-size: 1.1rem;
    }

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

@media (max-width: 768px) {

    /* Tablet Layout */
    #contact .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    #contact .info-card i {
        font-size: 1.25rem;
    }

    #contact .info-card h3 {
        font-size: 1rem;
    }

    #contact .info-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    /* Mobile Layout */
    #contact .contact-container {
        padding: 1rem;
    }

    #contact .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #contact .info-card {
        padding: 1rem;
    }

    #contact .section-title {
        font-size: 1.6rem;
    }

    #contact .contact-description {
        font-size: 0.9rem;
    }

    #contact input,
    #contact textarea {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    #contact input::placeholder,
    #contact textarea::placeholder {
        font-size: 0.8rem;
    }

    #contact .contact-form button[type="submit"] {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    #contact .info-card i {
        font-size: 1rem;
    }

    #contact .info-card h3 {
        font-size: 0.95rem;
    }

    #contact .info-card p {
        font-size: 0.75rem;
    }
}

/* Footer Section */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

footer .social-links {
    display: flex;
    flex-direction: column;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Copyright Section */
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Designer Credit */
.designer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
}

.designer-credit::after {
    content: "Visit Jerry's Portfolio";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.designer-credit:hover::after {
    opacity: 1;
}

.designer-credit i {
    color: #ff4d4d;
    margin: 0 0.25rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.designer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* 1024px and Below */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-map {
        height: 180px;
    }

    footer .social-links a {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {

    /* Tablet Layout */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
    }

    .footer-map {
        height: 150px;
    }

    footer .social-links a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    /* Mobile Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.75rem;
    }

    .footer-map {
        height: 120px;
    }

    footer .social-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .copyright,
    .designer-credit {
        font-size: 0.8rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    text-decoration: none;
    z-index: 1000;
}

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

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.scroll-top-btn i {
    font-size: 24px;
}

/* Show the scroll-to-top button when the user scrolls down */
.scroll-top-btn.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top-btn {
        width: 50px;
        height: 50px;
        bottom: 75px;
        right: 15px;
    }

    .scroll-top-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 24px;
        bottom: 10px;
        right: 10px;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 60px;
        right: 10px;
    }

    .scroll-top-btn i {
        font-size: 18px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    display: none;
}

.cart-modal .cart-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cart-modal .cart-modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
}

.cart-modal #cartItems {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-modal .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.cart-modal .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-modal #checkoutButton,
.cart-modal #closeCartModal {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cart-modal #checkoutButton {
    background: var(--primary-color);
    color: white;
}

.cart-modal #checkoutButton:hover {
    background: var(--secondary-color);
}

.cart-modal #closeCartModal {
    background: #e2e8f0;
    color: var(--text-dark);
}

.cart-modal #closeCartModal:hover {
    background: #cbd5e0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cart-modal .cart-modal-content {
        padding: 1.5rem;
    }

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

    .cart-modal #checkoutButton,
    .cart-modal #closeCartModal {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .cart-modal .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cart-modal .cart-modal-content {
        padding: 1rem;
    }

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

    .cart-modal #checkoutButton,
    .cart-modal #closeCartModal {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* Checkout Form */
.checkout-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    display: none;
}

.checkout-form .checkout-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.checkout-form h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
}

.checkout-form .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.checkout-form .close-button:hover {
    color: var(--primary-color);
}

/* Scoped Form Group Styles */
.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.checkout-form .form-group input,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkout-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkout-form button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.checkout-form button[type="submit"]:hover {
    background: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .checkout-form .checkout-content {
        padding: 1.5rem;
    }

    .checkout-form h2 {
        font-size: 1.75rem;
        /* Smaller for tablets */
    }

    .checkout-form .form-group label,
    .checkout-form .form-group input,
    .checkout-form .form-group textarea,
    .checkout-form button[type="submit"] {
        font-size: 0.9rem;
        /* Smaller for tablets */
    }

    .checkout-form .form-group input,
    .checkout-form .form-group textarea {
        padding: 0.6rem;
    }

    .checkout-form button[type="submit"] {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .checkout-form .checkout-content {
        padding: 1rem;
    }

    .checkout-form h2 {
        font-size: 1.5rem;
    }

    .checkout-form .form-group label,
    .checkout-form .form-group input,
    .checkout-form .form-group textarea,
    .checkout-form button[type="submit"] {
        font-size: 0.85rem;
    }

    .checkout-form .form-group input,
    .checkout-form .form-group textarea {
        padding: 0.5rem;
    }

    .checkout-form button[type="submit"] {
        padding: 0.5rem;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1003;
    display: none;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-consent a {
    color: var(--secondary-color);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-consent button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    flex: 1 1 auto;
    max-width: 120px;
}

.cookie-consent button:hover {
    background: var(--accent-color);
}

#rejectCookies {
    background: #ff4d4d;
}

#rejectCookies:hover {
    background: #cc0000;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1004;
    display: none;
}

.cookie-modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    color: var(--text-dark);
    margin: 1rem;
}

.cookie-modal h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cookie-modal label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cookie-modal input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-left: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1 1 auto;
    max-width: 120px;
}

#savePreferences {
    background: var(--primary-color);
    color: white;
}

#savePreferences:hover {
    background: var(--secondary-color);
}

#closeModal {
    background: #e2e8f0;
    color: var(--text-dark);
}

#closeModal:hover {
    background: #cbd5e0;
}

/* Revoke Consent Link */
.revoke-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#revokeConsentLink {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

#revokeConsentLink:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 0.75rem;
    }

    .cookie-consent p {
        font-size: 0.85rem;
    }

    .cookie-consent button {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .cookie-modal-content {
        padding: 1rem;
    }

    .cookie-modal h2 {
        font-size: 1.25rem;
    }

    .cookie-description {
        font-size: 0.8rem;
    }

    .revoke-consent {
        bottom: 10px;
        left: 10px;
    }

    #revokeConsentLink {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        gap: 0.75rem;
    }

    .cookie-consent p {
        font-size: 0.8rem;
    }

    .cookie-consent button {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .cookie-modal-content {
        padding: 0.75rem;
    }

    .cookie-modal h2 {
        font-size: 1.1rem;
    }

    .cookie-description {
        font-size: 0.75rem;
    }

    .revoke-consent {
        bottom: 5px;
        left: 5px;
    }

    #revokeConsentLink {
        font-size: 0.75rem;
        /* Even smaller font size for very small screens */
    }
}

/* Poppins font
* {
    font-family: 'Poppins', sans-serif;
}*/

h1,
h2,
h3 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

button {
    font-weight: 600;
}

.cart-icon {
    font-weight: 500;
}

/* About Us Section */
#about-us {
    padding: 4rem 1rem;
    background: #f9f9f9;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero Section with Image */
.about-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.about-hero-text {
    flex: 1;
}

.about-hero-image {
    flex: 1;
    text-align: center;
    height: 45vw;
}

.about-hero-image img {
    max-width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Layout */
.about-section {
    margin-bottom: 2rem;
}

/* Typography */
.about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-subtitle-small {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-list li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #about-us {
        padding: 2rem 1rem;
    }

    .about-hero {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-hero-image img {
        height: auto;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-subtitle-small {
        font-size: 1.3rem;
    }

    .about-description,
    .about-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-subtitle-small {
        font-size: 1.1rem;
    }

    .about-description,
    .about-list li {
        font-size: 0.85rem;
    }

    .about-hero-image img {
        width: 100%;
    }
}

/* Return Policy Section */
#return-policy {
    padding: 4rem 1rem 2rem;
    background: #f9f9f9;
}

.return-policy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.return-policy-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.return-policy-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.return-policy-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.return-policy-description a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #return-policy {
        padding: 2rem 1rem;
    }

    .return-policy-title {
        font-size: 2rem;
    }

    .return-policy-subtitle {
        font-size: 1.3rem;
    }

    .return-policy-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #return-policy {
        padding: 1.5rem 1rem;
    }

    .return-policy-title {
        font-size: 1.8rem;
    }

    .return-policy-subtitle {
        font-size: 1.1rem;
    }

    .return-policy-description {
        font-size: 0.85rem;
    }
}

/* Custom Page Section */
#custom-page {
    padding: 4rem 1rem;
    background: #f9f9f9;
}

.custom-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero Section */
.custom-page-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.custom-page-hero-text {
    flex: 1;
}

.custom-page-hero-image {
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
}

.custom-page-hero-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Typography */
.custom-page-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-page-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.custom-page-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-page-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.custom-page-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.custom-page-list li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.custom-page-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* CTA Button */
.custom-page-cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-page-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #custom-page {
        padding: 2rem 1rem;
    }

    .custom-page-hero {
        flex-direction: column;
        gap: 1.5rem;
    }

    .custom-page-hero-image img {
        height: auto;
    }

    .custom-page-title {
        font-size: 2rem;
    }

    .custom-page-subtitle {
        font-size: 1.3rem;
    }

    .custom-page-description,
    .custom-page-list li {
        font-size: 0.9rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    #custom-page {
        padding: 1.5rem 1rem;
    }

    .custom-page-title {
        font-size: 1.8rem;
    }

    .custom-page-subtitle {
        font-size: 1.1rem;
    }

    .custom-page-description,
    .custom-page-list li {
        font-size: 0.85rem;
    }

    .custom-page-hero-image img {
        width: 100%;
    }

    .gallery-item img {
        height: 150px;
    }
}