:root {
    --red-apple-red: #2d2d2d; /* Aapka original color */
    --text-dark: #1f1f1f;
    --text-light: #555;
    --bg-light: #f4f4f4;
}



.contact-page {
    padding: 50px 5% 40px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 50px;
    border-bottom: 2px solid var(--red-apple-red);
    padding-bottom: 20px;
}

.contact-header h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-section h2 {
    font-size: 1.5rem;
    color: var(--red-apple-red);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.full-width {
    grid-column: 1 / -1;
}

.address-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--red-apple-red);
    text-decoration: none;
    font-weight: bold;
}

/* Links & Buttons */
.btn-text {
    display: inline-block;
    margin-top: 10px;
    color: var(--red-apple-red);
    text-decoration: none;
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

.contact-links {
    list-style: none;
    padding: 0;
}

.contact-links li a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: 0.3s;
}

.contact-links li a:hover {
    color: var(--red-apple-red);
    padding-left: 5px;
}

/* Footer Section */
.other-enquiries {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-primary {
    display: inline-block;
    background: var(--red-apple-red);
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2baaa9;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header h1 { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}


/* Modal Background */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

/* Form Inputs */
.input-group { margin-bottom: 15px; }
.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: var(--red-apple-red);
    outline: none;
}