/* Ensure contact page container is wide */
.contact-page {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto;
}
/* Modern contact textarea styles */
.modern-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(193,154,107,0.13);
    outline: none;
}
.modern-textarea-label.active,
.modern-textarea:focus + .modern-textarea-label {
    top: -0.7rem !important;
    left: 1rem !important;
    font-size: 0.92rem !important;
    color: var(--accent) !important;
    background: #fff !important;
    padding: 0 0.3rem !important;
    z-index: 2;
}
.modern-textarea-group textarea:not(:placeholder-shown) + .modern-textarea-label {
    top: -0.7rem !important;
    left: 1rem !important;
    font-size: 0.92rem !important;
    color: var(--accent) !important;
    background: #fff !important;
    padding: 0 0.3rem !important;
    z-index: 2;
}
  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2c3e50;
            --accent: #c19a6b;
            --light: #ffffff;
            --dark: #1a1a1a;
            --gray: #f8f9fa;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--accent);
            color: var(--light);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
        }

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

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

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

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

        /* First Navigation Bar */

        .top-nav {
            background: linear-gradient(135deg, #232526 0%, #414345 100%) !important;
            color: #f3f3f3;
            padding: 10px 0;
            font-size: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            letter-spacing: 0.03em;
        }

        .top-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: white;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #a4de02;
        }

        /* Header Styles */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
        }

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

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            margin-right: 30px;
        }

        .nav-item {
            position: relative;
            margin: 0 15px;
        }

        .nav-link {
            color: var(--primary);
            font-weight: 500;
            padding: 10px 0;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

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

        .nav-link i {
            margin-left: 5px;
            font-size: 12px;
            transition: var(--transition);
        }

       .nav-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Search Modal */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .search-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .search-form {
            width: 80%;
            max-width: 600px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            border: none;
            border-radius: 4px;
        }

        .close-search {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        /* Login/Register Modal */
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .auth-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .auth-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 400px;
            position: relative;
        }

        .close-auth {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
        }

        .auth-form h2 {
            color: #2c5e1a;
            margin-bottom: 20px;
            text-align: center;
        }

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

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

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .form-submit {
            background-color: #2c5e1a;
            color: white;
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .form-submit:hover {
            background-color: #1f4712;
        }

        .form-footer {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
        }

        .form-footer a {
            color: #2c5e1a;
            font-weight: 600;
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            background: var(--light);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 25px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 10px);
        }

        .mega-menu h4 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }

        .mega-menu ul li {
            margin-bottom: 10px;
        }

        .mega-menu ul li a {
            color: #555;
            transition: var(--transition);
            display: block;
            padding: 5px 0;
        }

        .mega-menu ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .mega-menu-img {
            height: 180px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 10px;
        }

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

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

        /* User Account Dropdown */
        .user-account {
            position: relative;
        }

        .user-btn {
            display: flex;
            align-items: center;
            color: var(--primary);
            font-weight: 500;
            cursor: pointer;
        }

        .user-btn i {
            margin-left: 5px;
            font-size: 12px;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 200px;
            background: var(--light);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .user-account:hover .user-dropdown {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 10px);
        }

        .user-dropdown a {
            display: block;
            padding: 10px;
            color: #555;
            transition: var(--transition);
            border-radius: 4px;
        }

        .user-dropdown a:hover {
            background-color: var(--gray);
            color: var(--accent);
        }

        /* Mobile Navigation */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }

        /* ===== Modern Hero Carousel ===== */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 450px;
            max-height: 600px;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18), 0 1.5px 6px rgba(44, 62, 80, 0.10);
            margin: 32px auto 0 auto;
            background: #e5e7eb;
        }

        .carousel-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slides {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
        }

        .carousel-slide.active {
            opacity: 1;
            visibility: visible;
        }

        /* Ken Burns Effect Background */
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
            transform: scale(1);
            transition: transform 8s ease-out;
        }

        .carousel-slide.active .slide-bg {
            animation: kenBurns 8s ease-out forwards;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1) translate(0, 0);
            }
            100% {
                transform: scale(1.1) translate(-1%, -1%);
            }
        }

        /* Overlay with gradient */
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 40%,
                rgba(0, 0, 0, 0.5) 100%
            );
            z-index: 1;
        }

        /* Content Container */
        .slide-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            z-index: 2;
            padding: 0 10%;
            width: 100%;
            height: 100%;
        }
        /* Responsive Carousel */
        @media (max-width: 900px) {
            .hero-carousel {
                height: 45vh;
                min-height: 260px;
                border-radius: 16px;
            }
            .slide-content {
                padding: 0 4%;
            }
            .slide-bg {
                border-radius: 16px;
            }
        }

        @media (max-width: 600px) {
            .hero-carousel {
                height: 32vh;
                min-height: 160px;
                border-radius: 10px;
            }
            .slide-content {
                padding: 0 2%;
            }
            .slide-bg {
                border-radius: 10px;
            }
            .content-wrapper {
                max-width: 98vw;
            }
        }

        .content-wrapper {
            max-width: 650px;
            opacity: 0;
            transform: translateY(40px);
        }

        .carousel-slide.active .content-wrapper {
            animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

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

        /* Tag/Category Badge */
        .slide-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(-20px);
        }

        .carousel-slide.active .slide-tag {
            animation: fadeInLeft 0.6s ease 0.5s forwards;
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Title */
        .slide-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(30px);
        }

        .carousel-slide.active .slide-title {
            animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
        }

        /* Excerpt */
        .slide-excerpt {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 25px;
            max-width: 550px;
            opacity: 0;
            transform: translateY(30px);
        }

        .carousel-slide.active .slide-excerpt {
            animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        /* Meta Info */
        .slide-meta {
            display: flex;
            gap: 25px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .carousel-slide.active .slide-meta {
            animation: slideUp 0.6s ease 0.8s forwards;
        }

        .slide-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .slide-meta i {
            color: #10b981;
        }

        /* CTA Button */
        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #059669, #10b981);
            color: white;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
            opacity: 0;
            transform: translateY(20px);
            overflow: hidden;
            position: relative;
        }

        .carousel-slide.active .slide-btn {
            animation: slideUp 0.6s ease 0.9s forwards;
        }

        .slide-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .slide-btn:hover::before {
            left: 100%;
        }

        .slide-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
            background: linear-gradient(135deg, #047857, #059669);
        }

        .slide-btn i {
            transition: transform 0.3s ease;
        }

        .slide-btn:hover i {
            transform: translateX(5px);
        }

        /* Navigation Arrows */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-prev {
            left: 30px;
        }

        .carousel-next {
            right: 30px;
        }

        .carousel-nav:hover {
            background: #059669;
            border-color: #059669;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
        }

        /* Progress Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 50px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .indicator-progress {
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, #059669, #10b981);
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        .indicator.active .indicator-progress {
            animation: progressBar 5s linear forwards;
        }

        @keyframes progressBar {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        /* Slide Counter */
        .slide-counter {
            position: absolute;
            bottom: 40px;
            right: 50px;
            display: flex;
            align-items: baseline;
            gap: 5px;
            color: white;
            font-family: 'Playfair Display', serif;
            z-index: 10;
        }

        .current-slide {
            font-size: 2.5rem;
            font-weight: 700;
            color: #10b981;
        }

        .separator {
            font-size: 1.5rem;
            opacity: 0.5;
        }

        .total-slides {
            font-size: 1.2rem;
            opacity: 0.7;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .carousel-nav {
                width: 50px;
                height: 50px;
            }
            
            .carousel-prev {
                left: 20px;
            }
            
            .carousel-next {
                right: 20px;
            }
            
            .slide-content {
                padding: 0 8%;
            }
        }

        @media (max-width: 768px) {
            .hero-carousel {
                height: 60vh;
                min-height: 380px;
            }
            
            .carousel-nav {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .carousel-prev {
                left: 15px;
            }
            
            .carousel-next {
                right: 15px;
            }
            
            .slide-content {
                padding: 0 5%;
                align-items: flex-end;
                padding-bottom: 120px;
            }
            
            .content-wrapper {
                max-width: 100%;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-excerpt {
                font-size: 1rem;
                display: -webkit-box;
                line-clamp: 3;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .slide-meta {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .slide-btn {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
            
            .indicator {
                width: 35px;
            }
            
            .slide-counter {
                right: 20px;
                bottom: 100px;
            }
            
            .current-slide {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-carousel {
                height: 50vh;
                min-height: 320px;
            }
            
            .carousel-nav {
                display: none;
            }
            
            .slide-tag {
                font-size: 0.75rem;
                padding: 6px 14px;
            }
            
            .slide-title {
                font-size: 1.6rem;
            }
            
            .slide-excerpt {
                font-size: 0.9rem;
                line-clamp: 2;
                -webkit-line-clamp: 2;
            }
            
            .slide-meta {
                display: none;
            }
            
            .slide-btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .indicator {
                width: 25px;
                height: 3px;
            }
            
            .slide-counter {
                display: none;
            }
        }

     /* Mission Section */
        .mission-section {
            padding: 5px 0;
            background-color: #f0f7ea;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .mission-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }

        .mission-card:hover {
            transform: translateY(-5px);
        }

        .mission-icon {
            font-size: 40px;
            color: #2c5e1a;
            margin-bottom: 20px;
        }

        .mission-card h3 {
            color: #2c5e1a;
            margin-bottom: 15px;
        }
   
        /* Featured Dishes */
        .dishes-pagination-wrapper {
            margin-bottom: 60px;
        }

        .dishes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto 40px auto;
            padding: 32px 0;
        }

        .dishes-page {
            display: none;
            animation: fadeInDishes 0.5s ease;
        }

        .dishes-page.active {
            display: grid;
        }

        @keyframes fadeInDishes {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dishes-pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dishes-page-btn {
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 50%;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .dishes-page-btn:hover {
            background: var(--primary);
            color: white;
        }

        .dishes-page-btn.active {
            background: var(--primary);
            color: white;
        }

        .dish-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

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

        .dish-img {
            height: 220px;
            overflow: hidden;
        }

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

        .dish-card:hover .dish-img img {
            transform: scale(1.1);
        }

        .dish-info {
            padding: 20px;
            background: var(--light);
        }

        .dish-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .dish-info p {
            color: #666;
            margin-bottom: 15px;
        }

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

        .price {
            font-weight: 600;
            color: var(--accent);
            font-size: 20px;
        }


        /* Testimonials Slider */
        .testimonials {
            background-color: #f0f7ea;
            padding: 5px 0;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .testimonial-item {
            position: absolute;
            width: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            text-align: center;
            padding: 0 20px;
        }

        .testimonial-item.active {
            opacity: 1;
        }

        .testimonial-content {
            background: var(--light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-content::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid var(--light);
        }

        .testimonial-content p {
            font-style: italic;
            color: #555;
            margin-bottom: 15px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 10px;
        }

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

        .author-info h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info span {
            color: var(--accent);
            font-size: 14px;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .testimonial-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(44, 62, 80, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-control.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* Special Offers Slider */
        .special-offers {
            padding: 5px 0;
        }

        .offers-slider {
            position: relative;
            overflow: hidden;
            height: 380px;
            margin-bottom: 24px;
        }

        .offer-item {
            position: absolute;
            inset: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            gap: 40px;
            align-items: center;
            pointer-events: none;
        }

        .offer-item.active {
            opacity: 1;
            pointer-events: auto;
        }

        .offer-img {
            flex: 1;
            height: 340px;
            border-radius: 10px;
            overflow: hidden;
        }

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

        .offer-content {
            flex: 1;
            max-width: 520px;
        }

        .offer-eyebrow {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(184, 134, 59, 0.12);
            color: #b8863b;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .offer-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .offer-content h3 a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .offer-content h3 a:hover {
            color: var(--accent);
        }

        .offer-content p {
            color: #666;
            margin-bottom: 18px;
        }

        .offer-summary {
            font-size: 1rem;
            line-height: 1.85;
            color: #586273;
            max-width: 48ch;
        }

        .offer-price {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 18px;
        }

        .offer-tag {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            border-radius: 999px;
            background: linear-gradient(135deg, #d4a762 0%, #b8863b 100%);
            color: #132033;
            font-weight: 800;
            letter-spacing: 0.04em;
            box-shadow: 0 14px 28px rgba(184, 134, 59, 0.2);
        }

        .offer-validity {
            color: #7b8798;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
        }

        .discounted-price {
            font-size: 24px;
            font-weight: 600;
            color: var(--accent);
        }

        .offer-details {
            font-size: 0.95rem;
            color: #8994a5;
        }

        .offer-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            transition: gap 0.25s ease, color 0.25s ease;
        }

        .offer-link:hover {
            color: var(--accent);
            gap: 14px;
        }

        .offer-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .offer-nav-btn {
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .offer-nav-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        .offer-nav-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none;
        }

        .offer-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .offer-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(44, 62, 80, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .offer-control.active {
            background: var(--primary);
            transform: scale(1.3);
        }

/* Artist Footer Theme */
.artist-footer {
    background: linear-gradient(135deg, #232526 0%, #414345 100%) !important;
    color: #f3f3f3;
    padding: 80px 0 32px 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.03em;
    box-shadow: 0 0 32px 0 rgba(0,0,0,0.18);
}
.artist-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}
.artist-footer-main {
    flex: 2;
    min-width: 260px;
}
.artist-footer-links {
    flex: 1;
    min-width: 200px;
}
.artist-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.artist-footer-desc {
    font-size: 1.18rem;
    color: #e0e0e0;
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 480px;
}
.artist-footer-social {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}
.artist-footer-social-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #f3f3f3;
    letter-spacing: 0.12em;
    border-bottom: 3px solid #c19a6b;
    display: inline-block;
    padding-bottom: 3px;
}
.artist-footer-nav {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}
.artist-footer-nav a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.artist-footer-nav a:hover {
    color: #c19a6b;
    transform: translateX(4px);
}
.artist-social-links {
    display: flex;
    gap: 28px;
    margin-top: 10px;
}
.artist-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #f3f3f3;
    font-size: 1.7rem;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.artist-social-links a:hover {
    background: #c19a6b;
    color: #232526;
    transform: translateY(-5px) scale(1.12);
}
.artist-footer-signature {
    text-align: center;
    margin: 32px 0 0 0;
    font-size: 1.13rem;
    color: #c19a6b;
    letter-spacing: 0.12em;
}
.artist-footer-signature i {
    color: #e25555;
    margin: 0 2px;
}
.artist-footer-copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.10);
    color: #bdbdbd;
    font-size: 1.05rem;
    margin-top: 24px;
}
@media (max-width: 700px) {
    .artist-footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .artist-footer-main, .artist-footer-links, .artist-footer-social {
        align-items: flex-start;
        text-align: left;
    }
    .artist-footer-social {
        align-items: flex-start;
        margin-top: 10px;
    }
    .artist-footer-title {
        font-size: 2rem;
    }
    .artist-social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

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

        .scroll-top:hover {
            background: #a5825d;
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .mega-menu {
                width: 700px;
                left: 30px;
                transform: none;
            }

            .offers-slider {
                height: 620px;
            }

            .offer-item {
                flex-direction: column;
                gap: 20px;
                justify-content: flex-start;
            }

            .offer-img {
                width: 100%;
                height: 320px;
            }

            .offer-content {
                width: 100%;
                text-align: center;
                padding: 0 12px;
                max-width: none;
            }

            .offer-price {
                justify-content: center;
            }

            .offer-nav {
                margin-bottom: 16px;
            }
            
            /* NEW: Top Nav Responsive */
            .top-nav-contact span {
                margin-right: 15px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .offers-slider {
                height: 680px;
            }

            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }

            .logo {
                margin-bottom: 15px;
            }

            .nav-list {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .mega-menu {
                width: 90vw;
                left: 5vw;
                grid-template-columns: 1fr;
            }

            .carousel-content {
                margin-left: 50px;
                max-width: 80%;
            }

            .carousel-content h2 {
                font-size: 32px;
            }

            .mobile-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--light);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }

            .nav-list.active {
                display: flex;
            }

            .nav-item {
                margin: 10px 0;
            }

            .mega-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                padding: 15px;
            }

            .nav-item:hover .mega-menu {
                display: block;
                position: static;
                opacity: 1;
                visibility: visible;
            }
            
            /* NEW: Top Nav Responsive */
            .top-nav-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .top-nav-contact {
                display: flex;
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }
            
            .top-nav-contact span {
                margin-right: 0;
            }
        }

        @media (max-width: 576px) {
            .offers-slider {
                height: 720px;
            }

            .offer-img {
                height: 260px;
            }

            .offer-content h3 {
                font-size: 24px;
            }

            .offer-content p {
                margin-bottom: 18px;
            }

            .nav-list {
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-item {
                margin: 5px 10px;
            }

            .carousel-content {
                margin-left: 20px;
                padding: 20px;
            }

            .carousel-content h2 {
                font-size: 28px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .testimonials-slider {
                height: 380px;
            }
            
            /* NEW: Top Nav Responsive */
            .top-nav {
                padding: 10px 0;
            }
            
            .top-nav-social a {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }
        }

/* ===== Modern Auth Modal Styles ===== */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login,
.btn-register {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-login {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 94, 26, 0.3);
}

.btn-register:hover {
    background: linear-gradient(135deg, #1f4712, #3d8422);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 94, 26, 0.4);
}

/* Auth Modal Overlay */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    transform: scale(0.8) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-modal-overlay.active .auth-modal-container {
    transform: scale(1) translateY(0);
}

.auth-modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.auth-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2c5e1a, #4a9e2b, #6bbf3a, #4a9e2b, #2c5e1a);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.register-content {
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.auth-modal-close:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(44, 94, 26, 0.3);
}

.auth-modal-icon i {
    font-size: 36px;
    color: white;
}

.register-icon {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

.auth-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.auth-modal-header p {
    color: #888;
    font-size: 14px;
}

/* Form Styles */
.auth-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-form-row {
    display: flex;
    gap: 15px;
}

.modal-form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-form-group.half {
    flex: 1;
}

.modal-form-group label {
    position: absolute;
    left: 18px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-input {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modal-input:focus {
    border-color: #2c5e1a;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 94, 26, 0.1);
}

.modal-input:focus + label,
.modal-input:not(:placeholder-shown) + label {
    display: none;
}

.modal-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.modal-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
    position: relative;
    padding-left: 28px;
}

.modal-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.modal-checkbox-label:hover .checkmark {
    border-color: #2c5e1a;
}

.modal-checkbox:checked ~ .checkmark {
    background-color: #2c5e1a;
    border-color: #2c5e1a;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-checkbox:checked ~ .checkmark:after {
    display: block;
}

.forgot-password {
    color: #2c5e1a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #1f4712;
    text-decoration: underline;
}

/* Password Strength Indicator */
.password-strength {
    position: absolute;
    bottom: 5px;
    left: 50px;
    right: 18px;
    height: 3px;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Submit Button */
.auth-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 94, 26, 0.3);
    margin-top: 10px;
}

.auth-modal-btn:hover {
    background: linear-gradient(135deg, #1f4712, #3d8422);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 94, 26, 0.4);
}

.auth-modal-btn i {
    transition: transform 0.3s ease;
}

.auth-modal-btn:hover i {
    transform: translateX(5px);
}

.register-btn {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.register-btn:hover {
    background: linear-gradient(135deg, #138496, #1aa179);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

/* Divider */
.auth-modal-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.auth-modal-divider::before,
.auth-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.auth-modal-divider span {
    padding: 0 15px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
}

/* Social Auth Buttons */
.social-auth-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-auth-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    background: white;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-auth-btn.is-disabled {
    cursor: pointer;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
}

.social-auth-btn.is-disabled:hover {
    background: white;
    transform: none;
    box-shadow: none;
}

.social-auth-x-icon {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.social-auth-note {
    margin-top: 12px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.social-auth-btn.google {
    color: #ea4335;
}

.social-auth-btn.google:hover {
    background: #ea4335;
    border-color: #ea4335;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

.social-auth-btn.facebook {
    color: #1877f2;
}

.social-auth-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-auth-btn.twitter {
    color: #1da1f2;
}

.social-auth-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

/* Social Auth Buttons with Labels */
.social-auth-btn span {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
}

.social-auth-buttons:has(.social-auth-btn span) .social-auth-btn {
    width: auto;
    height: auto;
    border-radius: 6px;
    padding: 10px 16px;
    gap: 8px;
}

.social-auth-buttons:has(.social-auth-btn span) {
    gap: 10px;
    flex-wrap: wrap;
}

/* Footer */
.auth-modal-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-modal-footer p {
    color: #888;
    font-size: 14px;
}

.auth-modal-footer a {
    color: #2c5e1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-modal-footer a:hover {
    color: #1f4712;
    text-decoration: underline;
}

/* Modal Responsive Styles */
@media (max-width: 576px) {
    .auth-modal-container {
        padding: 15px;
    }
    
    .auth-modal-content {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .auth-modal-icon {
        width: 70px;
        height: 70px;
    }
    
    .auth-modal-icon i {
        font-size: 30px;
    }
    
    .auth-modal-header h2 {
        font-size: 24px;
    }
    
    .modal-form-row {
        flex-direction: column;
        gap: 18px;
    }
    
    .modal-input {
        padding: 14px 14px 14px 45px;
        font-size: 14px;
    }
    
    .auth-modal-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .social-auth-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .social-auth-buttons:has(.social-auth-btn span) .social-auth-btn {
        width: 100%;
        height: auto;
        border-radius: 6px;
        padding: 10px 12px;
    }

    .social-auth-btn span {
        font-size: 13px;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-login,
    .btn-register {
        width: 100%;
        justify-content: center;
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===== Profile Page Styles ===== */
.profile-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-sidebar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.profile-avatar {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(44, 94, 26, 0.3);
}

.avatar-circle i {
    font-size: 45px;
    color: white;
}

.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(44, 94, 26, 0.3);
    border: 3px solid white;
}

.avatar-upload-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.avatar-upload-btn i {
    font-size: 14px;
    color: white;
}

.avatar-upload-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1f4712, #3d8422);
}

.profile-avatar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 5px;
}

.member-since {
    color: #888;
    font-size: 13px;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-nav-item i {
    width: 20px;
    text-align: center;
}

.profile-nav-item:hover,
.profile-nav-item.active {
    background: #f0f7ed;
    color: #2c5e1a;
}

.profile-nav-item.logout {
    color: #dc3545;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.profile-nav-item.logout:hover {
    background: #fff5f5;
    color: #dc3545;
}

.profile-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.profile-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 5px;
}

.profile-header p {
    color: #888;
    font-size: 14px;
}

.profile-messages {
    margin-bottom: 25px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    position: relative;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-close {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 1;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Profile Picture Section */
.profile-picture-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 10px;
}

.profile-picture-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-picture-section h4 i {
    color: #2c5e1a;
}

.picture-upload-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.current-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.current-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.no-picture {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.no-picture i {
    font-size: 40px;
    margin-bottom: 5px;
}

.no-picture span {
    font-size: 10px;
    text-align: center;
}

.picture-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-upload {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-upload:hover {
    background: linear-gradient(135deg, #1f4712, #3d8422);
    transform: translateY(-2px);
}

.btn-remove-picture {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-picture:hover {
    background: #dc3545;
    color: white;
}

.upload-hint {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.form-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #e8e8e8, transparent);
    margin: 10px 0;
}

.profile-form textarea {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.profile-form textarea:focus {
    border-color: #2c5e1a;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 94, 26, 0.1);
}

.profile-form label {
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
}

.profile-form input {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.profile-form input:focus {
    border-color: #2c5e1a;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 94, 26, 0.1);
}

.profile-form input.disabled-input {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.profile-form small {
    color: #888;
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-save {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 94, 26, 0.3);
}

.btn-save:hover {
    background: linear-gradient(135deg, #1f4712, #3d8422);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 94, 26, 0.4);
}

.btn-cancel {
    padding: 14px 30px;
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.profile-stats {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.profile-stats h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #f0f7ed;
    transform: translateY(-2px);
}

.stat-card i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.stat-label {
    color: #888;
    font-size: 12px;
}

/* ===== Logout Page Styles ===== */
.logout-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 50%, #1a2332 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logout-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.logout-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.logout-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.logout-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    bottom: -50px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.logout-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.logout-wrapper {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logout-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 45px 40px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.logout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b, #ffc107, #ff6b6b, #dc3545);
    background-size: 300% auto;
    animation: shimmer 4s linear infinite;
}

.logout-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.logout-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logout-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logout-avatar .avatar-placeholder i {
    font-size: 40px;
    color: #adb5bd;
}

.logout-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.logout-badge i {
    font-size: 14px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.logout-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), #3d5a80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logout-card .user-greeting {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.logout-card .user-greeting strong {
    color: var(--primary);
}

.logout-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 14px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.logout-info .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 13px;
}

.logout-info .info-item i {
    color: #17a2b8;
}

.logout-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-logout-confirm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: transparent;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-logout-confirm .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-logout-confirm .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 14px;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-logout-confirm:hover .btn-bg {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.5);
}

.btn-logout-confirm:active .btn-bg {
    transform: scale(0.98);
}

.btn-logout-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: white;
    color: var(--primary);
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-logout-cancel:hover {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
}

.logout-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.logout-footer p {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.logout-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.logout-footer .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.logout-footer .social-icons a:hover {
    background: linear-gradient(135deg, var(--primary), #3d5a80);
    color: white;
    transform: translateY(-3px);
}

.logout-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.logout-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.logout-links a:hover {
    color: white;
}

.logout-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Logout Page Responsive */
@media (max-width: 576px) {
    .logout-section {
        padding: 80px 15px 40px;
    }
    
    .logout-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .logout-avatar {
        width: 80px;
        height: 80px;
    }
    
    .logout-avatar .avatar-placeholder i {
        font-size: 30px;
    }
    
    .logout-badge {
        width: 30px;
        height: 30px;
    }
    
    .logout-badge i {
        font-size: 12px;
    }
    
    .logout-card h2 {
        font-size: 24px;
    }
    
    .logout-bg-shapes .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .logout-bg-shapes .shape-2 {
        width: 180px;
        height: 180px;
    }
    
    .logout-bg-shapes .shape-3 {
        display: none;
    }
    
    .logout-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .logout-links .divider {
        display: none;
    }
}

/* User dropdown logout link styling */
.user-dropdown .logout-link {
    color: #dc3545 !important;
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 15px !important;
}

.user-dropdown .logout-link:hover {
    background: #fff5f5 !important;
    color: #c82333 !important;
}

/* Profile Page Responsive */
@media (max-width: 992px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        position: static;
    }
    
    .profile-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .profile-nav-item {
        padding: 10px 15px;
    }
    
    .profile-nav-item.logout {
        margin-top: 0;
        border-top: none;
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .profile-section {
        padding: 30px 0;
    }
    
    .profile-content {
        padding: 25px 20px;
    }
    
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-save,
    .btn-cancel {
        width: 100%;
        justify-content: center;
    }
    
    .picture-upload-area {
        flex-direction: column;
        text-align: center;
    }
    
    .picture-actions {
        width: 100%;
    }
    
    .btn-upload,
    .btn-remove-picture {
        width: 100%;
        justify-content: center;
    }
    
    .profile-picture-section {
        padding: 20px 15px;
    }
    
    .logout-card {
        padding: 40px 25px;
    }
    
    .logout-icon {
        width: 70px;
        height: 70px;
    }
    
    .logout-icon i {
        font-size: 30px;
    }
}

/* ===== Change Password Page Styles ===== */
.password-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.password-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.password-sidebar {
    background: linear-gradient(135deg, #2c5e1a 0%, #4a9e2b 100%);
    border-radius: 20px;
    padding: 35px;
    color: white;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 15px 50px rgba(44, 94, 26, 0.3);
}

.sidebar-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.sidebar-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
}

.sidebar-icon i {
    font-size: 35px;
    color: white;
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 5px;
}

.sidebar-header p {
    opacity: 0.8;
    font-size: 14px;
}

.security-tips {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.security-tips h4 {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-tips h4 i {
    color: #ffd700;
}

.security-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-tips li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 8px 0;
    opacity: 0.9;
}

.security-tips li i {
    color: #90EE90;
    font-size: 12px;
}

.back-to-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-profile:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

.password-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.password-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.password-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 5px;
}

.password-header p {
    color: #888;
    font-size: 14px;
}

.password-messages {
    margin-bottom: 25px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.password-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.password-form label {
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-form label i {
    color: #2c5e1a;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-form .form-input {
    width: 100%;
    padding: 16px 50px 16px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.password-form .form-input:focus {
    border-color: #2c5e1a;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 94, 26, 0.1);
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #2c5e1a;
}

.password-strength-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.password-strength-bar {
    flex: 1;
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-text {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    min-width: 100px;
}

.password-match {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.password-match.match {
    color: #2ed573;
}

.password-match.no-match {
    color: #ff4757;
}

.field-error {
    color: #ff4757;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
}

.password-form .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.btn-change-password {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #2c5e1a, #4a9e2b);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 94, 26, 0.3);
}

.btn-change-password:hover {
    background: linear-gradient(135deg, #1f4712, #3d8422);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 94, 26, 0.4);
}

/* Password Page Responsive */
@media (max-width: 992px) {
    .password-wrapper {
        grid-template-columns: 1fr;
    }
    
    .password-sidebar {
        position: static;
    }
    
    .security-tips {
        display: none;
    }
}

@media (max-width: 576px) {
    .password-section {
        padding: 30px 0;
    }
    
    .password-sidebar {
        padding: 25px 20px;
    }
    
    .sidebar-icon {
        width: 60px;
        height: 60px;
    }
    
    .sidebar-icon i {
        font-size: 25px;
    }
    
    .password-content {
        padding: 25px 20px;
    }
    
    .password-form .form-actions {
        flex-direction: column;
    }
    
    .btn-change-password,
    .password-form .btn-cancel {
        width: 100%;
    }
}

/* ===== Password Reset Page Styles ===== */
.password-reset-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.password-reset-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.password-reset-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.password-reset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #17a2b8, #20c997, #17a2b8);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.reset-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.3);
}

.reset-icon i {
    font-size: 40px;
    color: white;
}

.password-reset-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.password-reset-card > p {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reset-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.reset-form .form-group label {
    position: absolute;
    left: 18px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.reset-form .form-input {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.reset-form .form-input:focus {
    border-color: #17a2b8;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(23, 162, 184, 0.1);
}

.btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-reset:hover {
    background: linear-gradient(135deg, #138496, #1aa179);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.reset-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.reset-footer p {
    color: #888;
    font-size: 14px;
}

.reset-footer a {
    color: #17a2b8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reset-footer a:hover {
    color: #138496;
    text-decoration: underline;
}

/* Password Reset Responsive */
@media (max-width: 576px) {
    .password-reset-section {
        padding: 60px 0;
    }
    
    .password-reset-card {
        padding: 40px 25px;
    }
    
    .reset-icon {
        width: 70px;
        height: 70px;
    }
    
    .reset-icon i {
        font-size: 30px;
    }
    
    .password-reset-card h2 {
        font-size: 24px;
    }
}

/* ===== Email Settings Page Styles ===== */
.email-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.email-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.email-sidebar {
    background: linear-gradient(180deg, var(--primary) 0%, #1a2332 100%);
    border-radius: 24px;
    padding: 40px 30px;
    color: white;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.email-sidebar .sidebar-header {
    text-align: center;
    margin-bottom: 30px;
}

.email-sidebar .sidebar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
}

.email-sidebar .sidebar-icon i {
    font-size: 35px;
    color: white;
}

.email-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.email-sidebar p {
    opacity: 0.8;
    font-size: 14px;
}

.email-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.email-info h4 {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-info h4 i {
    color: #20c997;
}

.email-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.email-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.email-info ul li:last-child {
    border-bottom: none;
}

.email-info ul li i {
    color: #20c997;
    font-size: 12px;
}

.email-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.email-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.email-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.email-header p {
    color: #888;
    font-size: 14px;
}

.email-messages {
    margin-bottom: 25px;
}

.email-messages .alert {
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease;
}

.email-messages .alert-success {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(23, 162, 184, 0.1));
    border: 1px solid rgba(32, 201, 151, 0.3);
    color: #0d5848;
}

.email-messages .alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #842029;
}

.email-messages .alert i {
    font-size: 18px;
}

.email-messages .alert-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.email-messages .alert-close:hover {
    opacity: 1;
}

/* Current Emails Section */
.current-emails-section {
    margin-bottom: 35px;
}

.current-emails-section h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-emails-section h3 i {
    color: #17a2b8;
}

.email-list {
    margin-bottom: 20px;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.email-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.email-item.primary {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(32, 201, 151, 0.1));
    border-color: rgba(23, 162, 184, 0.3);
}

.email-radio {
    position: relative;
}

.email-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.email-radio label {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.email-radio input[type="radio"]:checked + label {
    border-color: #17a2b8;
    background: #17a2b8;
}

.email-radio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.email-details {
    flex: 1;
}

.email-address {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.email-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.badge-verified {
    background: rgba(32, 201, 151, 0.15);
    color: #0d5848;
}

.badge-unverified {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.badge-primary {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
}

.email-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-make-primary {
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    color: #856404;
}

.btn-make-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-resend {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
}

.btn-resend:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
}

.btn-remove {
    background: linear-gradient(135deg, #dc3545, #e4606d);
    color: white;
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.no-emails {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #888;
}

.no-emails i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Add Email Section */
.add-email-section {
    margin-bottom: 35px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.add-email-section h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-email-section h3 i {
    color: #20c997;
}

.add-email-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.add-email-form .form-group {
    flex: 1;
    min-width: 250px;
}

.add-email-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.add-email-form label i {
    margin-right: 8px;
    color: #17a2b8;
}

.email-input-wrapper {
    position: relative;
}

.email-input-wrapper .form-input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.email-input-wrapper .form-input:focus {
    border-color: #17a2b8;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(23, 162, 184, 0.1);
}

.email-input-wrapper .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
}

.btn-add-email {
    padding: 14px 25px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-add-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.field-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Email Preferences Info */
.email-preferences-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: white;
}

.info-content h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* Email Section Responsive */
@media (max-width: 992px) {
    .email-wrapper {
        grid-template-columns: 1fr;
    }
    
    .email-sidebar {
        position: relative;
        top: 0;
    }
    
    .email-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .email-section {
        padding: 80px 0 40px;
    }
    
    .email-content {
        padding: 30px 20px;
    }
    
    .email-header h2 {
        font-size: 24px;
    }
    
    .email-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
    
    .add-email-form {
        flex-direction: column;
    }
    
    .add-email-form .form-group {
        width: 100%;
    }
    
    .btn-add-email {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .email-section {
        padding: 60px 0 30px;
    }
    
    .email-sidebar {
        padding: 25px 20px;
    }
    
    .email-sidebar .sidebar-icon {
        width: 60px;
        height: 60px;
    }
    
    .email-sidebar .sidebar-icon i {
        font-size: 25px;
    }
    
    .email-content {
        padding: 25px 15px;
    }
    
    .email-item {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .email-preferences-info {
        grid-template-columns: 1fr;
    }
}
