:root {
    --primary: #0A2540;
    --accent: #00C8E0;
    --accent-dark: #008C99;
    --accent-hover: #116DFF;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #7A7A7A;
    --highlight: #FFD700;
    --light-bg: #F8F9FA;
    --border: #E9ECEF;
    --quote-bg: #F0F7FA;
    --success: #28a745;
    --danger: #dc3545;
}

.btn-primary {
    background-color: var(--accent-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 200, 224, 0.3) 0%, rgba(10, 37, 64, 0.3) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-form-container {
    width: 48%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-form-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: vazirFont, Tahoma, Arial, sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
}

.contact-info-container {
    background-color: var(--primary);
    width: 48%;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-text {
    flex-grow: 1;
}

.contact-info-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-text p {
    margin: 0;
    opacity: 0.8;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.map-container svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quick Contact */
.quick-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
}

.quick-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Form Success/Error Message */
.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

