/* ========================================
   CONTACT PAGE PREMIUM STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3D2E 0%, #1a5a45 50%, #2C5E4A 100%);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40%;
    animation: wave 15s linear infinite;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation-duration: 15s;
}

.wave-2 {
    top: -30%;
    left: -30%;
    animation-duration: 20s;
    opacity: 0.7;
}

.wave-3 {
    top: -10%;
    left: -10%;
    animation-duration: 25s;
    opacity: 0.5;
}

@keyframes wave {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-contact-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CAF550;
    font-size: 2rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-phone {
    top: 20%;
    left: 10%;
    animation: floatContact 6s ease-in-out infinite;
}

.icon-email {
    top: 60%;
    right: 15%;
    animation: floatContact 7s ease-in-out infinite;
}

.icon-map {
    bottom: 20%;
    left: 15%;
    animation: floatContact 8s ease-in-out infinite;
}

.icon-chat {
    top: 30%;
    right: 20%;
    animation: floatContact 9s ease-in-out infinite;
}

@keyframes floatContact {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.scroll-indicator-custom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
}

.scroll-indicator-custom span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollMouse 2s ease-in-out infinite;
}

@keyframes scrollMouse {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.3;
    }
}

/* Contact Cards Premium */
.contact-cards-premium {
    padding: 100px 0 60px;
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-premium-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(11, 61, 46, 0.1);
}

.contact-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0B3D2E, #C43146, #CAF550);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 2;
}

.contact-premium-card:hover::before {
    transform: translateX(0);
}

.contact-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.2);
}

.contact-premium-card.featured {
    border: 2px solid #CAF550;
    transform: scale(1.05);
}

.contact-premium-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: #CAF550;
    color: #0B3D2E;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(202, 245, 80, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-premium-card:hover .card-glow {
    opacity: 1;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-premium-card:hover .contact-card-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #C43146, #AD6A7A);
}

.contact-card-icon i {
    font-size: 2rem;
    color: #CAF550;
    transition: all 0.3s ease;
}

.contact-premium-card:hover .contact-card-icon i {
    transform: rotateY(180deg);
    color: white;
}

.contact-premium-card h3 {
    font-size: 1.3rem;
    color: #0B3D2E;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail a {
    color: #C43146;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #0B3D2E;
}

.contact-person {
    font-size: 0.95rem;
    color: #0B3D2E;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-person-title {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 15px;
}

.contact-extra {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 5px;
}

.card-availability,
.card-response,
.card-offices,
.card-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    background: rgba(11, 61, 46, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #0B3D2E;
    margin: 15px 0;
}

.card-availability i,
.card-response i,
.card-offices i,
.card-verified i {
    color: #CAF550;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-card-btn:hover {
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    transform: translateX(5px);
    gap: 12px;
}

/* Contact Main Section */
.contact-main-section {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Contact Form Premium */
.contact-form-premium {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.15);
    border: 1px solid rgba(11, 61, 46, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 2rem;
    color: #0B3D2E;
    margin-bottom: 10px;
}

.form-header p {
    color: #718096;
    font-size: 1rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #0B3D2E;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label i {
    color: #C43146;
    font-size: 1rem;
}

.required {
    color: #C43146;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(11, 61, 46, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C43146;
    box-shadow: 0 0 0 5px rgba(196, 49, 70, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B3D2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    padding: 12px;
    background: rgba(11, 61, 46, 0.05);
    border: 2px dashed rgba(11, 61, 46, 0.2);
    cursor: pointer;
}

.file-upload input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.file-upload input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #C43146, #AD6A7A);
}

.file-info {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 5px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background: white;
    border: 2px solid rgba(11, 61, 46, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #C43146;
}

.checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.95rem;
    color: #4a5568;
}

.checkbox-text a {
    color: #C43146;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.form-captcha {
    margin: 10px 0;
}

.btn-submit {
    position: relative;
    padding: 18px 30px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 49, 70, 0.3);
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.loading span,
.btn-submit.loading i {
    opacity: 0;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-response {
    margin-top: 20px;
}

.success-message {
    padding: 15px;
    background: rgba(202, 245, 80, 0.1);
    border: 1px solid #CAF550;
    border-radius: 10px;
    color: #0B3D2E;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    color: #CAF550;
    font-size: 1.2rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.1);
    border: 1px solid rgba(11, 61, 46, 0.1);
    transition: all 0.3s ease;
}

.info-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.15);
}

