* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: calc(100% - 4rem);
    max-width: 1200px;
    transition: all 0.3s ease;
}

.navbar:hover {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.logo span {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-image {
    height: 50px;
    width: auto;
    padding: 8px;
    background-color: #fff;
    border-radius: 6px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.dropdown-arrow {
    font-size: 0.7rem;
}

.nav-icons {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 2rem 2rem;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-button {
    font-family: 'Oswald', sans-serif;
    background: #5865F2;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.cta-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.4);
}

/* Image Grid */
.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Specific image positioning */
.image-1 {
    grid-column: 1;
    height: 200px;
    animation-delay: 0.1s;
}

.image-2 {
    grid-column: 2;
    height: 200px;
    animation-delay: 0.2s;
}

.image-3 {
    grid-column: 1;
    height: 200px;
    animation-delay: 0.3s;
}

.image-4 {
    grid-column: 2;
    height: 200px;
    animation-delay: 0.4s;
}

.image-5 {
    grid-column: 1;
    height: 200px;
    animation-delay: 0.5s;
}

.image-6 {
    grid-column: 2;
    height: 200px;
    animation-delay: 0.6s;
}

.image-7 {
    grid-column: 1 / -1;
    height: 200px;
    animation-delay: 0.7s;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        width: calc(100% - 2rem);
        padding: 0.75rem 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1.25rem;
        width: calc(100% - 2rem);
        top: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .logo-image {
        height: 45px;
        padding: 7px;
    }

    .logo span {
        font-size: 0.85rem;
    }

    .hero {
        padding: 100px 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .hero-images {
        gap: 0.75rem;
    }

    .image-1,
    .image-2,
    .image-3,
    .image-4,
    .image-5,
    .image-6,
    .image-7 {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 0.75rem;
        width: calc(100% - 1.5rem);
        padding: 0.625rem 1rem;
        border-radius: 40px;
    }

    .logo-image {
        height: 42px;
        padding: 7px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .image-1,
    .image-2,
    .image-3,
    .image-4,
    .image-5,
    .image-6,
    .image-7 {
        height: 120px;
    }
}

/* Mobile-first optimizations */
@media (max-width: 360px) {
    .logo-image {
        height: 38px;
        padding: 6px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}


/* Services Section */
.services-section {
    min-height: 100vh;
    width: 100vw;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-color: #fff;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    padding-top: 2rem;
}

.services-title {
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    font-size: 5rem;
    color: #000000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    
}

.services-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.05em;
}

.services-track-container {
    width: 100%;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

#image-track {
    display: flex;
    gap: 3vmin;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    user-select: none;
    cursor: grab;
    will-change: transform;
    padding: 2rem 0;
}

#image-track:active {
    cursor: grabbing;
}

.service-card {
    position: relative;
    width: 40vmin;
    height: 56vmin;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.15s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4);
}

.service-card > .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
    pointer-events: none;
    will-change: object-position;
    transition: transform 0.15s ease;
}

.service-card:hover > .image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.15s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.drag-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.drag-indicator span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: rgba(8, 8, 8, 0.911);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Services Section Responsive */
/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-section {
        padding: 5rem 1.5rem;
    }

    .services-title {
        font-size: 4rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-track-container {
        height: 55vh;
    }

    .service-card {
        width: 42vmin;
        height: 58vmin;
    }

    #image-track {
        gap: 2.5vmin;
    }

    .service-overlay h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1rem;
        min-height: 90vh;
    }

    .services-title {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .services-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-header {
        margin-bottom: 2.5rem;
        padding-top: 1rem;
    }

    .services-track-container {
        height: 50vh;
    }

    .service-card {
        width: 55vw;
        height: 70vh;
        max-height: 450px;
        border-radius: 12px;
    }

    #image-track {
        gap: 4vw;
    }

    .service-overlay {
        padding: 1.5rem 1.25rem;
    }

    .service-overlay h3 {
        font-size: 1.2rem;
    }

    .drag-indicator {
        bottom: 2rem;
    }

    .drag-indicator span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0.5rem;
        min-height: 85vh;
    }

    .services-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.05em;
    }

    .services-subtitle {
        font-size: 0.85rem;
        padding: 0 1.5rem;
        line-height: 1.4;
    }

    .services-header {
        margin-bottom: 2rem;
        padding-top: 0.5rem;
    }

    .services-track-container {
        height: 45vh;
        margin-top: 1rem;
    }

    .service-card {
        width: 65vw;
        height: 75vh;
        max-height: 380px;
        max-width: 280px;
        border-radius: 10px;
    }

    #image-track {
        gap: 5vw;
    }

    .service-overlay {
        padding: 1.25rem 1rem;
    }

    .service-overlay h3 {
        font-size: 1rem;
        letter-spacing: 0.03em;
    }

    .drag-indicator {
        bottom: 1.5rem;
    }

    .drag-indicator span {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    /* Better touch targets on mobile */
    .service-card:active {
        transform: scale(0.98);
    }
}

