/* Page Toggle Logic */
.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

/* New Hero Section Styles */
.hero-section {
    position: relative;
    height: 55vh;
    /* Reduced from 75vh for better product visibility */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-image: var(--hero-bg-image, url('/images/wreath.png'));
    animation: kenburns 20s ease-in-out infinite;
    margin-bottom: 40px;
}

@keyframes kenburns {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    /* Slightly darker for better text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    /* Tighter width */
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3em;
    /* Slightly smaller */
    font-weight: 800;
    margin-bottom: 5px;
    color: white !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.5;
}

.hero-slogan-text {
    max-width: 600px;
    margin: 0 auto 10px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.hero-special-note {
    font-style: italic;
    font-size: 0.9em !important;
    background: rgba(255, 255, 255, 0.1);
    /* Lighter background */
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px !important;
}

.scroll-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.scroll-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
    box-shadow: var(--shadow-lg);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 600px;
    gap: 20px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider-title {
    font-family: var(--heading-font);
    font-size: 0.9em;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Prices & Discounts */
.price-container {
    margin: auto 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.old-price {
    font-size: 0.9em;
    color: #94a3b8 !important;
    text-decoration: line-through;
}

.product-price {
    font-family: var(--heading-font) !important;
    font-size: 1.6em;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff8b94 0%, #ff5e62 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8em;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 94, 98, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Content (Hero/Intro) */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 10px 10px 30px rgba(168, 230, 207, 0.3);
}

.page-content h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: var(--heading-color);
    font-weight: 700;
}

.page-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: var(--radius-sm);
}

/* Pre-footer Contact */
.pre-footer-contact {
    background-color: var(--secondary-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

.pre-footer-contact h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #555;
}

/* Product Grid */
#products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 2;
}

.product-image-wrapper {
    width: calc(100% - 30px);
    height: 280px;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
    cursor: pointer;
    padding: 10px;
    border-radius: 15px;
}

.product-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.product-card h3 {
    font-family: var(--product-name-font) !important;
    font-size: 1.35em;
    margin: 20px 0 12px;
    font-weight: 600;
    color: #1a202c;
    padding: 0 20px;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: var(--primary-color);
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    gap: 10px;
}

.product-footer .price-container {
    margin: 0;
    align-items: flex-start;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-footer .product-price {
    font-size: 1.3em;
    margin: 0;
    line-height: 1;
}

.product-footer .old-price {
    font-size: 0.8em;
    margin-bottom: 2px;
}

.whatsapp-btn-small {
    background-color: #25d366;
    color: white !important;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    white-space: nowrap;
}

.whatsapp-btn-small:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-small i {
    font-size: 1.1em;
}

.product-card .product-id {
    font-size: 0.7em;
    color: #bbb;
    margin: 10px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Infinite Slider */
.slider-container {
    background: white;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    margin-top: 50px;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.slide {
    width: 200px;
    padding: 0 10px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        height: 800px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .item-1 {
        grid-area: 1 / 1 / 2 / 3;
    }

    .item-2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .item-3 {
        grid-area: 2 / 2 / 3 / 3;
    }

    .item-4 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .item-5 {
        grid-area: 3 / 2 / 4 / 3;
    }

    .item-6 {
        grid-area: 4 / 1 / 5 / 3;
    }

    #products {
        grid-template-columns: 1fr;
    }
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    color: #ff8b94;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Content Sections (Generic) */
.content-section {
    padding: 80px 20px;
    background-color: #fff;
}

/* Premium About Section */
.about-premium-section {
    padding: 120px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-slider-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    height: 600px;
    background: #f0f0f0;
}

.about-main-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s linear;
    transform: scale(1);
    z-index: 1;
}

.about-slide.active {
    opacity: 1;
    transform: scale(1.1);
    /* Ken Burns effect starts */
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: var(--primary-color);
}

.image-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.image-experience-badge .years {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1;
}

.image-experience-badge .label {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text-side {
    padding-right: 40px;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.premium-title {
    font-size: 3.5em;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a202c;
    font-family: var(--heading-font);
}

.divider-gold {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 35px;
    border-radius: 2px;
}

.about-description {
    font-size: 1.15em;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    white-space: pre-line;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d3748;
    font-weight: 600;
}

.feature-item i {
    color: #48bb78;
    font-size: 1.25em;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text-side {
        padding-right: 0;
        text-align: center;
    }

    .divider-gold {
        margin-left: auto;
        margin-right: auto;
    }

    .about-features {
        align-items: center;
    }

    .image-experience-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .premium-title {
        font-size: 2.8em;
    }
}

/* Luxurious Corporate Contact Section (Split Layout) */
.contact-corporate-section {
    background: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.split-layout {
    display: flex;
    min-height: 700px;
}

.contact-info-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    background: #fafafa;
}

.info-content-wrapper {
    max-width: 500px;
}

.corporate-title {
    font-family: var(--heading-font);
    font-size: 3.5em;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.corporate-subtitle {
    font-size: 1.1em;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 50px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.detail-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.detail-item .label {
    display: block;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-item p,
.detail-item a {
    font-size: 1.25em;
    color: #2d3748;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--primary-color);
}

.luxury-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #1a202c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    font-size: 0.9em;
}

.luxury-btn:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-map-side {
    flex: 1.2;
    min-height: 500px;
    background: #edf2f7;
}

.map-placeholder-high {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
}

@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
    }

    .contact-info-side {
        padding: 60px 40px;
    }

    .corporate-title {
        font-size: 2.8em;
    }

    .contact-map-side {
        height: 450px;
    }
}

/* Premium Contact Section */
.contact-premium-section {
    padding: 120px 20px;
    background: #fdfdfd;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag.center {
    text-align: center;
}

.premium-title.center {
    text-align: center;
}

.divider-gold.center {
    margin: 0 auto 50px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f0f0f0;
}

.contact-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 139, 148, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 139, 148, 0.3);
}

.contact-card-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1a202c;
    font-family: var(--heading-font);
}

.contact-card-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.card-link:hover {
    color: var(--accent-color);
}

/* Map Styling */
.contact-map-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--heading-font);
}

