:root {
    --primary-color: #0a2342;
    --secondary-color: #ffffff;
    --accent-color: #d4af37;
    /* Gold accent */
    --text-color: #333;
    --light-gray: #f4f4f4;
    --dark-gray: #555;
    --error-red: #d93025;
    --success-green: #1e8e3e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

body.loaded .preloader {
    opacity: 0;
    visibility: hidden;
}

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

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--light-gray);
}

/* Accessibility Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(10, 35, 66, 0.3);
}


/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    border: 8px solid var(--light-gray);
    border-top: 8px solid var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Header */
.header {
    background-color: rgba(10, 35, 66, 0.9);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(10, 35, 66, 1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1583608205776-bfd35f0d9f83?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
}

/* Staggered animation for Hero content */
.hero-content>h1,
.hero-content>p,
.hero-content>.btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-content.is-visible>h1,
.hero-content.is-visible>p,
.hero-content.is-visible>.btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.is-visible>p {
    transition-delay: 0.2s;
}

.hero-content.is-visible>.btn {
    transition-delay: 0.8s;
}


.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    /* Reset button styles */
    width: 100%;
    font-family: inherit;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:active {
    transform: translateY(-5px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:focus-visible {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.4);
}


.service-card-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

#testimonials h2 {
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
    color: var(--accent-color);
}


/* Gallery Section */
.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.7rem 1.5rem;
    margin: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.tab-button:active {
    transform: scale(0.97);
}


.gallery-filter {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.gallery-search-input {
    width: 100%;
    max-width: 500px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 25px;
}

.no-results {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    padding: 2rem;
}

/* New Carousel Styles */
.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.gallery-carousel-container {
    overflow: hidden;
    width: 100%;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item {
    flex: 0 0 calc(100% / var(--items-per-page));
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.carousel-btn:hover:not(:disabled) {
    background-color: white;
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    background-color: rgba(204, 204, 204, 0.7);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}


/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: var(--secondary-color);
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.is-open {
    max-height: 200px;
    /* Adjust if answers are longer */
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--dark-gray);
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: auto;
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input.input-error {
    border-color: var(--error-red);
}

.error-message {
    color: var(--error-red);
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-success-message {
    text-align: center;
    color: var(--success-green);
    background-color: #e6f4ea;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.admin-login-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.admin-login-btn:hover {
    background-color: #c8a02b;
}

.admin-login-btn:active {
    transform: scale(0.97);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1001;
}

.whatsapp-fab {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.whatsapp-fab:active {
    transform: scale(1);
}

.whatsapp-chatbox {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    animation: slideUpFadeIn 0.4s forwards;
}

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

.whatsapp-chatbox-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-chatbox-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.whatsapp-chatbox-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-chatbox-body {
    padding: 1.5rem;
}

.whatsapp-chatbox-body p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.whatsapp-chatbox .form-group {
    margin-bottom: 1rem;
}

.whatsapp-chatbox .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

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

.whatsapp-chatbox-send {
    width: 100%;
    background-color: #25d366;
    color: white;
}

.whatsapp-chatbox-send:hover {
    background-color: #128c7e;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 400px;
    max-height: calc(100vh - 100px);
    background-color: #fff;
    z-index: 1005;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.admin-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.admin-header h3 {
    margin: 0;
}

.admin-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    background-color: var(--light-gray);
    border-bottom: 1px solid #ddd;
}

.admin-nav button {
    flex-grow: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    margin: 0.2rem;
    border-radius: 5px;
    transition: transform 0.1s ease;
}

.admin-nav button.active {
    background-color: var(--primary-color);
    color: #fff;
}

.admin-nav button:active {
    transform: scale(0.97);
}

.admin-content {
    padding: 1rem;
    overflow-y: auto;
}

.admin-form-group-item {
    position: relative;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 1rem;
    background: #fafafa;
}

.admin-form-group-item p {
    font-size: 0.9em;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.admin-form-group-item label,
.admin-form-group label {
    display: block;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.admin-form-group-item input,
.admin-form-group-item textarea,
.admin-form-group input,
.admin-form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.admin-delete-btn {
    background: #fff;
    color: var(--error-red);
    border: 1px solid var(--error-red);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.admin-delete-btn:hover {
    background: var(--error-red);
    color: #fff;
}

.admin-add-btn {
    display: block;
    width: 100%;
    background: var(--success-green);
    color: #fff;
    border: none;
    padding: 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.admin-add-btn:hover {
    background: #1a7332;
}

.admin-add-btn:disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
}

.admin-add-btn:disabled:hover {
    background-color: #9e9e9e;
}

.admin-gallery-section {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    background: #f9f9f9;
}

.admin-upload-group {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.admin-upload-group label {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 0.5rem;
    display: block;
}

.admin-upload-group input[type="file"] {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 0.9em;
}

.admin-upload-group input[type="file"]::file-selector-button {
    font-weight: bold;
    color: var(--primary-color);
    padding: 0.5em;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}

.admin-upload-group input[type="file"]::file-selector-button:hover {
    background-color: var(--light-gray);
}

.file-info {
    font-size: 0.85rem;
    color: var(--dark-gray);
    background-color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 0.5rem 0 1rem 0;
    border-left: 3px solid var(--primary-color);
}

.file-info p {
    margin: 0;
    line-height: 1.4;
    word-break: break-all;
}

.file-info strong {
    color: var(--text-color);
}

.admin-add-btn.with-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s ease-in-out infinite;
}

.admin-submission-card {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.admin-submission-card p {
    margin-bottom: 0.5rem;
}

.admin-clear-btn {
    background: var(--error-red);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.admin-reset-btn {
    background-color: var(--error-red);
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.admin-reset-btn:hover {
    background-color: #a51f16;
}

/* Login Modal */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1010;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-modal {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.login-modal h3 {
    color: var(--primary-color);
}

.login-modal input {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-modal-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.login-modal-actions button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.login-modal-actions button[type="button"] {
    background: #eee;
    color: var(--dark-gray);
}

.login-modal-actions button[type="submit"] {
    background: var(--primary-color);
    color: #fff;
}

/* Tag Input Component */
.tag-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    width: 100%;
    cursor: text;
}

.tag-item {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    padding: 4px 8px;
    margin: 3px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.tag-remove-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    margin-left: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    line-height: 1;
}

.tag-remove-btn:hover {
    color: var(--accent-color);
}

.tag-input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 6px;
    font-size: 0.9rem;
    min-width: 150px;
    background-color: transparent;
}

/* Responsive */
@media(max-width: 992px) {
    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}


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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .admin-panel {
        top: 60px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100vh - 80px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .whatsapp-chatbox {
        width: 100%;
        position: relative;
        bottom: 0;
        margin-bottom: 1rem;
    }

    .whatsapp-fab {
        position: relative;
        bottom: 0;
        right: 0;
    }
}
