* {
    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-contact {
    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-contact::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-contact-info {
    background-color: #fff;
}

.adira-contact-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adira-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.adira-contact-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    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;
    text-align: center;
}

.adira-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #007BFF;
}

.adira-contact-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-contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.adira-contact-details {
    text-align: left;
}

.adira-contact-details p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.adira-contact-details strong {
    color: #333;
    font-weight: 600;
}

.adira-phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 15px;
}

.adira-email-address {
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 15px;
}

.adira-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.adira-contact-btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.adira-call-btn {
    background-color: #007BFF;
    color: #fff;
}

.adira-call-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.adira-whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.adira-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.adira-email-btn {
    background-color: #FF6F00;
    color: #fff;
}

.adira-email-btn:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

.adira-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.adira-social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.adira-social-link:hover {
    background-color: #007BFF;
    color: #fff;
    transform: translateX(5px);
}

.adira-social-icon {
    font-size: 18px;
    margin-right: 10px;
}

.adira-online-consultation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.adira-consultation-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adira-consultation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.adira-consultation-form {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.adira-consultation-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007BFF;
    font-weight: 600;
}

.adira-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.adira-form-group {
    margin-bottom: 20px;
}

.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-checkbox-group {
    margin-bottom: 30px;
}

.adira-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.adira-checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 2px;
}

.adira-checkbox-text {
    color: #666;
}

.adira-checkbox-text a {
    color: #007BFF;
    text-decoration: none;
}

.adira-checkbox-text a:hover {
    text-decoration: underline;
}

.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-consultation-info {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    height: fit-content;
}

.adira-consultation-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007BFF;
    font-weight: 600;
}

.adira-consultation-benefits {
    margin-bottom: 40px;
}

.adira-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.adira-benefit-icon {
    width: 60px;
    height: 60px;
    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-benefit-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.adira-benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.adira-consultation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

.adira-stat-item {
    text-align: center;
}

.adira-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 5px;
}

.adira-stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.adira-branch-map {
    background-color: #fff;
}

.adira-branch-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.adira-branch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.adira-map-container {
    background-color: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    position: relative;
}

.adira-map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adira-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.adira-map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.adira-map-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #007BFF;
    font-weight: 600;
}

.adira-map-overlay p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.adira-branch-list h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007BFF;
    font-weight: 600;
}

.adira-branch-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.adira-branch-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.adira-branch-item:hover {
    border-color: #007BFF;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.adira-branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.adira-branch-header h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.adira-branch-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.adira-main-branch {
    background-color: #007BFF;
    color: #fff;
}

.adira-branch-office {
    background-color: #28a745;
    color: #fff;
}

.adira-branch-details p {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.adira-branch-details strong {
    color: #333;
    font-weight: 600;
}

.adira-branch-note {
    background-color: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.adira-branch-note p {
    margin: 0;
    color: #004085;
    font-size: 14px;
}

.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-contact-grid {
        grid-template-columns: 1fr;
    }

    .adira-consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .adira-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .adira-consultation-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .adira-branch-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .adira-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .adira-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .adira-contact-buttons {
        flex-direction: column;
    }
}