/* ===================================
   Get in Touch Section
   =================================== */

.get-in-touch-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    border-top: 1px solid #e5e5e5;
}

.get-in-touch-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.get-in-touch-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.get-in-touch-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #47d5ff;
    border-radius: 2px;
}

.get-in-touch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.get-in-touch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.get-in-touch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.get-in-touch-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #47d5ff;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.get-in-touch-icon svg {
    width: 28px;
    height: 28px;
}

.get-in-touch-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.get-in-touch-content p {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.get-in-touch-content a {
    color: #002b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.get-in-touch-content a:hover {
    color: #002b6b;
    text-decoration: underline;
}

/* Responsive Design for Get in Touch */
@media (max-width: 968px) {
    .get-in-touch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 60px 20px;
    }
    
    .get-in-touch-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .get-in-touch-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .get-in-touch-item {
        padding: 25px 20px;
    }
    
    .get-in-touch-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .get-in-touch-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .get-in-touch-content h3 {
        font-size: 1.1rem;
    }
    
    .get-in-touch-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .get-in-touch-section {
        padding: 50px 15px;
    }
    
    .get-in-touch-title {
        font-size: 1.75rem;
        margin-bottom: 35px;
        padding-bottom: 15px;
    }
    
    .get-in-touch-title::after {
        width: 60px;
        height: 3px;
    }
    
    .get-in-touch-item {
        padding: 20px 15px;
    }
    
    .get-in-touch-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .get-in-touch-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .get-in-touch-content h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .get-in-touch-content p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Footer Styles
   =================================== */

.site-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: 0;
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Logo and Tagline Section */
.footer-logo-section {
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 130px;
    margin: 0 auto;
    filter: invert(1);
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-tagline {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #d1d5db;
    margin: 10px 0 0;
    font-weight: 400;
}

/* Navigation and Social Media Section */
.footer-nav-social {
    margin-bottom: 30px;
}

/* Footer Navigation */
.footer-navigation {
    margin-bottom: 25px;
}

.footer-navigation ul,
.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-navigation ul li,
.footer-menu li {
    margin: 0;
}

.footer-navigation ul li a,
.footer-menu li a {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-navigation ul li a:hover,
.footer-menu li a:hover {
    color: #47d5ff;
}

/* Social Media Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.social-icon:hover {
    color: #47d5ff;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Copyright Section */
.footer-copyright {
    margin-top: 20px;
}

.footer-copyright p {
    font-family: 'Kedebideri', sans-serif;
    font-size: 0.9rem;
    color: #d1d5db;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #47d5ff;      
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(147, 214, 0, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #47d5ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(147, 214, 0, 0.6);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 25px;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
    
    .footer-navigation ul,
    .footer-menu {
        gap: 20px;
        flex-direction: column;
    }
    
    .footer-social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-navigation ul li a,
    .footer-menu li a {
        font-size: 0.95rem;
    }
}


.main-navigation a {
    font-weight: 900;
}
