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

:root {
    --primary: #0f4c75;
    --primary-light: #3282b8;
    --secondary: #00b894;
    --secondary-dark: #006266;
    --accent: #bbe1fa;
    --text-dark: #1b262c;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #343a40;
    --hero-orange: #eb7c24;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.9);
    --container-width: 1400px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
}

.nav-container-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 0.4rem 0.4rem 0.4rem 2rem;
    border-radius: 50px;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: #4a4a4a;
    transition: var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--hero-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-contact {
    background: var(--hero-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(235, 124, 36, 0.3);
}

.btn-contact:hover {
    background: #d66b1a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(235, 124, 36, 0.4);
}

.navbar.scrolled {
    top: 15px;
}

.navbar.scrolled .nav-container-pill {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mobile-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px; /* offset for navbar */
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    background-color: #000;
    transition: opacity 2.5s ease-in-out;
    z-index: 0;
}

.hero-bg-layer.prev-active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-layer.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    margin: 0 auto;
    position: relative;
}

.text-orange {
    color: var(--hero-orange);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-get-started {
    background: var(--hero-orange);
    color: var(--white);
    padding: 0.6rem 0.6rem 0.6rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(235, 124, 36, 0.3);
}

.btn-get-started:hover {
    background: #d66b1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 124, 36, 0.4);
}

.btn-get-started .icon-circle {
    background: var(--white);
    color: var(--hero-orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .icon-circle {
    transform: translateX(3px);
}

.hero-pagination {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.hero-pagination .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-pagination .dot.active {
    background: var(--hero-orange);
}

.hero-pagination .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Logo Carousel Section */
.logo-carousel-section {
    background: #000000;
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-carousel-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    font-size: 1.8rem;
    font-weight: 700;
    color: #888888;
    padding: 0 4rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: default;
}

.logo-item:hover {
    color: var(--white);
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--hero-orange);
}

/* About Section */
.about-section {
    background-color: #f6f7f8;
}

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

.about-content-left {
    padding-right: 1rem;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1rem;
}

.about-list {
    margin-bottom: 2.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(235, 124, 36, 0.15);
    padding: 1rem 0;
    font-weight: 700;
    color: #000;
    font-size: 1rem;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list i {
    color: var(--hero-orange);
    font-size: 1.1rem;
    margin-right: 1rem;
}

.btn-read-more {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--hero-orange);
    color: #111;
    font-weight: 700;
    background: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-read-more:hover {
    background: var(--hero-orange);
    color: #fff;
}

.about-gallery-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-gallery-row {
    display: flex;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-wide {
    flex: 1.4;
    height: 250px;
}

.item-narrow {
    flex: 1;
    height: 250px;
}

.about-goal-card {
    background: linear-gradient(rgba(235, 124, 36, 0.85), rgba(235, 124, 36, 0.85)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.about-goal-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-goal-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .item-wide, .item-narrow {
        height: 160px;
    }
    .about-gallery-right { gap: 1rem; }
    .about-gallery-row { gap: 1rem; }
    .about-goal-card { padding: 1rem; }
    .about-goal-card h3 { font-size: 1.8rem; }
}

/* Solutions Section Redesign */
.solutions-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.solution-cell {
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.solution-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.solution-img-box:hover img {
    transform: scale(1.05);
}

.solution-text-box {
    background: var(--hero-orange);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(235, 124, 36, 0.4);
}

.solution-text-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.solution-text-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .solutions-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solutions-gallery {
        grid-template-columns: 1fr;
    }
    .solution-cell {
        aspect-ratio: auto;
        padding: 2.5rem 1.5rem;
    }
    .solution-img-box {
        aspect-ratio: 1 / 1;
        padding: 0;
    }
}

/* Support & Services Modern Section */
.services-modern-section {
    background-color: var(--gray-100);
    padding: 120px 0;
}

.services-modern-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
}

.services-modern-left {
    height: 100%;
}

.services-modern-left .sticky-wrapper {
    position: sticky;
    top: 130px;
}

.services-modern-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.services-modern-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.services-modern-right {
    display: flex;
    flex-direction: column;
}

.service-row-item {
    display: flex;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: default;
}

.service-row-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-row-icon {
    font-size: 2.2rem;
    color: #888;
    width: 60px;
    margin-right: 2rem;
    transition: color 0.4s ease, transform 0.4s ease;
}

.service-row-content {
    flex: 1;
}

.service-row-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.service-row-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-row-arrow {
    font-size: 1.5rem;
    color: rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    transform: translateX(0);
}

/* Hover effects */
.service-row-item:hover {
    border-bottom-color: var(--hero-orange);
}

.service-row-item:hover .service-row-icon {
    color: var(--hero-orange);
    transform: scale(1.1);
}

.service-row-item:hover .service-row-content h3 {
    color: var(--hero-orange);
}

.service-row-item:hover .service-row-arrow {
    color: var(--hero-orange);
    transform: translateX(10px);
}

@media (max-width: 992px) {
    .services-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-modern-left .sticky-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .service-row-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .service-row-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .service-row-arrow {
        display: none;
    }
}

/* Modern Industries Section */
.modern-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.modern-industry-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
}

.modern-industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--hero-orange);
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scaleY(0);
    transform-origin: bottom;
}

.modern-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(235, 124, 36, 0.2);
    border-color: transparent;
}

.modern-industry-card:hover::before {
    transform: scaleY(1);
}

.modern-industry-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(235, 124, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.modern-industry-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.modern-industry-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--hero-orange);
    transition: color 0.4s ease;
}

