/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6C5CE7;
    --primary-dark: #5443C7;
    --primary-light: #A29BFE;
    --secondary-color: #00B894;
    --secondary-dark: #00966D;
    --accent-color: #FDCB6E;
    --danger-color: #FF7675;
    --dark: #2D3436;
    --dark-light: #636E72;
    --light: #DFE6E9;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-secondary: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    --gradient-success: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px var(--shadow-dark);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-header i {
    font-size: 28px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-body p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--dark-light);
}

.notice-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.notice-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 13px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.notice-list li:hover {
    background: #FFE5E5;
    transform: translateX(5px);
}

.notice-list i {
    color: var(--danger-color);
    font-size: 16px;
}

.modal-footer {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid var(--light);
    background: var(--white);
    flex-shrink: 0;
}

.modal-footer .btn {
    min-width: 150px;
    padding: 14px 32px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    cursor: pointer;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.logo i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-light);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-bg);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.user-info i {
    font-size: 20px;
    color: var(--primary-color);
}

.help-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 50px;
    overflow: hidden;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--white);
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -50px;
    left: -50px;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s infinite ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.greeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.share-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* Services Section */
.services {
    padding: 50px 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--dark-light);
}

/* Filters */
.filters {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 30px;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.filter-header i {
    color: var(--primary-color);
}

.filter-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

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

.filter-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #DFE6E9;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2D3436;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #DFE6E9;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-dark);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-badge-available {
    background: rgba(0, 184, 148, 0.1);
    color: var(--secondary-color);
}

