/* ===== CONTACT PAGE STYLES (extracted from Blade) ===== */

/* Math Question Styles */
.math-question {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.math-question span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    min-width: 80px;
}

.math-question input {
    max-width: 100px;
    text-align: center;
    font-weight: 600;
}

.math-question input:focus {
    border-color: #68b6e3;
    box-shadow: 0 0 0 0.2rem rgba(104, 182, 227, 0.25);
}

/* Horizontal Layout for Contact Info */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    margin-bottom: 0 !important;
}

/* Horizontal Contact Info Layout */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 3px solid #4e92b7;
    transition: all 0.3s ease;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    position: relative;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #275c75;
    border-width: 4px;
}

.contact-info-item .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e92b7, #68b6e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-info-item h5 {
    color: #163b4a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info-item p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info-item a {
    color: #4e92b7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #275c75;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.facebook-btn {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram-btn {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Phone Numbers Styling */
.phone-numbers {
    margin-top: 0.5rem;
}

.phone-link {
    display: block;
    color: #4e92b7;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #275c75;
}

.primary-phone {
    font-weight: 600;
    font-size: 1.1rem;
}

.secondary-phone {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Email Link Styling */
.email-link {
    color: #4e92b7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #275c75;
}

/* Info Action Link */
.info-action-link {
    color: #4e92b7;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-action-link:hover {
    color: #275c75;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .social-buttons {
        gap: 0.75rem;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Working hours tablet */
    .working-hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .working-hours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid #e5e7eb;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Quick Contact Card 1 - Red Theme */
.quick-contact-card:nth-child(1) {
    border-color: #ef4444;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.quick-contact-card:nth-child(1):hover {
    border-color: #dc2626;
    border-width: 4px;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.quick-contact-card:nth-child(1) .quick-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Quick Contact Card 2 - Green Theme */
.quick-contact-card:nth-child(2) {
    border-color: #10b981;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.quick-contact-card:nth-child(2):hover {
    border-color: #059669;
    border-width: 4px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.quick-contact-card:nth-child(2) .quick-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Quick Contact Card 3 - Orange Theme */
.quick-contact-card:nth-child(3) {
    border-color: #f97316;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.quick-contact-card:nth-child(3):hover {
    border-color: #ea580c;
    border-width: 4px;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.quick-contact-card:nth-child(3) .quick-icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Quick Contact Card 4 - Indigo Theme */
.quick-contact-card:nth-child(4) {
    border-color: #6366f1;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.quick-contact-card:nth-child(4):hover {
    border-color: #4f46e5;
    border-width: 4px;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.quick-contact-card:nth-child(4) .quick-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #163b4a, #4e92b7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-contact-card:hover::before {
    transform: scaleX(1);
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quick-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #163b4a, #4e92b7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(22, 59, 74, 0.3);
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(22, 59, 74, 0.4);
}

.quick-icon i {
    color: white;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.quick-contact-card:hover .quick-icon i {
    transform: scale(1.1);
}

.quick-contact-card h5 {
    color: #163b4a;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: #6c757d;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn-quick-contact {
    background: linear-gradient(135deg, #163b4a, #4e92b7);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.btn-quick-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 59, 74, 0.3);
    color: white;
    background: linear-gradient(135deg, #4e92b7, #68b6e3);
}

/* Modern Contact Card - Blue Theme */
.modern-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.modern-contact-card:hover::before {
    transform: scaleX(1);
}

.modern-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
    border-color: #1d4ed8;
}

/* Modern Info Items */
.modern-info-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #163b4a, #4e92b7);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-info-item:hover::before {
    transform: scaleY(1);
}

.modern-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #4e92b7;
}

.modern-info-item .info-icon {
    background: linear-gradient(135deg, #163b4a, #4e92b7);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(22, 59, 74, 0.2);
    transition: all 0.3s ease;
}

.modern-info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(22, 59, 74, 0.3);
}

.modern-info-item .info-icon i {
    color: white;
    font-size: 1.5rem;
}

.modern-info-item h6 {
    color: #163b4a;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.modern-info-item p {
    color: #64748b;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Action Links */
.info-action-link {
    color: #4e92b7;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(78, 146, 183, 0.1);
}

.info-action-link:hover {
    color: #163b4a;
    background: rgba(78, 146, 183, 0.2);
    transform: translateX(3px);
}

/* Phone Numbers */
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phone-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.phone-link.primary-phone {
    background: linear-gradient(135deg, #163b4a, #4e92b7);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 59, 74, 0.2);
}

.phone-link.primary-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 59, 74, 0.3);
    color: white;
}

.phone-link.secondary-phone {
    background: rgba(78, 146, 183, 0.1);
    color: #4e92b7;
    border-color: rgba(78, 146, 183, 0.2);
}

.phone-link.secondary-phone:hover {
    background: rgba(78, 146, 183, 0.2);
    color: #163b4a;
    transform: translateY(-2px);
}

/* Email Link */
.email-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(78, 146, 183, 0.1);
    color: #4e92b7;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 146, 183, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    min-width: 0;
    flex: 1;
}

.email-link:hover {
    background: rgba(78, 146, 183, 0.2);
    color: #163b4a;
    transform: translateY(-2px);
}

.email-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    flex: 1;
    min-width: 0;
}

/* Modern Working Hours */
.working-hours-modern {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(78, 146, 183, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(78, 146, 183, 0.1);
    transition: all 0.3s ease;
}

.working-day:hover {
    background: rgba(78, 146, 183, 0.1);
    transform: translateX(3px);
}

.working-day.closed {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.working-day .day {
    font-weight: 600;
    font-size: 1.2rem;
    color: #163b4a;
}

.working-day .time {
    font-weight: 500;
    font-size: 1.2rem;
    color: #4e92b7;
}

.working-day.closed .day,
.working-day.closed .time {
    color: #dc2626;
}

.lunch-break {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    color: #d97706;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Social Quick Access */
.social-quick-access {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.social-quick-access h6 {
    color: #163b4a;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-btn.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
}

.social-btn.facebook-btn:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
    color: white;
}

.social-btn.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #F06292);
    color: white;
}

.social-btn.instagram-btn:hover {
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
    color: white;
}

.social-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #4CAF50);
    color: white;
}

.social-btn.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
}


/* Working Hours Card */
.working-hours-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 3px solid #4e92b7;
    position: relative;
    overflow: hidden;
}

.working-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #163b4a, #4e92b7, #68b6e3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.working-hours-card:hover::before {
    transform: scaleX(1);
}

.working-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: #275c75;
    border-width: 4px;
}

