/* Karunaclinic - Design System */

:root {
    /* Colors */
    --primary-color: #133c6f;
    /* Teal/Dark Green */
    --secondary-color: #EE8961;
    /* Soft Orange/Coral */
    --accent-color: #EF916C;
    /* Slightly different orange for hover/icons */
    --bg-light: #FBF7F3;
    /* Light Cream */
    --bg-white: #FFFFFF;
    --text-dark: #212529;
    /* Body text */
    --text-muted: #6c757d;
    --text-light: #ffffff;

    /* Typography */
    --font-heading: 'Marcellus', serif;
    --font-body: 'Mulish', sans-serif;

    /* Transitions */
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal overflow on all sections */
section {
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.d-flex {
    max-width: 100%;
}

.row,
.form-row {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Specific image container constraints */
.about-image img,
.about-intro-image img,
.appointment-img img,
.appointment-image img,
.service-detail-image img,
.how-it-works-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Team and doctor images */
.team-img img,
.doctor-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Blog images */
.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Case study images */
.case-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Layout Utilities */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.flex-column {
    flex-direction: column;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.accent-text {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.text-muted {
    color: var(--text-muted);
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0f5449;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #d67850;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.top-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.top-info span {
    margin-right: 0;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    margin-left: 0;
    opacity: 0.8;
}

.top-social a:hover {
    opacity: 1;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons a {
    color: var(--primary-color);
    font-size: 20px;
}

.cart-icon {
    position: relative;
}

.cart-icon span {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--secondary-color);
    color: var(--text-light);
    font-size: 10px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .header-icons {
        display: none;
    }
}

/* Header */
header {
    background-color: var(--bg-white);
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

header.sticky {
    padding: 10px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo h1 span {
    color: var(--secondary-color);
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Menu Styles - Mega Menu */
.nav-links li {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-white);
    width: auto;
    min-width: 800px;
    max-width: 900px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.nav-links li:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li {
    margin: 0 !important;
    width: 100%;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    border-radius: 5px;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-links a i.fa-chevron-down {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition-fast);
}

.nav-links li:hover>a i.fa-chevron-down {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(19, 60, 111, 1), rgba(21, 40, 108, 0.7)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 700px;
}

.hero-content h5 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 56px;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 15px;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title h5 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
    color: var(--text-light);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover i {
    color: var(--secondary-color);
}

/* Service Icon Image Styles */
.service-card .service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: var(--transition-fast);
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    opacity: 0.9;
}

.service-card h3 {
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.service-card:hover h3 {
    color: var(--text-light);
}

.service-card p {
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
}

.service-card:hover .read-more {
    color: var(--secondary-color);
}

/* About Section */
.about-section .container {
    display: flex;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    padding: 20px;
}

.experience-tag {
    position: absolute;
    bottom: 0;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.experience-tag h3 {
    font-size: 32px;
    color: var(--text-light);
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.about-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Appointment Section */
.appointment-section {
    background-color: var(--bg-light);
}

.appointment-section h5,
.appointment-section h2 {
    color: var(--primary-color);
}

.appointment-form-container {
    flex: 1.2;
}

.appointment-info {
    flex: 1;
    display: flex;
    justify-content: center;
}

.appointment-img {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.appointment-image {
    flex: 0.8;
}

.appointment-image img {
    border-radius: 15px;
    width: 100%;
}

.appointment-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #fcfcfc;
    font-family: var(--font-body);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.form-row button {
    flex: 1;
    border: none;
    cursor: pointer;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Team List Simple (for About page) */
.team-list-simple {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.team-member-simple {
    margin-bottom: 30px;
}

.team-member-simple h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.team-member-simple p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* Emergency Banner */
.emergency-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.emergency-banner h2 {
    color: var(--text-light);
    font-size: 32px;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    justify-content: space-between;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.patient-info {
    margin-top: 20px;
}

.patient-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.patient-info h3 {
    font-size: 18px;
    margin-bottom: 0;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-img {
    position: relative;
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-news {
    padding: 100px 0;
}

/* Footer */
.footer {
    background-color: #133c6f;
    color: var(--text-light);
    padding: 80px 0 0;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    word-wrap: break-word;
}

.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 22px;
}

.footer-col p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-links li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-bottom {
    background-color: #0a1733;
    padding: 25px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Internal Hero Section */
.internal-hero {
    background: linear-gradient(rgba(19, 60, 111, 1), rgba(21, 40, 108, 0.7)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: var(--text-light);
}

.internal-hero h2 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-subtitle {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 25px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* About Intro Section */
.about-intro {
    padding: 100px 0;
}

.about-intro-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.about-intro-image img {
    border-radius: 10px;
    width: 100%;
}

.orange-quote-box {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(238, 137, 97, 0.3);
}

.about-intro-content {
    flex: 1;
    min-width: 300px;
}

.about-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 25px;
}

.specialty-list {
    margin: 35px 0;
}

.specialty-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-color);
}

.benefits-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-color);
}

.icon-circle {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--text-light);
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .nav-links,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Dropdown responsive - vertical layout on tablets/mobile */
    .dropdown-content {
        min-width: 250px;
        max-width: 300px;
        grid-template-columns: 1fr;
        left: 0;
        transform: translateY(10px);
        padding: 10px 0;
    }

    .nav-links li:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content a {
        white-space: normal;
        padding: 10px 20px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .appointment-section .container {
        flex-direction: column;
    }

    .appointment-info,
    .appointment-image {
        display: none;
    }

    .form-row {
        flex-direction: column;
    }

    .orange-quote-box {
        position: static;
        width: 100%;
        margin-top: 20px;
        border-radius: 10px;
    }

    .about-intro .container {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .about-image,
    .about-content {
        flex: 100%;
    }

    .testimonial-slider {
        flex-direction: column;
    }
}

/* How It Works (Process Steps) */
.process-steps {
    margin-top: 30px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.step-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.5;
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 32px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   Gallery Grid & Lightbox
   =========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 60, 111, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: white;
    font-size: 32px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn,
.prev-btn,
.next-btn {
    position: absolute;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.close-btn {
    top: 20px;
    right: 40px;
}

.close-btn:hover {
    color: var(--secondary-color);
}

.prev-btn {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn:hover,
.next-btn:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .prev-btn,
    .next-btn {
        font-size: 30px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