.info-widget h4 {
    color: #0B3D2E;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-widget h4 i {
    color: #C43146;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-icon {
    width: 45px;
    height: 45px;
    background: rgba(11, 61, 46, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-contact-item:hover .quick-icon {
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    transform: scale(1.1);
}

.quick-contact-item:hover .quick-icon i {
    color: #CAF550;
}

.quick-icon i {
    font-size: 1.2rem;
    color: #C43146;
    transition: all 0.3s ease;
}

.quick-details {
    flex: 1;
}

.quick-details span {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 2px;
}

.quick-details a {
    color: #0B3D2E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.quick-details a:hover {
    color: #C43146;
}

/* Business Hours Widget */
.hours-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.hours-list-modern li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 61, 46, 0.05);
}

.hours-list-modern li:last-child {
    border-bottom: none;
}

.hours-list-modern .day {
    font-weight: 500;
    color: #0B3D2E;
}

.hours-list-modern .time {
    color: #4a5568;
}

.hours-list-modern .time.closed {
    color: #C43146;
    font-weight: 600;
}

.timezone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(11, 61, 46, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.timezone i {
    color: #C43146;
}

/* Emergency Widget */
.emergency-widget {
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    color: white;
}

.emergency-widget h4 {
    color: white;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.emergency-header i {
    color: #CAF550;
    font-size: 1.5rem;
}

.emergency-widget p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.emergency-numbers {
    margin-bottom: 15px;
}

.emergency-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.emergency-response {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

.emergency-response i {
    color: #CAF550;
}

/* Social Widget */
.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-connect {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-connect.linkedin {
    background: #0077b5;
}

.social-connect.twitter {
    background: #1da1f2;
}

.social-connect.facebook {
    background: #4267b2;
}

.social-connect.youtube {
    background: #ff0000;
}

.social-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-connect i {
    font-size: 1.2rem;
}

.social-connect span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Map Section */
.map-section {
    height: 500px;
    position: relative;
}

.map-container-premium {
    position: relative;
    width: 100%;
    height: 100%;
}

.premium-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 350px;
}

.map-location-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(11, 61, 46, 0.1);
}

.map-location-card h3 {
    color: #0B3D2E;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.location-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.location-detail i {
    color: #C43146;
    font-size: 1.2rem;
    margin-top: 3px;
}

.location-detail strong {
    display: block;
    color: #0B3D2E;
    margin-bottom: 5px;
}

.location-detail p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    transform: translateX(5px);
    gap: 15px;
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: white;
}

.faq-premium-grid {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-premium-item {
    border: 1px solid rgba(11, 61, 46, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-premium-item:hover {
    border-color: #C43146;
    box-shadow: 0 10px 30px rgba(196, 49, 70, 0.1);
}

.faq-premium-item.active {
    border-color: #C43146;
    box-shadow: 0 10px 30px rgba(196, 49, 70, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #0B3D2E;
    transition: color 0.3s ease;
}

.faq-premium-item:hover .faq-question h4,
.faq-premium-item.active .faq-question h4 {
    color: #C43146;
}

.faq-question i {
    color: #C43146;
    transition: transform 0.3s ease;
}

.faq-premium-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(11, 61, 46, 0.02);
}

.faq-premium-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #718096;
    line-height: 1.8;
}

/* CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    position: relative;
    overflow: hidden;
}

.cta-premium-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #0B3D2E;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    gap: 30px;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #C43146;
    line-height: 1;
    margin-bottom: 5px;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-premium-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .map-section {
        height: auto;
    }
    
    .map-container-premium {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-premium-card.featured {
        transform: none;
    }
    
    .contact-premium-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-form-premium {
        padding: 30px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .floating-contact-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .social-connect-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container-premium {
        height: 400px;
    }
}
/* Google Maps Styles */
.map-section {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.map-container-premium {
    position: relative;
    width: 100%;
    height: 100%;
}

.google-map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.google-map-container iframe:hover {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 20;
    max-width: 350px;
}

.map-location-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(11, 61, 46, 0.1);
    position: relative;
    overflow: hidden;
}

.map-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0B3D2E, #C43146, #CAF550);
}

.map-location-card h3 {
    color: #0B3D2E;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-location-card h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #C43146, transparent);
}

.location-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(11, 61, 46, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-detail:hover {
    background: rgba(196, 49, 70, 0.05);
    transform: translateX(5px);
}

.location-detail i {
    color: #C43146;
    font-size: 1.2rem;
    margin-top: 3px;
}

.location-detail strong {
    display: block;
    color: #0B3D2E;
    margin-bottom: 5px;
    font-size: 1rem;
}

.location-detail p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.location-directions {
    margin-top: 20px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    transform: translateX(5px);
    gap: 15px;
    box-shadow: 0 10px 20px rgba(196, 49, 70, 0.3);
}

/* Map Markers Decoration */
.map-markers-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.marker-decoration {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: pulseMarker 2s ease-in-out infinite;
}

.marker-decoration.riyadh {
    top: 45%;
    left: 48%;
}

.marker-decoration.jeddah {
    top: 55%;
    left: 32%;
}

.marker-decoration i {
    font-size: 2rem;
    color: #C43146;
    filter: drop-shadow(0 5px 10px rgba(196, 49, 70, 0.5));
}

.marker-decoration span {
    background: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #0B3D2E;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes pulseMarker {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        margin: 20px;
        z-index: 30;
    }
    
    .map-section {
        height: auto;
    }
    
    .google-map-container {
        height: 400px;
    }
    
    .marker-decoration {
        display: none;
    }
}

/* Contact Info Items Styling */
.contact-info-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(4, 168, 107, 0.05) 0%, rgba(202, 245, 80, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #04A86B 0%, #CAF550 100%);
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(4, 168, 107, 0.1) 0%, rgba(202, 245, 80, 0.1) 100%);
    border-color: rgba(4, 168, 107, 0.2);
    box-shadow: 0 10px 30px rgba(4, 168, 107, 0.15);
    transform: translateX(5px);
}

.contact-info-item .info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #04A86B 0%, #038351 100%);
    border-radius: 50%;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(4, 168, 107, 0.3);
}

