/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    padding: 0 10px;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    animation: expandWidth 0.6s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 40px; }
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.9;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
    padding-left: 25px;
    opacity: 1;
}

.footer-section ul li a:hover::before {
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.footer-contact-info i {
    color: #ffd700;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.footer-contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffd700;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-links a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-social-links a[href*="wa.me"] {
    background: rgba(37, 211, 102, 0.2);
}

.footer-social-links a[href*="wa.me"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-social-links a[href*="wa.me"]:hover::before {
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #ffd700;
    opacity: 1;
}

.footer-cta-buttons {
    display: none;
}

.footer-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-cta-buttons .btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    position: relative;
    overflow: hidden;
}

.footer-cta-buttons .btn.whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-cta-buttons .btn.whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
}

.footer-cta-buttons .btn.phone {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.footer-cta-buttons .btn.phone:hover {
    background: linear-gradient(45deg, #0056b3, #007bff);
}

.schema-info {
    display: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-section {
        text-align: center;
        padding: 0 10px;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li a {
        padding-left: 0;
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-contact-info {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 25px 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-cta-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    footer {
        background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .footer-section ul li a,
    .footer-social-links a,
    .footer-cta-buttons .btn {
        transition: none;
    }
    
    .footer-section ul li a:hover,
    .footer-social-links a:hover,
    .footer-cta-buttons .btn:hover {
        transform: none;
    }
} 

/* ===== KAPSAMLI FOOTER RESPONSIVE KURALLARI ===== */

/* Tablet ve küçük ekranlar için genel kurallar */
@media (max-width: 1024px) {
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-cta-buttons {
        justify-content: center;
        gap: 10px;
    }
}

/* Tablet için özel kurallar */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section {
        padding: 0 15px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-section ul li {
        margin-bottom: 6px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .footer-section ul li a:hover {
        padding-left: 20px;
    }
    
    .footer-section ul li a::before {
        font-size: 10px;
    }
    
    .footer-contact-info {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-contact-info i {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .footer-contact-info a {
        font-size: 0.9rem;
    }
    
    .footer-social-links {
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .footer-social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        order: 2;
    }
    
    .footer-links {
        order: 1;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .footer-cta-buttons {
        order: 3;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .footer-cta-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .footer-cta-buttons .btn.whatsapp {
        padding-left: 40px;
    }
    
    .footer-cta-buttons .btn.whatsapp::before {
        left: 12px;
        font-size: 14px;
    }
}

/* Mobil cihazlar için özel kurallar */
@media (max-width: 480px) {
    footer {
        padding: 25px 0 12px;
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-section h3::after {
        width: 25px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-section ul li {
        margin-bottom: 5px;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
        padding-left: 12px;
    }
    
    .footer-section ul li a:hover {
        padding-left: 16px;
    }
    
    .footer-section ul li a::before {
        font-size: 9px;
    }
    
    .footer-contact-info {
        margin-bottom: 12px;
    }
    
    .footer-contact-info i {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .footer-contact-info a {
        font-size: 0.8rem;
    }
    
    .footer-social-links {
        gap: 12px;
        margin-top: 12px;
    }
    
    .footer-social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 0.7rem;
        padding: 4px 6px;
    }
    
    .footer-cta-buttons {
        gap: 8px;
    }
    
    .footer-cta-buttons .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .footer-cta-buttons .btn.whatsapp {
        padding-left: 35px;
    }
    
    .footer-cta-buttons .btn.whatsapp::before {
        left: 10px;
        font-size: 12px;
    }
}

/* Çok küçük ekranlar için özel kurallar */
@media (max-width: 320px) {
    footer {
        padding: 20px 0 10px;
        margin-top: 25px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-section {
        padding: 0 8px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .footer-section h3::after {
        width: 20px;
    }
    
    .footer-section p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a {
        font-size: 0.7rem;
        padding-left: 10px;
    }
    
    .footer-section ul li a:hover {
        padding-left: 14px;
    }
    
    .footer-section ul li a::before {
        font-size: 8px;
    }
    
    .footer-contact-info {
        margin-bottom: 10px;
    }
    
    .footer-contact-info i {
        font-size: 11px;
        margin-right: 5px;
    }
    
    .footer-contact-info a {
        font-size: 0.7rem;
    }
    
    .footer-social-links {
        gap: 10px;
        margin-top: 10px;
    }
    
    .footer-social-links a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom-content {
        gap: 8px;
    }
    
    .footer-copyright {
        font-size: 0.6rem;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.6rem;
        padding: 3px 5px;
    }
    
    .footer-cta-buttons {
        gap: 6px;
    }
    
    .footer-cta-buttons .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 90px;
    }
    
    .footer-cta-buttons .btn.whatsapp {
        padding-left: 30px;
    }
    
    .footer-cta-buttons .btn.whatsapp::before {
        left: 8px;
        font-size: 10px;
    }
}

/* Yatay mobil cihazlar için özel kurallar */
@media (max-width: 768px) and (orientation: landscape) {
    footer {
        padding: 20px 0 10px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h3::after {
        left: 0;
        transform: none;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-copyright {
        order: 1;
    }
    
    .footer-links {
        order: 2;
        justify-content: center;
    }
    
    .footer-cta-buttons {
        order: 3;
        justify-content: flex-end;
    }
}

/* Touch cihazlar için özel kurallar */
@media (hover: none) and (pointer: coarse) {
    .footer-section ul li a:hover {
        padding-left: 15px;
    }
    
    .footer-social-links a:hover {
        transform: none;
    }
    
    .footer-cta-buttons .btn:hover {
        transform: none;
    }
    
    .footer-cta-buttons .btn:active {
        transform: scale(0.95);
    }
}

/* Reduced motion tercihi için özel kurallar */
@media (prefers-reduced-motion: reduce) {
    .footer-section ul li a,
    .footer-section ul li a::before,
    .footer-social-links a,
    .footer-cta-buttons .btn {
        transition: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 15px;
    }
    
    .footer-section ul li a:hover::before {
        transform: none;
    }
    
    .footer-social-links a:hover {
        transform: none;
    }
    
    .footer-cta-buttons .btn:hover {
        transform: none;
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    footer {
        background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    }
    
    .footer-section h3 {
        color: #ffd700;
    }
    
    .footer-section h3::after {
        background: linear-gradient(90deg, #ffd700, #ffed4e);
    }
    
    .footer-section ul li a::before {
        color: #ffd700;
    }
    
    .footer-social-links a {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    .footer-social-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffd700;
    }
    
    .footer-cta-buttons .btn {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .footer-cta-buttons .btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffd700;
    }
    
    .footer-cta-buttons .btn.whatsapp {
        background: rgba(37, 211, 102, 0.2);
        border-color: rgba(37, 211, 102, 0.3);
    }
    
    .footer-cta-buttons .btn.whatsapp:hover {
        background: rgba(37, 211, 102, 0.3);
        color: #25d366;
    }
}

/* Print için özel kurallar */
@media print {
    footer {
        background: white !important;
        color: black !important;
        border-top: 2px solid #ccc;
    }
    
    .footer-section h3 {
        color: #333 !important;
    }
    
    .footer-section h3::after {
        background: #333 !important;
    }
    
    .footer-section ul li a::before {
        color: #333 !important;
    }
    
    .footer-social-links,
    .footer-cta-buttons {
        display: none !important;
    }
} 