/* 
* Eways Event Decorations - Main Stylesheet
* Author: Team Eways
* Version: 1.0
*/

/* ========================
   VARIABLES & ROOT
======================== */
:root {
    --primary-color: #1b0327;     /* Dark Purple */
    --secondary-color: #ff9966;   /* Peach */
    --light-color: #ffffff;       /* White */
    --dark-color: #222529;        /* Dark Gray */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

/* ========================
   GENERAL STYLES
======================== */
body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--light-color) !important;
}

.btn-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}

.section-padding {
    padding: 100px 0 0 0;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================
   HEADER & NAVIGATION
======================== */
.site-header {
    position: relative;
}

.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.navbar-dark {
    background-color: rgba(27, 3, 39, 0.9);
}

.navbar-dark.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img.logo {
    height: 60px;
    transition: var(--transition);
}

.navbar-dark.scrolled .navbar-brand img.logo {
    height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    padding: 10px 15px;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-dark .navbar-nav .quote-btn .nav-link {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 10px 25px;
    margin-left: 15px;
}

.navbar-dark .navbar-nav .quote-btn .nav-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-menu {
    background-color: var(--primary-color);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.dropdown-item {
    color: var(--light-color);
    padding: 10px 25px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55, 12, 77, 0.27);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light-color);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
}

.hero-btn {
    margin: 0 10px 15px;
}

/* ========================
   ABOUT SECTION
======================== */
.about-section {
    background-color: var(--light-color);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    transition: var(--transition);
}

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

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    margin-right: 20px;
    font-size: 24px;
    color: var(--secondary-color);
}

.feature-text h5 {
    margin-bottom: 10px;
}

/* ========================
   SERVICES SECTION
======================== */
.services-section {
    background-color: #f9f9f9;
}

.service-box {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    color: #777;
}

/* ========================
   TESTIMONIALS SECTION
======================== */
.testimonials-section {
    background-color: var(--light-color);
}

.testimonial-box {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    position: relative;
}

