:root {
    --primary-purple: #e6c36f;
    --text-dark: #000000;
    --text-light: #ffffff;
    --border-light: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; */
    /* background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%); */
    min-height: 100vh;
    /* margin-top: 25px; */
}

.header-container {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid var(--border-light); */
    padding: 0;
    z-index: 9999;
    width: 92%;
    border-radius: 50px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 3rem;
}

.logo-circle {
    width: 52px;
    height: 52px;
    /* background: linear-gradient(135deg, #059669 0%, #10B981 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    /* border: 3px solid #fff; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* .logo-circle::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.logo-circle::after {
    content: 'T&T';
    position: absolute;
    color: #059669;
    font-weight: 700;
    font-size: 10px;
    z-index: 1;
} */

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 0.2rem !important;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

.nav-link.active {
    color: var(--primary-purple) !important;
}

.dropdown-toggle::after {
    margin-left: 6px;
    border: none;
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 12px;
    vertical-align: middle;
}

.dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: var(--primary-purple);
}

.user-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-icon:hover {
    background: #e5e7eb;
}

.contact-btn {
    background: #e6c36f;
    color: #000000 !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.4rem 1rem !important;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    color: #92400e !important;
}


/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary-custom {
    background: #e6c36f;
    border: 2px solid #e6c36f;
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: #e6c36f;
    border-color: #e6c36f;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #e6c36f;
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-custom:hover {
    background: #e6c36f;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}




/* Footer Section */
.footer {
    /* background-color: #f8f9fa; */
    padding: 50px 0 0px 0;
    /* border-radius: 50px 50px 0px 0px; */
}

.footer h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

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

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

.footer ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #333;
}

.contact-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #666;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #333;
}

.copyright {
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
    /* margin-top: 40px; */
    text-align: center;
    color: #666;
    font-size: 14px;
}

.newsletter-form {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    padding: 10px 0;
    margin-right: 15px;
    outline: none;
}

.newsletter-form input:focus {
    border-bottom-color: #333;
}

.newsletter-form button {
    position: absolute;
    right: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
}

.newsletter-form button:hover {
    background-color: #555;
}

.newsletter-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.logo-section img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        width: 95%;
    }

    .navbar-nav {
        gap: 1rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 12px;
    }

    .navbar-brand {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 16px;
    }

    /* Footer Section Responsive */
    .logo-section {
        text-align: center;
    }
    .logo-section img {
        width: 100px;
        height: 100px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        /* flex-direction: column; */
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}
