@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #070612;
    --primary: #074B6B;
    --accent: #00C2FF;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(7, 75, 107, 0.1);
    --border-color: rgba(0, 194, 255, 0.1);
}

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

body {
    font-family: 'League Spartan', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Blurs for Anti-Gravity Feel */
.bg-blur-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: float-super-slow 15s infinite ease-in-out alternate;
}

.circle-1 {
    width: 40vw;
    height: 40vw;
    background: var(--primary);
    top: -10vw;
    left: -10vw;
}

.circle-2 {
    width: 30vw;
    height: 30vw;
    background: var(--accent);
    bottom: -5vw;
    right: -5vw;
    animation-delay: -5s;
    opacity: 0.15;
}

.circle-3 {
    width: 20vw;
    height: 20vw;
    background: var(--primary);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

/* Typography & General */
h1,
h2,
h3,
h4 {
    font-weight: 500;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 8rem 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

@keyframes float-small {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes float-super-slow {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }

    100% {
        transform: translateY(-40px) translateX(20px) scale(1.05);
    }
}

.float-slow {
    animation: float 6s infinite ease-in-out alternate;
}

.float-medium {
    animation: float 4s infinite ease-in-out alternate;
    animation-delay: -2s;
}

.float-hover {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.float-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(7, 75, 107, 0.3);
}

.fade-in,
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible,
.slide-up.visible,
.slide-left.visible,
.slide-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Buttons */
button {
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Base button animations */
.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background: conic-gradient(transparent, var(--accent), transparent 25%);
    animation: rotateBtnBorder 4s linear infinite;
    z-index: -2;
}

.btn-primary::after, .btn-secondary::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #074B6B;
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(7, 75, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary::after {
    background: #074B6B;
}

.btn-primary:hover::after {
    background: linear-gradient(135deg, #074B6B, #00C2FF);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.btn-secondary {
    background: var(--bg-dark);
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 30px;
}

.btn-secondary::after {
    background: var(--bg-dark);
}

.btn-secondary:hover::after {
    background: rgba(0, 194, 255, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Disable border animation for specific buttons */
.btn-no-border-anim::before,
.btn-no-border-anim::after {
    display: none !important;
}

.btn-no-border-anim {
    border: 1px solid var(--border-color) !important;
    background: transparent !important;
}

.btn-no-border-anim:hover {
    border-color: var(--accent) !important;
    background: rgba(0, 194, 255, 0.05) !important;
}

@keyframes rotateBtnBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-clean {
    background: transparent;
    color: var(--text-main);
}

.btn-clean:hover {
    color: var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 95%;
    max-width: 1240px;
    margin: 0 auto;
    background: #ffffff;
    padding: 0.8rem 2.5rem;
    border-radius: 60px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    top: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    transition: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: translateY(-2px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    color: #111827; /* Dark color for visibility on white navbar */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent);
    background: rgba(0, 194, 255, 0.05);
}

/* Hero */
.hero {
    min-height: 85vh;
    padding-top: 10rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-wheel {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateWheel 40s linear infinite;
}

.wheel-center {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 194, 255, 0.4);
    z-index: 10;
    animation: counterRotate 40s linear infinite;
    overflow: hidden;
}

.wheel-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.orbit-text {
    fill: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
}

.wheel-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.tech-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 16px;
    width: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 4;
    animation: counterRotate 40s linear infinite;
}

.tech-item i {
    font-size: 1.8rem;
    color: var(--accent);
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Position items around the circle */
.item-1 { transform: rotate(0deg) translate(150px) rotate(0deg); }
.item-2 { transform: rotate(60deg) translate(150px) rotate(-60deg); }
.item-3 { transform: rotate(120deg) translate(150px) rotate(-120deg); }
.item-4 { transform: rotate(180deg) translate(150px) rotate(-180deg); }
.item-5 { transform: rotate(240deg) translate(150px) rotate(-240deg); }
.item-6 { transform: rotate(300deg) translate(150px) rotate(-300deg); }

@keyframes rotateWheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Mobile adjustments */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-visual {
        height: 400px;
    }
    .tech-wheel {
        width: 320px;
        height: 320px;
        transform: scale(0.8);
    }
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    background: rgba(7, 75, 107, 0.15);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-visual {
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(7, 75, 107, 0.15), rgba(0, 194, 255, 0.05));
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.visual-inner {
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.1) 0%, transparent 60%);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-top: 2rem;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.process-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
}

.process-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(7, 75, 107, 0.3), rgba(0, 194, 255, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.process-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.15);
}

.blog-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image {
    height: 220px;
    background: linear-gradient(180deg, rgba(7, 75, 107, 0.2) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.blog-content {
    padding: 2.5rem;
}

.blog-content h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    padding: 4rem 3rem;
    background: rgba(7, 75, 107, 0.05);
    border-radius: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 6rem;
    color: rgba(0, 194, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.quote {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.author {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
}

/* CTA */
.cta-container {
    background: linear-gradient(135deg, rgba(7, 75, 107, 0.2), #070612);
    border: 1px solid rgba(0, 194, 255, 0.15);
    border-radius: 30px;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.08), transparent 60%);
    animation: float-super-slow 20s infinite linear alternate;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-container p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-container button {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .cta-container h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

}

/* --- Contact Form Enhancement --- */
.error-msg {
    display: block;
    color: #FF4747;
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
}

.is-invalid+.error-msg {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 0px;
}

.is-invalid {
    border-color: #FF4747 !important;
    background: rgba(255, 71, 71, 0.05) !important;
}

.hidden {
    display: none !important;
}

.animate-spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-feedback {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 255, 148, 0.05);
    border: 1px dashed rgba(0, 255, 148, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}


.loading-cursor {
    cursor: wait !important;
}

/* --- Improved Footer Styles --- */
.main-footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: #0f172a;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 1 340px;
}

.footer-groups {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-width: 600px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 340px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(12, 114, 163, 0.3);
    border-color: var(--accent);
}

.footer-groups {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-list li,
.contact-list li a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-list li a:hover {
    color: var(--accent);
}

.contact-list li {
    margin-bottom: 1.2rem;
}

.footer-phone-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-phone-link:hover {
    color: var(--accent);
}

.contact-list i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-signature {
    padding-bottom: 3rem;
    background: #0f172a;
}

.signature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.signature-line {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-signature p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-desc {
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .footer-groups {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-list li {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}