@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: orange;
    --dark: #333;
    --light: #fff;
    --grey: #666;
    --border: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 5%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo-container img {
    height: 70px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 2rem;
}

.navbar a {
    color: var(--dark);
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.icons {
    display: none;
}

/* Contact Section */
.contact-section {
    padding: 150px 5% 40px;
    min-height: auto;
    background: #f8f9fa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--grey);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: -1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-wrapper i {
    color: var(--light);
    font-size: 1.2rem;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card a {
    color: var(--grey);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark);
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.send-btn {
    background: var(--primary);
    color: var(--light);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #008ba3;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background-color: #1f1f1f;
    padding: 60px 5% 40px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 4px;  /* Further reduced gap between icon and text */
    white-space: nowrap;
    overflow: hidden;
    padding: 4px;
}

.footer-info i {
    min-width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 0; /* Removed margin */
}

.footer-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: normal;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.footer-info a:hover {
    color: var(--primary);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #181818;
    text-align: center;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-center {
        align-items: center;
    }

    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-nav {
        gap: 10px;
        justify-content: center;
    }

    .footer-info {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: row;
        align-items: center;
        padding: 8px 12px;
    }

    .footer-info i {
        min-width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-info a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 20px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-nav {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 13px;
    }

    .footer-info {
        max-width: 100%;
        padding: 8px 10px;
        gap: 10px;
    }

    .footer-info i {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .footer-info a {
        font-size: 12px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 12px 0;
        font-size: 12px;
    }
}

/* Quick Contact */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.quick-whatsapp {
    background: #25D366;
}

.quick-call {
    background: #3F71EA;
}

.quick-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .quick-contact {
        bottom: 20px;
        right: 20px;
        flex-direction: row;
        gap: 12px;
    }

    .quick-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .icons {
        display: block;
    }
    
    #menu-btn {
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s ease;
    }
    
    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .contact-section {
        padding: 160px 1rem 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        height: 50px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .send-btn {
        padding: 0.8rem;
    }
}
