@font-face {
    font-family: 'Clagio';
    src: url('./assets/fonts/Clagio-Regular.otf') format('opentype'),
        url('./assets/fonts/Clagio-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clagio';
    src: url('./assets/fonts/Clagio-Bold.otf') format('opentype'),
        url('./assets/fonts/Clagio-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('./assets/fonts/Onest-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Identity Palette */
    --color-bg: #FAF7F2;
    /* Light Cream Background */
    --color-text: #000000;
    /* Brand Black */
    --color-primary: #003A20;
    /* Brand Green */
    --color-secondary: #D5A772;
    /* Brand Beige */
    --color-accent: #D9831F;
    /* Brand Orange */
    --color-white: #FFFFFF;

    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --font-heading: 'Clagio', 'Playfair Display', serif;
    --font-body: 'Onest', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 2rem;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: var(--color-primary);
    }
}

/* Scroll Offset */
section {
    scroll-margin-top: 100px;
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    display: none;
    /* Only show on desktop via JS */
}

@media (min-width: 1024px) {
    .cursor-follower {
        display: block;
    }
}

/* Hero Section - Modern Premium Style */
.hero-section {
    min-height: 90vh;
    /* Biraz daha geniş alan */
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: url('./assets/bg-beige-abstract.png') center center/cover no-repeat;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    opacity: 0.6;
    filter: blur(0px);
    /* Removed blur to show texture */
    mix-blend-mode: multiply;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
}

/* Görseldeki "Hap" Şeklindeki Subtitle */
.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    /* Koyu Zeytin Yeşili */
    margin-bottom: 2rem;
    font-weight: 700;
    background: rgba(0, 58, 32, 0.05);
    /* Çok açık yeşilimsi bej */
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    /* Tam yuvarlak köşeler */
}

/* Görseldeki Büyük Serif Başlık */
.hero-title {
    font-size: 5.5rem;
    /* Oldukça büyük */
    margin-bottom: 2rem;
    color: var(--color-primary);
    /* Koyu Kahve/Siyahımsı */
    line-height: 1.1;
    letter-spacing: -2px;
    /* Harfleri birbirine yaklaştır */
}

.text-gradient {
    color: var(--color-accent);
    /* Altın/Bisküvi Rengi */
    font-style: italic;
    background: none;
    /* Gradienti kaldırdık, görselde düz renk gibi duruyor */
    font-weight: 400;
    /* Biraz daha ince */
}

.hero-desc {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 3.5rem;
    color: #666;
    /* Daha gri ve modern */
    font-weight: 300;
    /* İnce font */
    line-height: 1.6;
}

/* Görseldeki Premium Buton */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 3.5rem;
    background-color: var(--color-primary);
    /* Koyu Kahve */
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 58, 32, 0.25);
    /* Yumuşak kahve gölge */
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 58, 32, 0.35);
    background-color: #002816;
    /* Hoverda biraz daha koyusu */
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    /* Yanda durması daha modern */
    transform: none;
    /* Ortalamayı iptal et */
    display: flex;
    flex-direction: row;
    /* Yan yana */
    align-items: center;
    gap: 1.5rem;
    opacity: 0.4;
}

.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background-color: #000;
}

/* Common Section Styles */
.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    padding: 10rem 0;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature h3 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
}

.placeholder-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* Gallery / Products */
.gallery-section {
    padding: 6rem 0;
    background-color: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
    opacity: 0.7;
}

.showcase-container {
    display: flex;
    justify-content: center;
}

.showcase-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    /* box-shadow: 0 30px 60px rgba(0,0,0,0.05); */
    text-align: center;
    padding-bottom: 2rem;
    max-width: 900px;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 2rem;
}

/* Franchise Section */
.franchise-section {
    padding: 10rem 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/pattern/pattern1.png');
    background-size: 400px;
    background-repeat: repeat;
    opacity: 0.08;
    /* Subtle texture */
    z-index: 0;
    pointer-events: none;
}

/* ... existing code ... */

/* Franchise Section */
.franchise-section .container {
    position: relative;
    z-index: 1;
}

.franchise-header {
    margin-bottom: 5rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Improved Model Card Design */
.model-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    /* Clips the image at the top corners */
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(0, 58, 32, 0.08);
    /* Subtle green border */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 58, 32, 0.15);
    border-color: var(--color-primary);
}

.model-image-preview {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-img {
    transform: scale(1.05);
}

.model-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.model-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.model-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.model-details {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    flex-grow: 1;
}

.model-details p {
    margin-bottom: 0.5rem;
}

.model-details strong {
    color: var(--color-primary);
}

.price {
    align-self: flex-start;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s;
}

.model-card:hover .price {
    background: var(--color-accent);
}

.investment-info {
    text-align: center;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.investment-info strong {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.cta-button.primary {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Footer */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/pattern/pattern2.png');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-brand h2 {
    color: #fff;
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.product-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    height: 90%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    height: 3rem;
    /* Fixed height for alignment */
}

.cal-info {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-primary);
    background: rgba(0, 58, 32, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Modal Styling */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Accessibility: Focus States */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.app-form .form-group {
    margin-bottom: 2rem;
    /* Increased whitespace */
    position: relative;
}

.app-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.app-form input,
.app-form select,
.app-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #fafafa;
}

.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 58, 32, 0.1);
}

/* Validation Styles */
.app-form input.error,
.app-form select.error {
    border-color: #d32f2f;
    background-color: #fff8f8;
}

.error-msg {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2em;
    opacity: 0;
    transition: opacity 0.3s;
}

.app-form input.error+.error-msg,
.app-form select.error+.error-msg {
    opacity: 1;
}

/* Timeline Styles */
.timeline-wrapper {
    margin: 6rem 0;
    position: relative;
    padding: 0 1rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    color: var(--color-primary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #e0e0e0;
}

.timeline-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 58, 32, 0.2);
    z-index: 2;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--color-text);
}

.step-content p {
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Product Modal Styles */
.product-modal-content {
    max-width: 800px;
    width: 95%;
    padding: 3rem;
    background: #fff;
    border-radius: var(--radius-lg);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.modal-image-col {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-details-col .section-title.small {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.cal-info.large {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    padding: 0.4rem 1rem;
    font-weight: 600;
}

.nutrition-facts {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nutrition-facts h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.nutrition-facts ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.nutrition-facts ul li {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.nutrition-facts ul li::before {
    content: '•';
    color: var(--color-accent);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 19px;
    }

    .timeline-header {
        font-size: 1.5rem;
    }
}

/* Transparent Kitchen */
.ingredients-section {
    padding: 8rem 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/pattern/pattern4.png');
    background-size: 500px;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.ingredients-section .container {
    position: relative;
    z-index: 1;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.ing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ingredient-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.ingredient-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background-color: #fff;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-header .icon {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Approximate max height */
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

/* Social Wall */
.social-section {
    padding: 4rem 0 0 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.social-handle {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.social-item {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Social Icons */
.social-media-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid rgba(0, 58, 32, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 58, 32, 0.2);
}

.social-icon svg {
    width: 20px;
    width: 20px;
    height: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

/* Image Lightbox */
.modal.lightbox {
    background-color: rgba(0, 0, 0, 0.9);
}

.modal.lightbox .close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    background: none;
    width: auto;
    height: auto;
    line-height: 1;
}

.modal.lightbox .close-modal:hover,
.modal.lightbox .close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
    background: none;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
    border-radius: var(--radius-sm);
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 1rem;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}