@media (max-width: 360px) {
    .services-section {
        padding: 2.5rem 0.5rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 0.8rem;
    }

    .services-track-container {
        height: 42vh;
    }

    .service-card {
        width: 70vw;
        height: 70vh;
        max-height: 350px;
        max-width: 250px;
    }

    #image-track {
        gap: 6vw;
    }

    .service-overlay h3 {
        font-size: 0.9rem;
    }

    .drag-indicator span {
        font-size: 0.7rem;
    }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .services-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-track-container {
        height: 60vh;
    }

    .service-card {
        width: 35vw;
        height: 55vh;
        max-height: none;
    }

    #image-track {
        gap: 3vw;
    }

    .drag-indicator {
        bottom: 1rem;
    }
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    width: 100vw;
    background: #000;
    position: relative;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
    background-color: #000;
}

.contact-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 3rem 2rem;
    transform: translateY(0);
}

.contact-image-overlay h3 {
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    font-size: 3rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-image-overlay p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.8);
}

.contact-form-wrapper {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-title {
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    font-family: 'Barlow', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5865F2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    font-family: 'Oswald', sans-serif;
    background: #5865F2;
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
    margin-top: 1rem;
}

.submit-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.form-message {
    font-family: 'Barlow', sans-serif;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
    display: block;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 5rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 3rem 2.5rem;
    }

    .contact-title {
        font-size: 3rem;
    }

    .contact-image-overlay h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .contact-image {
        min-height: 400px;
        order: 1;
    }

    .contact-form-wrapper {
        padding: 3rem 2rem;
        order: 2;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-image-overlay {
        padding: 2rem 1.5rem;
    }

    .contact-image-overlay h3 {
        font-size: 2rem;
    }

    .contact-image-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-image {
        min-height: 300px;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-image-overlay h3 {
        font-size: 1.75rem;
    }

    .contact-image-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .contact-form-wrapper {
        padding: 2rem 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .services-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-track-container {
        height: 60vh;
    }

    .service-card {
        width: 35vw;
        height: 55vh;
        max-height: none;
    }

    #image-track {
        gap: 3vw;
    }

    .drag-indicator {
        bottom: 1rem;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(88, 101, 242, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.5), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    padding: 7px;
    background-color: #fff;
    border-radius: 6px;
    object-fit: contain;
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-description {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: 'Barlow', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #5865F2;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Barlow', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #5865F2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-family: 'Barlow', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    font-family: 'Barlow', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #5865F2;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo-image {
        height: 40px;
    }

    .footer-brand {
        font-size: 1rem;
    }

    .footer-heading {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }

    .copyright,
    .footer-legal a {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .footer-logo-image {
        height: 36px;
    }

    .footer-heading {
        font-size: 1.2rem;
    }

    .social-link {
        width: 34px;
        height: 34px;
    }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .services-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-track-container {
        height: 60vh;
    }

    .service-card {
        width: 35vw;
        height: 55vh;
        max-height: none;
    }

    #image-track {
        gap: 3vw;
    }

    .drag-indicator {
        bottom: 1rem;
    }
}