/* ===================================
   UP Source - Component Styles
   Navigation, Footer, and Reusable Components
   =================================== */

/* === Header Main === */
.header-main {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 1001;
    background: linear-gradient(90deg, #0f2b5c 0%, #2979ff 100%);
    /* Blue gradient */
    box-shadow: var(--shadow-md);
    color: white;
}

/* === Logo Box (Left Column) === */
.logo-box {
    background-color: transparent;
    /* Removed dark background */
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* Optional separator */
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-align: center;
    text-decoration: none;
}

.logo-link img {
    height: 80px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.65rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* === Header Content (Right Column) === */
.header-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* === Top Bar === */
.top-bar {
    background: transparent;
    color: white;
    padding: 10px var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-welcome {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.top-bar-actions {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.top-bar-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.top-bar-email svg {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-social {
    display: flex;
    gap: var(--spacing-md);
    padding-left: var(--spacing-lg);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-social a {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.top-bar-social a:hover {
    opacity: 1;
    color: white;
}

/* === Navigation Bar === */
.navbar {
    background: transparent;
    padding: var(--spacing-sm) var(--spacing-lg);
    position: relative;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-menu {
    display: flex;
    gap: 40px;
    /* Increased gap for cleaner look */
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xs) 0;
    position: relative;
    font-size: 1rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width var(--transition-base);
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-link:hover,
.navbar-link.active {
    color: white;
}

/* CTA Widget */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-left: var(--spacing-xl);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-icon {
    background: rgba(255, 255, 255, 0.15);
    /* Semi-transparent white */
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cta-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    /* White hamburger menu */
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .header-main {
        flex-direction: column;
    }

    .logo-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px;
    }

    .logo-link img {
        height: 60px;
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    .navbar-menu {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f2b5c;
        /* Solid dark blue for menu */
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-cta {
        display: none;
        /* Hide CTA on mobile header */
    }

    .navbar-toggle {
        display: flex;
    }
}

/* === Footer === */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-blue);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.875rem;
}

/* === Service Cards === */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-size: 1.5rem;
}

/* === Team Member Cards === */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-md);
    border: 4px solid var(--primary-blue);
}

.team-name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--primary-blue);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* === Contact Form === */
.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* === Stats Section === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-dark);
    font-weight: var(--font-weight-medium);
}

/* === Image Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* === Testimonial Carousel === */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-lg);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--primary-blue);
    opacity: 0.7;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 0 40px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
}

/* === New Testimonials Design === */
.testimonials-label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
}

.testimonial-carousel-new {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide-new {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide-new.active {
    display: block;
    opacity: 1;
}

.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.testimonial-card-new {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: var(--primary-blue);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card-new {
        padding: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}

/* === New Services Section === */
.services-section-new {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
    overflow: hidden;
}

.services-header {
    text-align: left;
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.services-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-subtitle::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-blue);
}

.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.services-description {
    max-width: 600px;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.services-carousel-container {
    margin-top: var(--spacing-xl);
    overflow: hidden;
}

.services-track {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    padding-bottom: var(--spacing-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.services-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.service-card-new {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.service-card-new:hover {
    transform: translateY(-10px);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card-new:hover .service-card-img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.service-card-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.service-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.service-indicator.active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--primary-blue);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card-new {
        flex: 0 0 260px;
        height: 350px;
    }

}


/* === Pixel Perfect Footer === */
.footer-new {
    background-color: #050A1E;
    /* Dark Navy */
    padding-top: 80px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.footer-content-new {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand Column */
.footer-desc-new {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-social-new {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-social-new a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social-new a:hover {
    color: #0099FF;
}

.btn-download-profile {
    display: inline-block;
    background-color: #0099FF;
    /* Bright Blue */
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-download-profile:hover {
    background-color: #007acc;
}

/* Links & Contact Columns */
.footer-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title-new::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 3px;
    background-color: #0066CC;
    /* Blue Dash */
}

.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-new li {
    margin-bottom: 15px;
}

.footer-links-new a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-new a:hover {
    color: #0099FF;
}

.footer-contact-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list-new li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-icon-new {
    color: #0099FF;
    /* Blue Icon */
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom-new {
    background-color: #020510;
    /* Darker Navy */
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #8899a6;
}

.text-blue {
    color: #0066CC;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .btn-download-profile {
        max-width: 100%;
    }
}

/* === WhatsApp Section === */
.whatsapp-section {
    background: linear-gradient(90deg, #0f2b5c 0%, #2979ff 100%);
    padding: 60px 0;
    color: white;
}

.whatsapp-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.whatsapp-text {
    max-width: 600px;
}

.whatsapp-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.whatsapp-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.btn-whatsapp {
    background: white;
    color: #0f2b5c;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* === Updated Footer === */
.footer {
    background-color: #0a1628;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #8899a6;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #8899a6;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #8899a6;
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #5c6c7f;
}

/* === Updated Video Section === */
.video-overlay {
    background: rgba(10, 22, 40, 0.6);
    /* Darker overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center everything */
}

.video-content-wrapper {
    text-align: center;
    color: white;
}

.play-button-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 4px;
    /* Optical center */
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.play-button:hover svg {
    fill: var(--primary-blue);
}

.video-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* Fix for Contact Icons */
.contact-icon-new {
    color: #0099FF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 0;
    flex-shrink: 0;
    font-size: 0;
}

.contact-icon-new svg {
    width: 18px;
    height: 18px;
}