.contact-info-item:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #CAF550 0%, #038351 100%);
    box-shadow: 0 8px 20px rgba(202, 245, 80, 0.4);
}

.contact-info-item .info-icon i {
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon i {
    color: #0B3D2E;
}

.contact-info-item .info-content {
    flex: 1;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B3D2E;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.contact-info-item .info-text {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.contact-info-item .business-hours {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-item .time {
    color: #04A86B;
    font-weight: 700;
}

.contact-info-item .closed {
    color: #C43146;
    font-weight: 700;
}

.social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(4, 168, 107, 0.1);
}

.social-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B3D2E;
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 20px;
}

.social-link-large {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #04A86B 0%, #038351 100%);
    border-radius: 50%;
    color: white;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(4, 168, 107, 0.3);
}

.social-link-large:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, #CAF550 0%, #04A86B 100%);
    color: #0B3D2E;
    box-shadow: 0 12px 25px rgba(4, 168, 107, 0.4);
}

@media (max-width: 768px) {
    .contact-info-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-item::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
    
    .contact-info-item .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-info-item h4 {
        font-size: 16px;
    }
    
    .contact-info-item .info-text {
        font-size: 14px;
    }
    
    .map-overlay {
        margin: 15px;
    }
    
    .map-location-card {
        padding: 20px;
    }
    
    .google-map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .google-map-container {
        height: 300px;
    }
}

/* ========================================
   Contact.php Design Enhancements
   ======================================== */

.contact-content {
    padding: 95px 0;
    background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.contact-content .contact-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info-section,
.contact-form-section {
    border-radius: 24px;
    padding: 32px 30px;
    border: 1px solid rgba(11, 61, 46, 0.1);
    box-shadow: 0 16px 34px rgba(11, 61, 46, 0.09);
}

.contact-info-section {
    background: linear-gradient(145deg, #ffffff 0%, #f6fbf8 100%);
}

.contact-form-section {
    background: linear-gradient(145deg, #ffffff 0%, #f7faf9 100%);
}

.contact-info-section h2,
.contact-form-section h2 {
    margin: 0 0 10px;
    color: #0B3D2E;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.contact-info-section > p {
    margin-bottom: 20px;
    color: #5f6c7b;
    line-height: 1.75;
}

.contact-form-section .contact-form {
    display: grid;
    gap: 16px;
}

.contact-form-section .form-group label {
    color: #0B3D2E;
    font-weight: 600;
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
    border: 1px solid rgba(11, 61, 46, 0.15);
    background: #ffffff;
    border-radius: 12px;
    padding: 13px 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
    border-color: #04A86B;
    box-shadow: 0 0 0 4px rgba(4, 168, 107, 0.12);
    outline: none;
}

.contact-form-section .btn.btn-primary.btn-large {
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(11, 61, 46, 0.2);
}

.contact-form-section .btn.btn-primary.btn-large:hover {
    transform: translateY(-2px);
}

.departments-section {
    padding: 92px 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.04) 0%, rgba(196, 49, 70, 0.04) 100%);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.department-card {
    background: #ffffff;
    border: 1px solid rgba(11, 61, 46, 0.1);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 10px 22px rgba(11, 61, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.department-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 49, 70, 0.35);
    box-shadow: 0 18px 34px rgba(11, 61, 46, 0.14);
}

.department-card h4 {
    margin: 0 0 8px;
    color: #0B3D2E;
}

.department-card p {
    margin: 0 0 12px;
    color: #5f6c7b;
    line-height: 1.65;
}

.department-card a {
    color: #C43146;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.department-card a:hover {
    color: #0B3D2E;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .contact-content .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .departments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-content,
    .departments-section {
        padding: 72px 0;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact-form-section .form-row {
        grid-template-columns: 1fr;
    }

    .departments-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CLICKABLE LINKS & MAP SECTION
   ========================================= */

/* Clickable Phone & Email Links */
.info-link {
    color: #0B3D2E;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.info-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #04A86B 0%, #0B3D2E 100%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-link:hover {
    color: #04A86B;
}

.info-link:hover::after {
    width: 100%;
}

/* Google Map Section */
/* =========================================
   ENHANCED MAP SECTION STYLING
   ========================================= */

.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 50%, #fffbf0 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(11, 61, 46, 0.08);
    border-bottom: 2px solid rgba(11, 61, 46, 0.08);
}

/* Animated background elements */
.map-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(4, 168, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    animation: float-slow 20s ease-in-out infinite;
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 77, 62, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.map-section .section-title {
    margin-bottom: 60px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #0B3D2E;
    font-weight: 900;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #0b3d2e 0%, #1a4d3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-align: center;
}

.map-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04A86B 0%, #0B3D2E 50%, transparent 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.map-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.map-wrapper {
    border-radius: 20px;
    overflow: visible;
    position: relative;
    group: "map";
}

/* Premium shadow layers for depth */
.map-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, rgba(4, 168, 107, 0.1) 0%, rgba(11, 61, 46, 0.08) 100%);
    border-radius: 25px;
    z-index: -1;
    filter: blur(15px);
    transition: all 0.5s ease;
}

.map-wrapper:hover::before {
    inset: -20px;
    filter: blur(25px);
}

.map-wrapper {
    box-shadow: 
        0 0 0 1px rgba(11, 61, 46, 0.1),
        0 10px 30px rgba(11, 61, 46, 0.1),
        0 20px 50px rgba(11, 61, 46, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
}

.map-wrapper:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 1px rgba(4, 168, 107, 0.2),
        0 20px 50px rgba(11, 61, 46, 0.2),
        0 30px 80px rgba(4, 168, 107, 0.15);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 550px;
    border-radius: 16px;
    border: none;
    filter: brightness(0.98) contrast(1.02) saturate(1.05);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

/* Map Info Badge */
.map-info-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slide-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-info-badge i {
    color: #04A86B;
    font-size: 1.2rem;
}

.map-info-badge span {
    color: #0B3D2E;
    font-weight: 700;
    font-size: 0.9rem;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Map Features Grid Below Map */
.map-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.map-feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #04A86B;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.map-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 168, 107, 0.15);
    border-left-color: #0B3D2E;
}

.map-feature-card i {
    font-size: 1.8rem;
    color: #04A86B;
    margin-bottom: 12px;
}

.map-feature-card h4 {
    font-size: 1.15rem;
    color: #0B3D2E;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.map-feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .map-section {
        padding: 80px 0;
    }

    .map-section .section-title {
        margin-bottom: 40px;
    }

    .map-wrapper iframe {
        height: 450px;
    }

    .map-info-badge {
        top: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }

    .map-section::before {
        width: 300px;
        height: 300px;
        top: -30%;
        right: 0;
    }

    .map-section::after {
        width: 400px;
        height: 400px;
        bottom: -20%;
        left: -10%;
    }

    .map-section .section-title {
        margin-bottom: 30px;
        font-size: 1.8rem;
    }

    .map-wrapper {
        border-radius: 16px;
    }

    .map-wrapper iframe {
        height: 400px;
        border-radius: 12px;
    }

    .map-info-badge {
        top: 12px;
        right: 12px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .map-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 35px;
    }

    .map-feature-card {
        padding: 20px;
    }

    .map-feature-card i {
        font-size: 1.5rem;
    }

    .map-feature-card h4 {
        font-size: 1rem;
    }

    .map-feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .map-wrapper::before {
        inset: -10px;
    }

    .map-wrapper:hover::before {
        inset: -15px;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .map-info-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .map-info-badge i {
        font-size: 1rem;
    }

    .map-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .map-feature-card {
        padding: 16px;
        border-left-width: 3px;
    }

    .map-feature-card i {
        font-size: 1.3rem;
    }

    .map-feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .map-feature-card p {
        font-size: 0.85rem;
    }
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7f4 0%, #fff9f0 100%);
}

.whatsapp-container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(4, 168, 107, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(4, 168, 107, 0.15);
    border-color: rgba(4, 168, 107, 0.3);
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #04A86B 0%, #06d55c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(4, 168, 107, 0.3);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(4, 168, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(4, 168, 107, 0.5);
    }
}

.whatsapp-content h3 {
    font-size: 2rem;
    color: #0B3D2E;
    font-weight: 800;
    margin: 0;
}

.whatsapp-content p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #04A86B 0%, #06d55c 100%);
    color: white !important;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(4, 168, 107, 0.3);
    cursor: pointer;
    margin-top: 15px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(4, 168, 107, 0.5);
    background: linear-gradient(135deg, #06d55c 0%, #04A86B 100%);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }

    .map-section .section-title {
        margin-bottom: 30px;
    }

    .map-wrapper {
        height: 400px;
        border-radius: 12px;
    }

    .map-wrapper iframe {
        height: 100%;
    }

    .whatsapp-section {
        padding: 60px 0;
    }

    .whatsapp-container {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .whatsapp-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .whatsapp-content h3 {
        font-size: 1.6rem;
    }

    .whatsapp-content p {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}
