* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.6;
}

.adira-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.adira-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #007BFF;
    white-space: nowrap;
}

.adira-nav ul {
    display: flex;
    list-style: none;
}

.adira-nav li {
    margin-left: 30px;
}

.adira-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.adira-nav a:hover,
.adira-nav a.active {
    color: #007BFF;
}

.adira-hero-customer {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.adira-hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

.adira-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.adira-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.adira-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-height: 500px;
    min-width: 100%;
    background-color: #f0f0f0;
}

.adira-hero-customer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 123, 255, 0.6), rgba(0, 180, 200, 0.6));
    z-index: 1;
}

.adira-section {
    padding: 80px 5%;
    position: relative;
}

.adira-container {
    max-width: 1200px;
    margin: 0 auto;
}

.adira-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #007BFF;
}

.adira-online-support {
    background-color: #fff;
}

.adira-support-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adira-support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.adira-channel-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.adira-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #007BFF;
}

.adira-channel-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #007BFF 0%, #00B4C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.adira-channel-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.adira-channel-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.adira-channel-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.adira-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.adira-status-indicator.adira-online {
    background-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
}

.adira-status-indicator.adira-available {
    background-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
}

.adira-channel-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.adira-channel-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.adira-whatsapp .adira-channel-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.adira-whatsapp .adira-channel-btn {
    background-color: #25D366;
}

.adira-whatsapp .adira-channel-btn:hover {
    background-color: #128C7E;
}

.adira-email .adira-channel-icon {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
}

.adira-email .adira-channel-btn {
    background-color: #FF6F00;
}

.adira-email .adira-channel-btn:hover {
    background-color: #e65c00;
}

.adira-phone .adira-channel-icon {
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
}

.adira-phone .adira-channel-btn {
    background-color: #6C5CE7;
}

.adira-phone .adira-channel-btn:hover {
    background-color: #5f3dc4;
}

.adira-faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.adira-faq-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adira-faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.adira-faq-category {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.adira-faq-category h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #007BFF;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.adira-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.adira-faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.adira-faq-item:hover {
    border-color: #007BFF;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.adira-faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.adira-faq-question:hover {
    background-color: #e9ecef;
}

.adira-faq-question h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.adira-faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #007BFF;
    transition: transform 0.3s ease;
}

.adira-faq-item.active .adira-faq-toggle {
    transform: rotate(45deg);
}

.adira-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.adira-faq-item.active .adira-faq-answer {
    padding: 20px;
    max-height: 200px;
}

.adira-faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}



.adira-feedback {
    background: linear-gradient(135deg, #f7f9fc 0%, #e6f2ff 100%);
}

.adira-feedback-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adira-feedback-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.adira-feedback-form {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.adira-feedback-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007BFF;
    font-weight: 600;
}

.adira-form-group {
    margin-bottom: 25px;
}

.adira-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.adira-form-group input,
.adira-form-group select,
.adira-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.adira-form-group input:focus,
.adira-form-group select:focus,
.adira-form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.adira-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.adira-submit-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.adira-submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.adira-feedback-info {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    height: fit-content;
}

.adira-feedback-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007BFF;
    font-weight: 600;
}

.adira-feedback-points {
    margin-bottom: 40px;
}

.adira-feedback-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.adira-point-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007BFF 0%, #00B4C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}

.adira-point-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.adira-point-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.adira-alternative-contact {
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.adira-alternative-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.adira-alternative-contact p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.adira-alternative-contact ul {
    list-style: none;
    padding: 0;
}

.adira-alternative-contact li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.adira-alternative-contact li::before {
    content: '•';
    color: #007BFF;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.adira-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    padding: 60px 5% 20px;
    position: relative;
}

.adira-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007BFF 0%, #00B4C8 50%, #FF6F00 100%);
}

.adira-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.adira-footer-col h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.adira-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007BFF, #00B4C8);
    border-radius: 2px;
}

.adira-footer-col ul {
    list-style: none;
    padding: 0;
}

.adira-footer-col li {
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.adira-footer-col li:hover {
    transform: translateX(5px);
}

.adira-footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.adira-footer-col a:hover {
    color: #007BFF;
}

.adira-footer-col p {
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 15px;
}

.adira-footer-col:first-child p {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 300;
}

.adira-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 15px;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .adira-hero-content h1 {
        font-size: 32px;
    }

    .adira-hero-content p {
        font-size: 16px;
    }

    .adira-section h2 {
        font-size: 28px;
    }

    .adira-support-channels {
        grid-template-columns: 1fr;
    }

    .adira-faq-categories {
        grid-template-columns: 1fr;
    }



    .adira-feedback-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .adira-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .adira-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}