/* Reset & Base Styles */

:root{
    --primary:#0e7373;
    --secondary:#073d5c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spline Sans', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center; /* Center the menu items */
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

/* Actions: Call Btn & Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    background: var(--secondary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Mobile Sidebar (Right side) */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-logo {
    height: 40px;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-sidebar:hover {
    color: #ff3333;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, padding-left 0.3s;
}

.mobile-nav a:hover {
    background: #f8f9fa;
    padding-left: 25px;
    color: var(--primary);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-call-btn {
    width: 100%;
    justify-content: center;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-container .call-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../img/hero-bg.png') center/cover no-repeat;
    background-color: var(--secondary);
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero.inner-hero {
    min-height: 40vh;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 61, 92, 0.95) 0%, rgba(7, 61, 92, 0.7) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: #0b5c5c;
    border-color: #0b5c5c;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--secondary);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Mobile Adjustments for Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Company at a Glance Section */
.glance-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.glance-header {
    text-align: center;
    margin-bottom: 50px;
}

.glance-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    /* Mix primary and secondary colors using a text gradient */
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--secondary); /* Fallback for unsupported browsers */
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glance-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.glance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary);
}

.glance-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(14, 115, 115, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.glance-card:hover .glance-icon {
    background-color: var(--primary);
    color: #ffffff;
}

.glance-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.glance-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Responsive adjustments for Glance Section */
@media (max-width: 991px) {
    .glance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glance-section {
        padding: 60px 0;
    }
    
    .glance-header h2 {
        font-size: 2rem;
    }
    
    .glance-grid {
        grid-template-columns: 1fr;
    }
}

/* What We Do Best Section */
.what-we-do-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.what-we-do-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--secondary);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(14, 115, 115, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 115, 115, 0.15);
    border-color: var(--primary);
}

.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--primary);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background-color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    border: 2px solid var(--primary);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(7, 61, 92, 0.2);
    transform: translateY(-2px);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for What We Do Section */
@media (max-width: 991px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 0;
    }
    
    .what-we-do-header h2 {
        font-size: 2rem;
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
}

/* Common Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--secondary);
}

/* Who We Work With Section */
.who-we-work-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.shape-left {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(14, 115, 115, 0.1), transparent);
    top: -100px;
    left: -100px;
    transform: rotate(45deg);
}

.shape-right {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, rgba(7, 61, 92, 0.05), transparent);
    bottom: -150px;
    right: -100px;
}

.client-segments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.segment-card {
    background: #ffffff;
    border: 1px solid rgba(14, 115, 115, 0.15);
    border-radius: 12px;
    padding: 40px 20px;
    width: calc(33.333% - 20px);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    min-width: 250px;
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.segment-icon {
    font-size: 55px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.segment-card:hover .segment-icon {
    transform: scale(1.15);
}

/* Distinct flat colors for each icon */
.segment-card:nth-child(1) .segment-icon { color: #FF6B6B; } /* Red */
.segment-card:nth-child(2) .segment-icon { color: #4ECDC4; } /* Turquoise */
.segment-card:nth-child(3) .segment-icon { color: #1A535C; } /* Dark Teal */
.segment-card:nth-child(4) .segment-icon { color: #F9A03F; } /* Orange */
.segment-card:nth-child(5) .segment-icon { color: #9B5DE5; } /* Purple */

.segment-card h4 {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Responsive for Client Segments */
@media (max-width: 991px) {
    .segment-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .who-we-work-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .segment-card {
        width: 100%;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--secondary); /* Dark background */
    color: #ffffff;
    position: relative;
}

/* Modifier for section header on dark background */
.section-header.dark-header h2 {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: calc(33.333% - 40px);
    min-width: 300px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03); /* Slight card background */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Border for cards */
    border-radius: 12px;
    padding: 30px 25px;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3); /* Brighten border on hover */
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    color: #48c5c5; /* Vibrant teal */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(14, 115, 115, 0.4);
}

.feature-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 5px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive for Why Choose */
@media (max-width: 991px) {
    .feature-box {
        width: calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    .feature-box {
        width: 100%;
    }
}

/* How We Work Section */
.how-we-work-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    /* Subtle dots texture */
    background-image: radial-gradient(rgba(14, 115, 115, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    border-top: 1px solid #eee;
}

.process-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 35px; /* Center of the number circle (70px height) */
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(14, 115, 115, 0.15);
    z-index: 1;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    width: 18%;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border: 3px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(14, 115, 115, 0.3);
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.4;
    padding: 0 5px;
}

/* Responsive for Process Flow */
@media (max-width: 991px) {
    .process-line {
        display: none; /* Hide horizontal line on smaller screens */
    }
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .process-step {
        width: 100%;
        max-width: 300px;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #052c43 100%);
    position: relative;
    color: #ffffff;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #48c5c5; /* Highlight color */
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Enhancing standard buttons inside CTA */
.cta-section .btn {
    padding: 15px 35px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
    .cta-subtitle {
        font-size: 1.2rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-section .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Styles */
.main-footer {
    background-color: var(--secondary);
    color: #ffffff;
    padding: 80px 0 0;
    font-family: 'Spline Sans', sans-serif;
    border-top: 5px solid var(--primary);
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.about-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 15px;
}

.links-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.links-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Simple Footer Styles */
.simple-footer {
    text-align: center;
    padding: 60px 0 0;
}

.footer-horizontal-links {
    margin-bottom: 30px;
}

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

.footer-horizontal-links a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-horizontal-links a:hover {
    color: var(--primary);
}

.footer-center-contact {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-center-contact p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-center-contact i {
    color: var(--primary);
    margin-right: 8px;
}

.footer-center-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-center-contact a:hover {
    color: var(--primary);
}

.contact-divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .footer-horizontal-links ul {
        gap: 15px;
    }
    .footer-horizontal-links a {
        font-size: 1rem;
    }
    .contact-divider {
        display: block;
        opacity: 0;
        height: 5px;
    }
}
