/* CSS Variables */
:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-yellow: #fbbf24;
    --dark-gray: #374151;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-gray: #e5e7eb;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header Top Styles */
.header-top {
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 25px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.slogan {
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    gap: 15px;
}

.language-selector a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.language-selector a:hover,
.language-selector a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.search-icon {
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-icon:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* Logo in Header Top */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: relative;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Main Header Styles */
.main-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    gap: 0;
    width: 100%;
    justify-content: center;
    position: relative;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--border-gray);
}

.main-nav a:last-child {
    border-right: none;
}

.main-nav a:hover {
    color: var(--primary-blue);
    background-color: var(--light-gray);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    flex: 1;
}

.dropdown-toggle {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
    border-right: 1px solid var(--border-gray);
    cursor: pointer;
}

.dropdown:hover .dropdown-toggle {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-gray);
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 250px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-right: none;
    border-bottom: 1px solid var(--border-gray);
    text-align: left;
    transition: all 0.3s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding-left: 25px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/chatx.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-button {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.content-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.content-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.content-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 385px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.image-placeholder {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.service-icon {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    /*border: 2px solid var(--accent-yellow);*/
    border-right: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.icon-content {
    width: 20px;
    height: 20px;
    position: relative;
}

/* Oil and Gas Icon */
.snowflake {
    width: 12px;
    height: 12px;
    background: var(--white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    margin: 0 auto 2px;
}

.waves {
    width: 16px;
    height: 6px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
}

.waves::before,
.waves::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.waves::before {
    top: -3px;
    left: 2px;
}

.waves::after {
    top: 3px;
    left: 2px;
}

/* Mechanical Icon */
.wrench {
    width: 16px;
    height: 16px;
    background: var(--white);
    position: relative;
    border-radius: 2px;
}

.wrench::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: var(--white);
    top: 7px;
    left: 4px;
    transform: rotate(45deg);
}

.wrench::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid var(--white);
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

/* Manufacturing Icon */
.briefcase {
    width: 16px;
    height: 12px;
    background: var(--white);
    position: relative;
    border-radius: 2px;
}

.briefcase::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    top: -2px;
    left: -2px;
    border-radius: 1px;
}

.briefcase::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    top: 2px;
    left: 6px;
    border-radius: 1px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-link {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--primary-blue);
}

/* Counter Section */
.counter-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-gray);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-yellow), #ff8c00);
}

.counter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 24px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.counter-item:hover .icon-circle {
    background: var(--accent-yellow);
    transform: scale(1.1);
}