.card-badge-unavailable {
    background: rgba(255, 118, 117, 0.1);
    color: var(--danger-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px var(--shadow);
}

.card-icon-image {
    padding: 0;
    background: var(--white) !important;
    overflow: hidden;
}

.card-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon i {
    font-size: 36px;
    color: var(--white);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.card-description {
    font-size: 15px;
    color: var(--dark-light);
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: var(--light-bg);
    color: var(--dark-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 50px 0 40px;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--dark-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 50px 0 40px;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    gap: 30px;
}

.about-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.about-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon i {
    font-size: 28px;
    color: var(--white);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-light);
}

.values-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
}

.values-list i {
    color: var(--secondary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-light);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 50px 0 40px;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
    margin-top: 30px;
}

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

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

@media (max-width: 768px) {
    .contact-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.contact-card {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 17px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 16px 12px;
    }
    
    .contact-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .contact-card p {
        font-size: 12px;
        margin: 3px 0;
    }
    
    .contact-card small {
        font-size: 10px;
        margin-top: 5px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-card .btn {
        padding: 8px 12px;
        font-size: 11px;
        margin-top: 8px;
    }
}

.contact-card:hover {
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-card p {
    font-size: 14px;
    color: var(--dark-light);
    margin: 5px 0;
}

.contact-card small {
    font-size: 12px;
    color: var(--dark-light);
    display: block;
    margin-top: 8px;
}

.contact-card .btn {
    margin-top: 12px;
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links i {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--light);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive Design */
/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 15px 20px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 58px;
        height: 58px;
    }

    .logo i {
        font-size: 24px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        border-radius: 0;
    }

    .nav-link:hover {
        background: #f8f9fa;
    }

    .auth-buttons {
        position: absolute;
        right: 65px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .auth-buttons .btn {
        display: none;
    }

    .user-menu {
        display: block !important;
        position: static;
    }

    .user-menu-btn {
        padding: 8px 12px;
        min-width: auto;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .user-menu-btn span {
        display: inline-block !important;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 600;
    }
    
    .user-menu-btn i:first-child {
        font-size: 16px;
    }
    
    .user-menu-btn i:last-child {
        display: none;
    }

    .help-btn {
        display: none;
    }

    /* Mobile menu overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

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

    .hero {
        padding: 35px 0 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }

    .btn-large {
        width: 100%;
    }
    
    .share-btn {
        margin-top: 20px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .services {
        padding: 35px 0 30px;
    }

    .filters {
        padding: 15px;
    }

    .filter-content {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .features {
        padding: 35px 0 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .about {
        padding: 35px 0 30px;
    }

    .about-content {
        gap: 20px;
    }

    .about-text {
        gap: 15px;
    }

    .about-card {
        padding: 20px 18px;
    }

    .about-card h3 {
        font-size: 20px;
    }

    .about-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .about-icon i {
        font-size: 24px;
    }

    .values-list {
        gap: 10px;
    }

    .values-list li {
        font-size: 14px;
        gap: 10px;
    }

    .values-list i {
        font-size: 14px;
    }

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

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .contact {
        padding: 35px 0 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        display: block;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        display: inline-block;
        width: 48%;
        vertical-align: top;
        margin-bottom: 20px;
    }

    .footer-section:nth-child(2) {
        margin-right: 4%;
    }

    .footer-links li {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-links i {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .modal-content {
        width: 95%;
        border-radius: 12px;
    }

    .modal-header {
        padding: 16px;
    }

    .modal-header i {
        font-size: 24px;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .modal-body {
        padding: 16px;
    }

    .modal-body p {
        font-size: 14px;
    }

    .notice-list li {
        font-size: 12px;
        padding: 6px 10px;
        gap: 8px;
    }

    .notice-list i {
        font-size: 14px;
    }

    .modal-footer {
        padding: 12px 16px;
    }

    .modal-footer .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .greeting-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    /* Ensure user name is visible on small mobile screens */
    .user-menu-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .user-menu-btn span {
        display: inline-block !important;
        max-width: 100px;
        font-size: 13px;
    }
    
    .auth-buttons {
        right: 55px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 15px;
    }

    .filter-header {
        font-size: 18px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 32px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .about-card {
        padding: 20px 16px;
    }

    .about-card h3 {
        font-size: 18px;
    }

    .about-card p,
    .values-list li {
        font-size: 13px;
    }

    .about-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .about-icon i {
        font-size: 20px;
    }

    .values-list {
        gap: 8px;
    }

    .values-list i {
        font-size: 13px;
    }

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

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 6px;
    }

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

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* Purchase Modal Styles */
.purchase-modal {
    max-width: 600px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: auto;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--dark-light);
}

.form-info {
    background: rgba(102, 126, 234, 0.1);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.form-info i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-info div {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.form-info strong {
    color: var(--dark);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
}

/* Success Modal Styles */
.success-modal {
    max-width: 500px;
    max-height: 85vh;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B894 0%, #00966D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 40px;
    color: var(--white);
}

.success-modal h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.success-modal > p {
    font-size: 15px;
    color: var(--dark-light);
    margin-bottom: 20px;
}

.order-summary {
    background: var(--light-bg);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.order-summary h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: var(--dark-light);
    font-size: 13px;
}

.summary-item strong {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.success-message {
    background: rgba(0, 184, 148, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    align-items: center;
}

.success-message i {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.success-message p {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: var(--dark);
    margin: 0;
    text-align: left;
}

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

/* ========== FAVORITES BUTTON ========== */
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn i {
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.favorite-btn.favorited i {
    color: var(--accent-color);
}

.favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.favorite-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ========== TRANSACTION HISTORY ========== */
.transaction-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.transaction-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.transaction-details div {
    color: var(--dark-light);
}

.transaction-details i {
    color: var(--primary-color);
    margin-right: 8px;
}

.transaction-actions {
    display: flex;
    gap: 10px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.badge-failed {
    background: #f8d7da;
    color: #721c24;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

/* ========== FAQ SECTION ========== */
.faq-search {
    margin-bottom: 20px;
}

.faq-search input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i:first-child {
    color: var(--primary-color);
    margin-right: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 300px;
    padding: 15px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-light);
    line-height: 1.6;
}

/* ========== BUTTON VARIANTS ========== */
.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* ========== USER MENU DROPDOWN ========== */
.user-menu {
    position: relative;
}

.user-menu-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: var(--primary-color);
    color: white;
}

.user-menu-btn i:first-child {
    font-size: 20px;
}

.user-menu-btn i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: #f8f9fa;
    padding-left: 25px;
}

.user-dropdown a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
    
    .transaction-details {
        grid-template-columns: 1fr;
    }
    
    .transaction-actions {
        flex-direction: column;
    }
    
    .favorite-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .favorite-btn i {
        font-size: 16px;
    }
}

/* ========== NEW FEATURES STYLES ========== */

/* Testimonials */
.testimonial-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-top: 5px;
}

.testimonial-comment {
    color: var(--dark-light);
    line-height: 1.6;
    margin: 0;
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0984e3 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
}

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

.dashboard-card i {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.dashboard-value {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.dashboard-label {
    font-size: 14px;
    opacity: 0.9;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 20px;
}

.activity-details {
    flex: 1;
}

.activity-details strong {
    display: block;
    margin-bottom: 5px;
}

.activity-details small {
    color: #999;
    font-size: 12px;
}

/* Network Status */
.network-status-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
}

.network-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-card {
        padding: 20px 15px;
    }
    
    .dashboard-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* Support Ticket Styles */
.tickets-list {
    max-height: 600px;
    overflow-y: auto;
}

.ticket-item {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.ticket-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ticket-item h3 {
    color: var(--text-color);
}

.ticket-item button {
    transition: all 0.2s;
}

.ticket-item button:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Email Verification & 2FA Styles */
.verification-modal input[type="text"],
.verification-modal input[type="tel"] {
    font-family: 'Courier New', monospace;
}

.verification-code-display {
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
}

/* SMS Confirmation Styles */
.sms-preview {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Rating Input Styles */
.rating-input {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.rating-input span {
    transition: all 0.2s;
    color: #ddd;
}

.rating-input span:hover {
    transform: scale(1.2);
    color: #FFD700;
}

/* Mobile-Specific Fixes for Forms and Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-body {
        padding: 20px 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-header {
        padding: 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    /* Prevent zoom on input focus for iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Better touch targets for mobile */
    button,
    .btn,
    .close-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Form groups spacing */
    .form-group {
        margin-bottom: 16px;
    }
    
    /* Fix for position:fixed elements on mobile */
    .modal {
        position: fixed;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .modal-body {
        padding: 15px 10px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 16px;
    }
}

/* Fix Safari iOS input zoom */
@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"] {
        font-size: 16px !important;
    }
}