.testimonial-box:before {
    content: '\201C';
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--secondary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-client {
    display: flex;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h5 {
    margin-bottom: 5px;
}

.client-info p {
    margin-bottom: 0;
    color: #777;
    font-style: normal;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

/* ========================
   GALLERY SECTION
======================== */
.gallery-section {
    background-color: #f9f9f9;
}

.gallery-filter {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-filter button {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 30px;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    height: 300px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 3, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay-content {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h5 {
    color: var(--light-color);
    margin-bottom: 10px;
}

.gallery-overlay-content p {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.gallery-btn {
    color: var(--light-color);
    border: 2px solid var(--light-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: var(--transition);
}

.gallery-btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 80%;
    max-width: 1000px;
}

.lightbox-img {
    width: 100%;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--light-color);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    color: var(--light-color);
    text-align: center;
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section {
    background-color: var(--light-color);
}

.contact-info-box {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-box h5 {
    margin-bottom: 15px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-submit {
    margin-top: 10px;
}

/* ========================
   QUOTE SECTION
======================== */
.quote-section {
    background-color: #f9f9f9;
}

.quote-form {
    background-color: var(--light-color);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-info {
    margin-bottom: 30px;
}

.quote-info h2 {
    margin-bottom: 20px;
}

.quote-info ul {
    list-style: none;
    padding-left: 0;
}

.quote-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.quote-info ul li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* ========================
   FAQ SECTION
======================== */
.faq-section {
    background-color: var(--light-color);
}

.accordion-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    background-color: #f9f9f9;
}

.accordion-button:not(.collapsed) {
    color: var(--light-color);
    background-color: var(--primary-color);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    background-color: var(--light-color);
}

/* ========================
   FOOTER
======================== */
.site-footer {
    background-color: var(--primary-color);
    padding-top: 80px;
    color: #b5b5b5;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
}

.footer-widget h4 {
    color: var(--light-color);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b5b5b5;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}

.copyright a.text-secondary {
    color: var(--secondary-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright a.text-secondary:hover {
    color: #fff !important;
    text-decoration: underline;
}

/* ========================
   BACK TO TOP BUTTON
======================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* ========================
   ADMIN STYLES
======================== */
/* Admin Avatar Styling for Public Site */
.admin-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
}

.nav-item.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}
.admin-section {
    padding: 80px 0;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.admin-logo {
    margin-bottom: 30px;
    text-align: center;
}

.admin-logo img {
    height: 60px;
}

.admin-nav {
    list-style: none;
    padding-left: 0;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: block;
    padding: 12px 20px;
    color: #b5b5b5;
    border-radius: 5px;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.admin-nav a i {
    margin-right: 10px;
}

.admin-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.admin-title h3 {
    margin-bottom: 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    font-size: 30px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 153, 102, 0.2);
    color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-info h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-info p {
    margin-bottom: 0;
    color: #777;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.admin-table tr:hover {
    background-color: #f9f9f9;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pending {
    background-color: #fff8e1;
    color: #ffa000;
}

.status-responded {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-completed {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-unread {
    background-color: #fbe9e7;
    color: #d32f2f;
}

.admin-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.admin-action-btn.delete {
    color: #d32f2f;
}

.admin-action-btn.delete:hover {
    color: #b71c1c;
}

.admin-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.image-preview {
    margin-top: 20px;
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.admin-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--light-color);
}

.admin-gallery-img {
    height: 200px;
    overflow: hidden;
}

.admin-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-gallery-content {
    padding: 20px;
}

.admin-gallery-content h5 {
    margin-bottom: 10px;
    font-size: 18px;
}

.admin-gallery-content p {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.admin-gallery-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.message-detail {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.message-info h4 {
    margin-bottom: 5px;
}

.message-meta {
    color: #777;
    font-size: 14px;
}

.message-meta span {
    margin-right: 15px;
}

.message-date {
    text-align: right;
    color: #777;
    font-size: 14px;
}

.message-body {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
}

.required:after {
    content: ' *';
    color: #d32f2f;
}

.input-error {
    border-color: #d32f2f;
}

.error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
}

/* ========================
   RESPONSIVE DESIGN
======================== */
@media (max-width: 1200px) {
    .navbar-dark .navbar-nav .quote-btn .nav-link {
        margin-left: 5px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }
    
    .navbar-dark .navbar-nav .quote-btn {
        margin-top: 10px;
    }
    
    .navbar-dark .navbar-nav .quote-btn .nav-link {
        display: inline-block;
        margin-left: 0;
    }
    
    .service-img {
        height: 220px;
    }
    
    .admin-sidebar {
        margin-bottom: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    .gallery-img {
        height: 250px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-header .btn {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-btn {
        display: block;
        margin: 0 auto 15px;
        max-width: 200px;
    }
    
    .service-box {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-box {
        padding: 30px 20px;
    }
    
    .gallery-filter button {
        padding: 8px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .contact-form,
    .quote-form {
        padding: 30px 20px;
    }
    
    .admin-content {
        padding: 20px;
    }
    
    /* Mobile touch targets */
    .navbar-toggler {
        padding: 8px 12px;
    }
    
    .gallery-btn {
        padding: 10px 20px;
    }
    
    /* Mobile footer */
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    /* Mobile form */
    .form-group {
        margin-bottom: 15px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .navbar-brand img.logo {
        height: 45px;
    }
    
    .navbar-toggler {
        padding: 5px 10px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .contact-info-box {
        padding: 20px 15px;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 16px;
    }
    
    .accordion-body {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Smaller gallery grid for mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 260px;
    }
    
    /* Touch-friendly filter buttons */
    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 15px;
        min-width: 70px;
    }
    
    /* Touch-friendly navigation */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }
}

/* Mobile-specific touch optimizations */
.is-mobile {
    /* Better tap targets */
    .btn, button, .nav-link, a {
        touch-action: manipulation;
    }
    
    /* Larger form controls for touch */
    input, select, textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        min-height: 44px;
    }
    
    textarea {
        min-height: 100px;
    }
    
    .form-check-input {
        min-width: 24px;
        min-height: 24px;
        margin-top: 0;
    }
    
    /* Improved focus states for forms */
    .input-focused {
        background-color: rgba(255, 153, 102, 0.05);
        box-shadow: 0 0 0 3px rgba(255, 153, 102, 0.2);
        border-radius: 5px;
    }
    
    /* Touch-friendly dropdowns */
    .dropdown-item {
        padding: 12px 20px;
        min-height: 44px;
    }
    
    /* Active touch state for buttons */
    .touch-active {
        transform: scale(0.95);
        opacity: 0.8;
    }
    
    /* Better gallery navigation */
    .gallery-img {
        position: relative;
    }
    
    .gallery-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0);
        transition: background 0.3s ease;
    }
    
    .gallery-item:active .gallery-img::after {
        background: rgba(0,0,0,0.1);
    }
    
    /* Feedback for active elements */
    a:active, button:active, .btn:active {
        transform: translateY(1px);
    }
    
    /* Better lightbox controls */
    .lightbox-prev, .lightbox-next {
        width: 50px !important;
        height: 50px !important;
    }
}

/* ========================
   PACKAGES SECTION
======================== */
#packageTabs .nav-link {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
}

#packageTabs .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 3, 39, 0.2);
}

#packageTabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

#packageTabs .nav-link i {
    font-size: 18px;
}

.package-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.package-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.package-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.package-header h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-badge.badge-classic {
    background: var(--secondary-color);
}

.package-badge.badge-luxury {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive packages */
@media (max-width: 768px) {
    #packageTabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    #packageTabs .nav-link {
        margin: 5px 0;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
    
    .package-card.featured::before {
        font-size: 10px;
        padding: 3px 12px;
    }
}

/* Footer link styling */
.footer-link {
    color: var(--secondary-color) !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--light-color) !important;
    text-decoration: underline;
}