.working-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.working-day-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid #10b981;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.working-day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.working-day-card:hover::before {
    transform: scaleX(1);
}

.working-day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #059669;
    border-width: 4px;
}

.working-day-card.closed {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border-color: #ef4444;
    border-width: 3px;
}

.working-day-card.closed::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.working-day-card.closed:hover {
    border-color: #dc2626;
    border-width: 4px;
}

.day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.day-header i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.working-day-card.closed .day-header i {
    color: #ef4444;
}

.day-header h5 {
    color: #163b4a;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
}

.time-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.time {
    font-size: 1.6rem;
    font-weight: 700;
    color: #163b4a;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.open {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.status.closed {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.lunch-break-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    border: 2px solid #f59e0b;
    margin-bottom: 2rem;
}

.lunch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.lunch-icon i {
    color: white;
    font-size: 1.8rem;
}

.lunch-text h6 {
    color: #92400e;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.lunch-text p {
    color: #92400e;
    font-size: 1.2rem;
    margin: 0;
}

.emergency-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 15px;
    border: 2px solid #fecaca;
}

.emergency-notice i {
    color: #dc2626;
    font-size: 1.5rem;
}

.emergency-notice p {
    color: #991b1b;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.emergency-notice strong {
    color: #dc2626;
    font-weight: 700;
}

/* Typography overrides */
.about-hero-section .hero-title {
    font-size: 4.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
}

.about-hero-section .hero-subtitle {
    font-size: 1.8rem !important;
    line-height: 1.8 !important;
    max-width: 800px !important;
    margin: 0 auto 2rem !important;
    opacity: 0.95 !important;
}

.about-hero-section .breadcrumb-wrapper .breadcrumb { font-size: 1.1rem !important; }
.about-hero-section .breadcrumb-wrapper .breadcrumb-item a { font-size: 1.1rem !important; font-weight: 500 !important; }
.about-hero-section .breadcrumb-wrapper .breadcrumb-item.active { font-size: 1.1rem !important; font-weight: 600 !important; }