.map-container-inner {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 450px;
    border: 1px solid #eee;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    color: #a0aec0;
}

.map-placeholder i {
    font-size: 4em;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-premium-section {
        padding: 80px 20px;
    }

    .contact-card-item {
        padding: 30px;
    }
}

/* === New Contact Page Design === */

.contact-corporate-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.contact-corporate-section .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-corporate-section .contact-info-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-corporate-section .section-tag {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.contact-corporate-section .corporate-title {
    font-family: var(--heading-font);
    font-size: 2.8em;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.contact-corporate-section .corporate-subtitle {
    font-size: 1.1em;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-corporate-section .contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-corporate-section .detail-item .label {
    display: block;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-corporate-section .detail-item p,
.contact-corporate-section .detail-item a {
    font-size: 1.1em;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-corporate-section .detail-item a:hover {
    color: var(--primary-color);
}

.contact-corporate-section .luxury-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 139, 148, 0.25);
}

.contact-corporate-section .luxury-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 139, 148, 0.35);
}

.contact-corporate-section .contact-map-side {
    min-height: 500px;
}

/* Responsive adjustments for the new contact section */
@media (max-width: 1024px) {
    .contact-corporate-section .split-layout {
        grid-template-columns: 1fr;
    }

    .contact-corporate-section .contact-map-side {
        order: -1;
        /* Puts map on top on mobile */
        min-height: 350px;
    }

    .contact-corporate-section .contact-info-side {
        padding: 40px;
    }
}

/* Featured Products on About Page */
.featured-products-section {
    padding: 60px 20px;
    background-color: var(--bg-color);
}

.featured-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- New Corporate Sections Styling --- */
.corporate-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
    /* Use a consistent background */
    margin-bottom: 40px;
    /* Space between sections */
    border-bottom: 1px solid var(--border-color, #eee);
    /* Subtle separator */
}

.corporate-section:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.corporate-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Corporate Section Improvements */
.corporate-section .section-title {
    font-family: var(--heading-font);
    font-size: 3em;
    color: var(--heading-color);
    text-align: left;
    /* Align Left */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.corporate-section .section-title::after {
    display: none;
    /* Remove center underline */
}

/* About Us Section Styling (New) */
.about-main-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* About Text Area - Stronger Look */
.about-text-area {
    flex: 1;
    min-width: 300px;
    line-height: 1.8;
    color: #2d3748;
    font-size: 1.1em;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding-left: 25px;
    border-left: 5px solid var(--primary-color);
    /* Strong vertical accent */
}

.about-text-area p {
    margin-bottom: 20px;
}

/* Visuals Area */
.about-visuals {
    flex: 1.3;
    min-width: 400px;
    position: relative;
}

/* About Gallery Grid (Replaces Slider) */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    /* Responsive grid */
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.about-gallery-item {
    position: relative;
    border-radius: 8px;
    /* Matching admin panel clean look */
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Square tiles like admin preview */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.about-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for new about section */
@media (max-width: 992px) {
    .about-main-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        /* Center items when stacked */
    }

    .about-text-area {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .about-visuals {
        min-width: unset;
        width: 100%;
    }

    .about-slider-inner img {
        height: 300px;
        /* Adjust height for smaller screens */
    }
}

/* Contact Us Section Styling */
.contact-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.contact-details {
    flex: 1;
    min-width: 300px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-details p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.contact-details h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.contact-details .detail-item {
    margin-bottom: 20px;
}

.contact-details .detail-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details .detail-item a:hover {
    color: var(--primary-color);
}

.contact-map {
    flex: 1.5;
    /* Map takes more space */
    min-width: 400px;
    /* Minimum width for map */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    /* Ensure map has a decent height */
    border: 0;
}


/* Responsive adjustments for new corporate sections */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-slider {
        max-width: 100%;
        /* Slider can take full width on smaller screens */
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .contact-map {
        min-width: unset;
        width: 100%;
        height: 300px;
        /* Adjust map height on smaller screens */
    }

    .contact-map iframe {
        min-height: 300px;
    }
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    margin-top: 20px;
    /* Space from other details */
}

.whatsapp-contact-btn:hover {
    background-color: #128C7E;
    /* Darker WhatsApp green */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-contact-btn i {
    font-size: 1.3em;
}

/* --- Corporate Showcase (Pure Image Gallery) --- */
.corporate-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.corporate-showcase .corporate-subtitle {
    font-family: var(--heading-font);
    font-size: 2.5em;
    color: #1a202c;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.corporate-showcase .corporate-subtitle::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.corporate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.corporate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.corporate-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.corporate-img-wrapper img {
    transition: transform 0.6s ease;
    display: block;
}

.corporate-card:hover .corporate-img-wrapper img {
    transform: scale(1.08);
    /* Subtle zoom */
}

.corporate-card:hover .corporate-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    /* Extremely subtle tint */
    pointer-events: none;
}

@media (max-width: 768px) {
    .corporate-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .corporate-showcase .corporate-subtitle {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .corporate-img-wrapper {
        height: 220px !important;
        /* Force smaller height on mobile */
    }
}