/* Font Variables */
:root {
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Color Palette - Dark Red Mode */
    --bg-dark: #050505;
    --bg-card: #0F0F0F;
    --bg-overlay: rgba(255, 0, 0, 0.05);

    --primary-red: #D90429;
    /* Intense Red */
    --accent-red: #EF233C;
    /* Brighter Red */
    --dark-red: #8D99AE;
    /* Muted Metallic Grey (Creating contrast) */

    --text-main: #EDF2F4;
    --text-muted: #8D99AE;
    --text-hero: #000000;

    --border-color: #2B2D42;
    --glow-shadow: 0 0 20px rgba(217, 4, 41, 0.4);

    --container-max-width: 1200px;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    position: relative;
    overflow: hidden;
}

#watermark {
    position: fixed;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: url('main-watermark.png') no-repeat center center;
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
}

.red-glow-spot {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.spot-1 {
    top: -100px;
    left: -100px;
}

.spot-2 {
    bottom: -200px;
    right: -200px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
#navbar {
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    /* Adjusted height for navbar */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-red {
    color: var(--primary-red);
    /*     position: relative;
    top: -0.5em;
    display: inline-block; */
}

.nav-links {
    display: flex;
    gap: clamp(10px, 2vw, 30px);
    align-items: center;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
    text-shadow: 0 0 8px rgba(217, 4, 41, 0.6);
}

.cta-btn {
    border: 1px solid var(--primary-red);
    padding: 10px 20px;
    color: var(--primary-red) !important;
    border-radius: 2px;
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--primary-red);
    color: white !important;
    box-shadow: var(--glow-shadow);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0d0d0d;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: 1px solid #222;
    top: 100%;
    /* Position below the nav item */
    left: 0;
    border-radius: 4px;
    overflow: hidden;
    flex-direction: column;
    /* Ensure vertical layout if flex is used, though block is default */
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    /* Vertical list */
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #151515;
    color: var(--primary-red);
    padding-left: 25px;
    /* Slide effect */
}

.dropdown:hover .dropdown-content {
    display: flex;
    /* or block */
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: block;
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.red-accent {
    color: var(--primary-red);
}

/* Hero */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.20) 0%, #050505 55%);
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    text-align: center;
    /* Align text to center */
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--text-main);
    color: transparent;
}

.glow-text {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Align buttons to center */
    margin-top: 20px;
}

.primary-btn {
    background: var(--primary-red);
    color: white;
    padding: 15px 35px;
    font-weight: bold;
    border: none;
    border-radius: 2px;
    /* Slight rounded for modern feel but angular */
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
    cursor: pointer;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.5);
}

.secondary-btn {
    background: transparent;
    color: var(--text-main);
    padding: 15px 35px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.secondary-btn:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    background: var(--primary-red);
    color: white;
    padding: 15px 35px;
    font-weight: bold;
    border: none;
    border-radius: 2px;
    /* Slight rounded for modern feel but angular */
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.5);
}

.tech-circle {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.tech-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(217, 4, 41, 0.2);
    border-radius: 50%;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Stats */
.stats-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    background: rgba(10, 10, 10, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: bold;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.read-more {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Expand area tag <a> full */
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* Contact form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 15px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(217, 4, 41, 0.05);
}

.full-width {
    width: 100%;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* Footer */
footer {
    background: #020202;
    padding: 20px 0 10px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.footer-right-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

/* Email/Phone Footer */
.footer-contact {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.footer-contact p {
    margin: 0;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Social Media Footer */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* Smooth rounded corners like Apple icons */
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.social-fb {
    background-color: #3b5998;
}

/* Facebook Blue */
.social-yt {
    background-color: #c4302b;
}

/* YouTube Red */
.social-line {
    background-color: #00b900;
}

/* Line Green */
.social-tiktok {
    background-color: #6d7682;
}

.copyright {
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    width: 100%;
}

/* About Section Updates */
.dark-alt-bg {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.5);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    width: 100%;
}

.about-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    /* Optional slight rounding */
}

.lisx-mission {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mission-item .red-accent {
    position: relative;
    top: -0.5em;
    display: inline-block;
}

.mission-letter {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.8;
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(217, 4, 41, 0.3);
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.mission-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5px;
}

.mission-content strong {
    font-size: 1.5rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

.mission-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        /* Center on mobile */
        text-align: center;
        flex-direction: column-reverse;
    }

    .hero-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .tech-circle {
        left: 50%;
        transform: translate(-50%, -50%);
        /* Center visual */
        width: 400px;
        height: 400px;
    }

    .mission-item {
        gap: 15px;
    }

    .mission-letter {
        font-size: 3rem;
        min-width: 40px;
    }

    /* Stack about section on mobile */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        gap: 25px;
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: white;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }
}

/* Service Detail Page Styles */
.page-hero {
    padding: 180px 20px 80px;
    text-align: center;
    /* background: radial-gradient(circle at 50% 50%, #150005 0%, #050505 70%); */
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
}

.project-img-wrapper {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1f1f1f;
}

.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-main);
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Fit in window as requested */
    background: #000;
}

.project-timeline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
    font-weight: bold;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #0f0f0f;
    border: 1px solid #333;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(217, 4, 41, 0.2);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-img-container {
    background: #000;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #222;
    position: relative;
    /* For absolute positioning of arrows */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    display: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.modal-next {
    right: 20px;
}

.modal-prev {
    left: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.3);
}

.modal-img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 4px;
}

.modal-info {
    padding: 30px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Careers Page */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
}

.job-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.apply-btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    border-radius: 4px;
}

.apply-btn-small:hover {
    background: var(--primary-red);
    color: white;
}

.submit-btn {
    background: var(--primary-red);
    color: white;
    padding: 15px 35px;
    font-weight: bold;
    border: none;
    border-radius: 2px;
    /* Slight rounded for modern feel but angular */
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.5);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.page-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.3);
}

.page-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.5);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #222;
}

/* Footer Mobile View */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .footer-logo {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .footer-logo .logo-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .footer-right-group {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-contact span,
    .footer-contact a {
        font-size: 14px;
        white-space: nowrap;
    }

    .social-links {
        margin-top: 5px;
        justify-content: center;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}