/* Hero background overrides */
body .about-hero-section,
.about-hero-section.hero-contact,
body .about-hero-section.hero-contact,
.hero-contact .hero-background {
    background-image: url('/default/img/header-hero/iletisim.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Colors */
.contact-primary-color { color: #163b4a !important; }
.contact-secondary-color { color: #4e92b7 !important; }
.contact-accent-color { color: #68b6e3 !important; }
.contact-bg-primary { background: #163b4a !important; }
.contact-bg-secondary { background: #4e92b7 !important; }
.contact-bg-light { background: #F8F9F5 !important; }

/* Buttons */
.btn-contact-primary { background: #163b4a; border: none; color: white; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; }
.btn-contact-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(22, 59, 74, 0.3); color: white; background: #4e92b7; }
.btn-contact-secondary { background: #4e92b7; border: none; color: white; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; }
.btn-contact-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(106, 127, 46, 0.3); color: white; background: #68b6e3; }
.btn-contact-light { background: #fff; border: none; color: #163b4a; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; }
.btn-contact-light:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); color: #163b4a; background: #f8f9fa; }
.btn-outline-contact-light { background: transparent; border: 2px solid #fff; color: #fff; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; }
.btn-outline-contact-light:hover { background: #fff; color: #163b4a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); }

/* Cards */
.contact-info-card { background: white; border-radius: 30px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.3s ease; border: 1px solid #E5E7EB; height: 100%; position: relative; overflow: hidden; }
.contact-info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #4e92b7 !important; transform: scaleX(0); transition: transform 0.3s ease; }
.contact-info-card:hover::before { transform: scaleX(1); }
.contact-info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(106,127,46,0.12); border-color: #4e92b7; }
.contact-info-card .card-header-section { display: flex; align-items: center; margin-bottom: 2rem; position: relative; }
.contact-info-card .card-icon-wrapper { width: 60px; height: 60px; border-radius: 50%; background: #4e92b7 !important; display: flex; align-items: center; justify-content: center; margin-right: 1.5rem; flex-shrink: 0; position: relative; box-shadow: 0 4px 15px rgba(106,127,46,0.2) !important; }
.contact-info-card .card-icon-wrapper::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: #4e92b7; border-radius: 50%; z-index: -1; opacity: 0; transition: opacity 0.3s ease; }
.contact-info-card:hover .card-icon-wrapper::before { opacity: 1; }
.contact-info-card .card-icon-wrapper i { color: white; font-size: 2rem; transition: transform 0.3s ease; }
.contact-info-card:hover .card-icon-wrapper i { transform: scale(1.1) rotate(5deg); }
.contact-info-card .card-title { font-size: 1.6rem; font-weight: 700; color: #374151; margin: 0; position: relative; }
.contact-info-card .card-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: #4e92b7; border-radius: 1px; transform: scaleX(0); transition: transform 0.3s ease; }
.contact-info-card:hover .card-title::after { transform: scaleX(1); }
.contact-info-card .card-content { color: #555; line-height: 1.7; font-size: 1.05rem; }
.contact-info-card .card-description { margin-bottom: 1.5rem; color: #666; font-size: 1.3rem; }
.contact-info-card .card-description a { color: #4e92b7; text-decoration: none; transition: color 0.3s ease; }
.contact-info-card .card-description a:hover { color: #163b4a; text-decoration: underline; }

/* Section header */
.section-header .section-icon-wrapper { display: flex; justify-content: center; }
.section-header .section-icon { width: 70px; height: 70px; border-radius: 50%; background: #163b4a; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(22,59,74,0.2); position: relative; }
.section-header .section-icon::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; background: #163b4a; border-radius: 50%; z-index: -1; opacity: 0.2; }
.section-header .section-icon i { color: white; font-size: 2rem; transition: transform 0.3s ease; }
.section-header:hover .section-icon i { transform: scale(1.1); }
.section-header .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; position: relative; }
.section-header .section-description { font-size: 1.6rem; color: #6c757d; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.section-header .section-divider { width: 80px; height: 3px; background: linear-gradient(90deg, #163b4a, #4e92b7); margin: 2rem auto 0; border-radius: 2px; }

/* Form */
.contact-form-wrapper { 
    background: white; 
    border-radius: 20px; 
    padding: 3rem; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border: 3px solid #4e92b7; 
    transition: all 0.3s ease;
    position: relative;
}

.contact-form-wrapper:hover {
    border-color: #275c75;
    border-width: 4px;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form .form-group label { color: #374151; font-weight: 600; margin-bottom: 0.5rem; display: block; font-size: 1.6rem; }
.contact-form .form-control, .contact-form .form-select { border: 2px solid #E5E7EB; border-radius: 12px; padding: 0.875rem 1rem; font-size: 1.6rem; transition: all 0.3s ease; background: #f9fafb; }
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: #4e92b7; box-shadow: 0 0 0 0.2rem rgba(106,127,46,0.15); outline: none; background: white; }
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { 
    background: white; 
    border-radius: 20px; 
    padding: 2rem; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
    border: 3px solid #6366f1; 
    transition: all 0.3s ease;
    position: relative;
}
.sidebar-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); 
    border-color: #4f46e5;
    border-width: 4px;
}
.sidebar-card .card-header-section { display: flex; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid #f0f0f0; }
.sidebar-card .card-icon-wrapper { width: 50px; height: 50px; border-radius: 50%; background: #4e92b7; display: flex; align-items: center; justify-content: center; margin-right: 1rem; flex-shrink: 0; }
.sidebar-card .card-icon-wrapper i { color: white; font-size: 1.5rem; }
.sidebar-card h4 { color: #374151; font-weight: 600; margin: 0; font-size: 1.6rem; }

/* Location */
.location-wrapper { 
    background: white; 
    border-radius: 20px; 
    padding: 3rem; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border: 3px solid #10b981; 
    text-align: center; 
    transition: all 0.3s ease;
    position: relative;
}

.location-wrapper:hover {
    border-color: #059669;
    border-width: 4px;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
.location-icon { font-size: 4rem; color: #4e92b7; margin-bottom: 1.5rem; }
.location-content h4 { color: #163b4a; font-weight: 700; margin-bottom: 1rem; font-size: 2rem; }
.location-content .address { color: #6c757d; font-size: 1.3rem; margin-bottom: 2rem; line-height: 1.6; }
.map-container { 
    margin: 2rem 0; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border: 3px solid #10b981; 
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: #059669;
    border-width: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.osm-map { display: block; border-radius: 15px; transition: all 0.3s ease; }
.osm-map:hover { transform: scale(1.02); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.location-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.location-info { 
    background: white; 
    border-radius: 20px; 
    padding: 2rem; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border: 3px solid #f97316; 
    transition: all 0.3s ease;
    position: relative;
}

.location-info:hover {
    border-color: #ea580c;
    border-width: 4px;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* CTA */
.cta-content { color: white; text-align: center; }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: white; }
.cta-content p { font-size: 1.6rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 992px) {
    .about-hero-section .hero-title { font-size: 3.5rem !important; }
    .about-hero-section .hero-subtitle { font-size: 1.4rem !important; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; }
    .location-actions { flex-direction: column; align-items: center; }
    .location-actions .btn { width: 100%; max-width: 250px; }
    
    /* Quick contact cards responsive */
    .quick-contact-card { padding: 2rem 1.5rem; }
    .quick-icon { width: 70px; height: 70px; }
    .quick-icon i { font-size: 2rem; }
    .quick-contact-card h5 { font-size: 1.6rem; }
    .quick-contact-card p { font-size: 1.2rem; }
    .btn-quick-contact { font-size: 1.2rem; padding: 0.7rem 1.2rem; }
}

@media (max-width: 768px) {
    .about-hero-section .hero-title { font-size: 2.8rem !important; }
    .about-hero-section .hero-subtitle { font-size: 1.2rem !important; }
    .section-header .section-title { font-size: 2rem; }
    .contact-form-wrapper, .location-wrapper { padding: 2rem; }
    .map-container { margin: 1.5rem 0; }
    .osm-map { height: 300px; }
    
    /* Quick contact cards mobile */
    .quick-contact-card { padding: 1.5rem 1rem; }
    .quick-icon { width: 60px; height: 60px; }
    .quick-icon i { font-size: 1.8rem; }
    .quick-contact-card h5 { font-size: 1.4rem; }
    .quick-contact-card p { font-size: 1.1rem; }
    .btn-quick-contact { font-size: 1.1rem; padding: 0.6rem 1rem; }
    
    /* Modern contact card mobile */
    .modern-info-item { padding: 1.2rem; }
    .modern-info-item .info-icon { width: 45px; height: 45px; }
    .modern-info-item .info-icon i { font-size: 1.3rem; }
    .modern-info-item h6 { font-size: 1.2rem; }
    .modern-info-item p { font-size: 1.1rem; }
    .phone-link, .email-link { 
        font-size: 1.1rem; 
        padding: 0.6rem 0.8rem; 
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    .working-day .day, .working-day .time { font-size: 1.1rem; }
    .social-btn { width: 45px; height: 45px; font-size: 1.3rem; }
    
    
    /* Working hours mobile */
    .working-hours-card { padding: 2rem; }
    .working-hours-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .working-day-card { padding: 1.5rem; }
    .day-header i { font-size: 2rem; }
    .day-header h5 { font-size: 1.2rem; }
    .time { font-size: 1.4rem; }
    .lunch-break-info { flex-direction: column; text-align: center; gap: 1rem; }
    .emergency-notice { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .about-hero-section .hero-title { font-size: 2.2rem !important; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; margin: 0.5rem 0 !important; }
    .contact-info-card { padding: 1.5rem; }
    .contact-form-wrapper, .location-wrapper { padding: 1.5rem; }
    .map-container { margin: 1rem 0; }
    .osm-map { height: 250px; }
    .location-actions { flex-direction: column; align-items: center; }
    .location-actions .btn { width: 100%; max-width: 250px; margin: 0.5rem 0; }
    
    /* Quick contact cards small mobile */
    .quick-contact-card { padding: 1.2rem 0.8rem; }
    .quick-icon { width: 50px; height: 50px; }
    .quick-icon i { font-size: 1.5rem; }
    .quick-contact-card h5 { font-size: 1.2rem; }
    .quick-contact-card p { font-size: 1rem; margin-bottom: 1.5rem; }
    .btn-quick-contact { font-size: 1rem; padding: 0.5rem 0.8rem; }
    
    /* Modern contact card small mobile */
    .modern-info-item { padding: 1rem; margin-bottom: 1rem; }
    .modern-info-item .info-icon { width: 40px; height: 40px; }
    .modern-info-item .info-icon i { font-size: 1.2rem; }
    .modern-info-item h6 { font-size: 1.1rem; }
    .modern-info-item p { font-size: 1rem; }
    .phone-link, .email-link { 
        font-size: 1rem; 
        padding: 0.5rem 0.7rem; 
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    .working-day .day, .working-day .time { font-size: 1rem; }
    .social-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .social-buttons { gap: 0.8rem; }
    
    
    /* Working hours small mobile */
    .working-hours-card { padding: 1.5rem; }
    .working-day-card { padding: 1.2rem; }
    .day-header i { font-size: 1.8rem; }
    .day-header h5 { font-size: 1.1rem; }
    .time { font-size: 1.2rem; }
    .status { font-size: 1rem; padding: 0.4rem 0.8rem; }
    .lunch-text h6 { font-size: 1.2rem; }
    .lunch-text p { font-size: 1rem; }
    .emergency-notice p { font-size: 1.1rem; }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.contact-info-card, .contact-form-wrapper, .sidebar-card, .location-wrapper { animation: fadeInUp 0.6s ease-out; }
.quick-contact-card { animation: slideInLeft 0.6s ease-out; }
.quick-contact-card:nth-child(1) { animation-delay: 0.1s; }
.quick-contact-card:nth-child(2) { animation-delay: 0.2s; }
.quick-contact-card:nth-child(3) { animation-delay: 0.3s; }
.quick-contact-card:nth-child(4) { animation-delay: 0.4s; }
.contact-form-wrapper { animation-delay: 0.5s; }
.sidebar-card:nth-child(1) { animation-delay: 0.6s; }
.sidebar-card:nth-child(2) { animation-delay: 0.7s; }
.sidebar-card:nth-child(3) { animation-delay: 0.8s; }
.location-wrapper { animation-delay: 0.9s; }

/* Emergency card pulse animation */
.emergency-card .btn-emergency {
    animation: pulse 2s infinite;
}

/* Hover animations */
.quick-contact-card:hover {
    animation: none;
}

.social-link:hover {
    animation: none;
}