.counter-item:hover .icon-circle i {
    color: var(--white);
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.counter-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-number.animate {
    animation: countUp 0.8s ease-out;
}

/* References Section */
.references-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.references-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.references-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.references-title .highlight {
    color: var(--accent-yellow);
}

.references-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.references-separator {
    width: 60px;
    height: 2px;
    background: var(--text-dark);
    margin: 0 auto 50px;
}

.references-logos-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.references-logos {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: flex-start;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.references-logos:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 120px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.references-bg-shape {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: var(--light-gray);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.references-bg-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--light-gray);
    border-radius: 50%;
    opacity: 0.5;
}

.references-bg-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50%;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .content-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-center {
        position: static;
        transform: none;
        order: 1;
    }
    
    .header-left {
        order: 2;
    }
    
    .header-right {
        order: 3;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: 1px solid var(--border-gray);
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 18px;
        color: var(--text-dark);
    }

    .main-nav {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        overflow: hidden;
    }

    .main-nav.mobile-open {
        display: flex !important;
    }
    
    .main-nav a,
    .dropdown-toggle {
        padding: 10px 12px;
        font-size: 11px;
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
        text-align: left;
        position: relative;
        cursor: pointer;
    }
    
    .main-nav a:last-child,
    .dropdown-toggle:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-gray);
        margin-left: 0;
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }

    /* Mobile arrow indicator for expandable items */
    .dropdown > .dropdown-toggle {
        padding-right: 36px;
    }
    .dropdown > .dropdown-toggle::after {
        content: "\f107"; /* Font Awesome chevron-down */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.2s ease;
        color: var(--text-light);
        font-size: 12px;
    }
    .dropdown.open > .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
        color: var(--text-dark);
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 10px;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .dropdown-menu a:hover {
        background-color: var(--secondary-blue);
        color: var(--white);
        padding-left: 25px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .content-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        max-width: 80px;
        max-height: 80px;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .counter-item {
        padding: 30px 20px;
    }
    
    .counter-item:not(:last-child)::after {
        display: none;
    }
    
    .counter-item:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20%;
        right: 20%;
        height: 1px;
        background: linear-gradient(to right, var(--accent-yellow), #ff8c00);
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle i {
        font-size: 20px;
    }
    
    .references-title {
        font-size: 2.5rem;
    }
    
    .references-description {
        font-size: 1rem;
    }
    
    .references-logos {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .logo-item {
        height: 60px;
        width: 100px;
    }
    
    .references-bg-shape {
        width: 200px;
        height: 200px;
        right: -50px;
    }
    
    .references-bg-shape::before {
        width: 120px;
        height: 120px;
    }
    
    .references-bg-shape::after {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .content-header h2 {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .main-nav a {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .references-title {
        font-size: 2rem;
    }
    
    .references-description {
        font-size: 0.9rem;
    }
    
    .references-logos {
        gap: 30px;
        animation-duration: 20s;
    }
    
    .logo-item {
        height: 50px;
        width: 80px;
    }
    
    .references-bg-shape {
        display: none;
    }
    
    .projects-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .projects-title {
        font-size: 2rem;
    }
    
    .projects-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-arrow {
        position: static;
        order: 2;
    }
    
    .nav-arrow-left {
        order: 1;
    }
    
    .nav-arrow-right {
        order: 3;
    }
    
    .projects-slider {
        order: 2;
    }
    
    .project-card {
        flex: 0 0 280px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
}

/* Projects Section */
.projects-section {
    background: var(--white);
    padding: 80px 0;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.projects-title-section {
    flex: 1;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.projects-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--accent-yellow);
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-all-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.projects-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.projects-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.projects-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: max-content;
}

.project-card {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-yellow);
    z-index: 2;
}

.project-category {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 20px 5px;
    margin: 0;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1.3;
    padding: 0 20px 20px;
    margin: 0;
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.nav-arrow:hover {
    border-color: var(--accent-yellow);
    background: var(--accent-yellow);
    transform: scale(1.1);
}

.nav-arrow i {
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-arrow:hover i {
    color: var(--white);
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-arrow:disabled:hover {
    transform: none;
    border-color: var(--border-gray);
    background: var(--white);
}

.nav-arrow:disabled:hover i {
    color: var(--text-dark);
}

/* Footer */
:root {
    --footer-bg: #0f2437;
    --footer-bg-dark: #0c1f2b;
    --footer-sep: rgba(255, 255, 255, 0.08);
    --footer-text: #c7d2da;
    --footer-heading: #e5eef5;
}

.site-footer {
    color: var(--footer-text);
    background: var(--footer-bg);
}

.footer-top {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) saturate(1.05);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-social-title {
    display: inline-block;
    font-weight: 600;
    color: var(--footer-heading);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-heading);
    border: 1px solid var(--footer-sep);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.footer-title {
    color: var(--footer-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-menu {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-menu a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px);
}

.footer-hours {
    list-style: none;
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.footer-hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px dashed var(--footer-sep);
    padding-bottom: 8px;
}

.footer-hours li:last-child {
    border: none;
    padding-bottom: 0;
}

.footer-hours .hours-note {
    display: block;
    text-align: left;
    color: var(--footer-heading);
    font-weight: 600;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--footer-sep);
    background: var(--footer-bg-dark);
}

.footer-bottom .container {
    padding: 16px 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--footer-heading);
}

.footer-bottom .dev-credit a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom .dev-credit a:hover {
    text-decoration: underline;
}

.footer-bottom .dot { 
    margin: 0 8px; 
    opacity: 0.7; 
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; }
}

@media (max-width: 768px) {
    .footer-top { padding: 40px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}
