/* ===== PROFESSIONAL INDEX PAGE STYLES ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fffe;
    overflow-x: hidden;
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f1 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23007b5d" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23007b5d" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 93, 0.1);
    color: #007b5d;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 123, 93, 0.2);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 24px;
}

.highlight-text {
    color: #007b5d;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007b5d, #00a876);
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Enhanced Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.search-container.focused {
    box-shadow: 0 10px 40px rgba(0, 123, 93, 0.2);
    border: 2px solid #007b5d;
}

.search-icon {
    padding: 0 15px;
    color: #666;
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 10px;
    font-size: 16px;
    background: transparent;
}

.search-btn {
    background: #007b5d;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #005e46;
    transform: translateX(2px);
}

.search-suggestions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.suggestion-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: rgba(0, 123, 93, 0.1);
    color: #007b5d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #007b5d;
    color: white;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.trust-item i {
    color: #007b5d;
    font-size: 18px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome";
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.trust-item i.fa-shield-check {
    font-size: 18px;
}

.trust-item i.fa-shield-check::before {
    content: "\f2f3";
}

.trust-item i.fa-clock {
    font-size: 16px;
}

.trust-item i.fa-clock::before {
    content: "\f017";
}

.trust-item i.fa-medal {
    font-size: 16px;
}

.trust-item i.fa-medal::before {
    content: "\f5a2";
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    right: 80px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 180px;
    left: 40px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 60px;
    right: 40px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 93, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Categories Section */
.categories-section {
    margin-top: 80px;
    padding: 0 40px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.category-tag {
    background: white;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #007b5d;
    color: white;
    border-color: #007b5d;
    transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 93, 0.1);
    border-radius: 50%;
    border: none;
    color: #007b5d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #007b5d;
    color: white;
}

/* ===== ENHANCED STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.stats-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f1 100%);
    border: 1px solid rgba(0, 123, 93, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 123, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #007b5d;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #007b5d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.stat-description {
    font-size: 14px;
    color: #666;
}

/* ===== ENHANCED TEACHERS SECTION ===== */
.teachers-section {
    padding: 80px 0;
    background: #f8fffe;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #007b5d;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn span {
    color: white;
}

.view-all-btn i {
    color: white;
}

.view-all-btn:hover {
    background: #005e46;
    color: white;
    transform: translateX(2px);
}

.view-all-btn:hover span,
.view-all-btn:hover i {
    color: white;
}

.teachers-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.teacher-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 93, 0.1);
}

.teacher-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.teacher-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.teacher-avatar {
    position: relative;
}

.teacher-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f8f1;
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #00c851;
    border-radius: 50%;
    border: 2px solid white;
}

.teacher-rating {
    text-align: right;
}

.rating-stars {
    margin-bottom: 4px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 14px;
    margin-left: 2px;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

.teacher-info {
    margin-bottom: 20px;
}

.teacher-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.teacher-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.teacher-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.teacher-meta i {
    color: #007b5d;
    font-size: 12px;
}

.teacher-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.teacher-subjects {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.subject-tag {
    background: rgba(0, 123, 93, 0.1);
    color: #007b5d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.more-subjects {
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.teacher-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.price-info {
    text-align: left;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #007b5d;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-trial,
.btn-profile {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-trial {
    background: #007b5d;
    color: white;
    border: 1px solid #007b5d;
}

.btn-trial:hover {
    background: #005e46;
    border-color: #005e46;
    color: white;
}

.btn-profile {
    background: transparent;
    color: #007b5d;
    border: 1px solid #007b5d;
}

.btn-profile:hover {
    background: #007b5d;
    color: white;
}

.no-teachers {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-teachers i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ccc;
}

/* ===== ENHANCED HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f1 100%);
    border: 1px solid rgba(0, 123, 93, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #007b5d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 123, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 24px;
    font-size: 32px;
    color: #007b5d;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    display: none;
}

.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007b5d;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button span {
    color: white;
}

.cta-button i {
    color: white;
}

.cta-button:hover {
    background: #005e46;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 93, 0.3);
}

.cta-button:hover span,
.cta-button:hover i {
    color: white;
}

/* ===== ENHANCED FOOTER ===== */
.enhanced-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    background: #007b5d;
    border-radius: 8px;
    padding: 8px;
    margin-right: 12px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-description {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #007b5d;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007b5d;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #007b5d;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .nav-links {
        gap: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 30px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        max-width: 200px;
        padding: 15px;
    }
    
    .floating-card.card-1 {
        top: 10px;
        right: 40px;
    }
    
    .floating-card.card-2 {
        top: 140px;
        left: 20px;
    }
    
    .floating-card.card-3 {
        bottom: 40px;
        right: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .teachers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 0 30px;
    }
    
    /* Hide floating cards on tablets and mobile */
    .hero-visual {
        display: none !important;
    }
    
    .floating-card {
        display: none !important;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .teachers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 12px;
        padding: 15px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .floating-card {
        max-width: 180px;
        padding: 12px;
        gap: 10px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .card-content h4 {
        font-size: 14px;
    }
    
    .card-content p {
        font-size: 12px;
    }
    
    .categories-section {
        padding: 0 20px;
        margin-top: 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .stats-header h2,
    .section-header h2 {
        font-size: 28px;
    }
    
    .teacher-card-enhanced {
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-trial,
    .btn-profile {
        text-align: center;
        padding: 10px 16px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden;
}


/* ========================================
   MOBILE MENU OVERLAY & BOTTOM SHEET
   ======================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

/* Drag Handle */
.mobile-menu-handle {
    padding: 12px 0;
    display: flex;
    justify-content: center;
    cursor: grab;
}

.mobile-menu-handle-bar {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

/* Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 600;
    color: #007b5d;
    margin: 0;
}

/* Menu Body */
.mobile-menu-body {
    padding: 20px 24px 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #e8f5f1;
    color: #007b5d;
    transform: translateX(5px);
}

.mobile-nav-link i {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i {
    color: #007b5d;
    transform: translateX(3px);
}

/* Auth Buttons in Mobile Menu */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.mobile-auth-buttons a,
.mobile-auth-buttons .mobile-btn-signin,
.mobile-auth-buttons .mobile-btn-signup {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-auth-buttons .btn-signin,
.mobile-auth-buttons .mobile-btn-signin {
    background: white;
    color: #007b5d;
    border: 2px solid #007b5d;
}

.mobile-auth-buttons .btn-signin:hover,
.mobile-auth-buttons .mobile-btn-signin:hover {
    background: #f0f9f6;
}

.mobile-auth-buttons .btn-signup,
.mobile-auth-buttons .mobile-btn-signup {
    background: linear-gradient(135deg, #007b5d, #006b4f);
    color: white;
    border: 2px solid #007b5d;
}

.mobile-auth-buttons .btn-signup:hover,
.mobile-auth-buttons .mobile-btn-signup:hover {
    background: linear-gradient(135deg, #006b4f, #005a42);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 93, 0.3);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #007b5d;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Show hamburger on mobile/tablet */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
}


/* ========================================
   SECTION TITLE FIX - PROPER ORDER
   ======================================== */

.section-title {
    display: flex;
    flex-direction: column;
}

.section-title h2 {
    order: 1;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
}

.section-title p {
    order: 2;
    font-size: 18px !important;
    color: #666 !important;
    max-width: 500px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