.modern-industry-card:hover .icon-wrapper i {
    color: var(--white);
}

.modern-industry-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.8rem;
    transition: color 0.4s ease;
}

.modern-industry-card:hover h3 {
    color: var(--white);
}

.modern-industry-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.modern-industry-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .modern-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .modern-industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Technology Stack Pathway */
.tech-pathway-section {
    background-color: #111; 
    color: var(--white);
    padding: 100px 0;
}

.tech-pathway-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.tech-pathway-header {
    position: sticky;
    top: 120px;
}

.tech-pathway-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.tech-pathway-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.tech-pathway-list {
    position: relative;
    padding-left: 20px;
}

/* Continuous vertical connecting line */
.tech-pathway-list::before {
    content: '';
    position: absolute;
    left: 45px; /* Centers the line to the 50px icon */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--hero-orange) 0%, rgba(235, 124, 36, 0.1) 100%);
    z-index: 1;
}

.tech-node {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.tech-node:last-child {
    margin-bottom: 0;
}

.node-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: #111; /* Match section bg */
    border: 2px solid var(--hero-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--hero-orange);
    box-shadow: 0 0 0 10px #111; /* Cuts off the line behind it */
    transition: all 0.4s ease;
}

.tech-node:hover .node-icon {
    background-color: var(--hero-orange);
    color: #111;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(235, 124, 36, 0.4);
}

.node-content {
    padding-top: 5px; /* Optical alignment with circular icon */
}

.node-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.tech-node:hover .node-content h3 {
    color: var(--hero-orange);
}

.node-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .tech-pathway-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .tech-pathway-header {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .tech-pathway-list::before {
        left: 30px;
    }
    .node-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        box-shadow: 0 0 0 6px #111;
    }
    .tech-pathway-list {
        padding-left: 10px;
    }
    .tech-node {
        gap: 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4rem;
    row-gap: 6rem;
}

.why-feature {
    position: relative;
    padding-top: 2rem;
    z-index: 1;
}

.watermark-number {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(235, 124, 36, 0.05);
    z-index: -1;
    transition: all 0.5s ease;
    user-select: none;
}

.why-feature:hover .watermark-number {
    color: rgba(235, 124, 36, 0.12);
    transform: translateY(-10px);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--hero-orange);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.why-feature:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
}

.why-feature h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

.why-feature p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 5rem;
    }
}

@media (max-width: 600px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        row-gap: 4.5rem;
    }
    .watermark-number {
        font-size: 7rem;
        top: -30px;
        left: 0;
    }
}

/* Call to Action */
.cta-section {
    background: linear-gradient(to right, #f4640b, #e35112);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modern Footer */
.modern-footer {
    background-color: #050505;
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 350px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--hero-orange);
    color: #fff;
    transform: translateY(-5px);
}

.footer-links-group h4, .footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.modern-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer-links li {
    margin-bottom: 1rem;
}

.modern-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.modern-footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--hero-orange);
    margin-right: 0;
    transition: all 0.3s ease;
}

.modern-footer-links a:hover {
    color: var(--hero-orange);
    transform: translateX(5px);
}

.modern-footer-links a:hover::before {
    width: 15px;
    margin-right: 10px;
}

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

.modern-contact-info li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: rgba(235, 124, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hero-orange);
    font-size: 1.2rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.contact-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-massive-text {
    font-size: 14vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    text-align: center;
    line-height: 0.8;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    width: 100%;
}

.footer-bottom-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-row p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--hero-orange);
}

@media (max-width: 992px) {
    .footer-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .btn-contact {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 850px) {

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        margin-right: 0.5rem;
    }

    .navbar.scrolled .mobile-toggle {
        color: #333;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        display: flex !important;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        color: #333 !important;
        font-size: 1.5rem;
    }

    .nav-links a.active {
        background: transparent;
        color: var(--hero-orange) !important;
    }

    .hero {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-pagination {
        bottom: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}