/* Root Variables */
:root {
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-accent: #ff5500;
    --color-secondary: #1a1a1a;
    --color-border: #2a2a2a;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --ease-smooth: cubic-bezier(0.75, 0, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

img {
    max-width: 100%;
    display: block;
    opacity: 1;
    visibility: visible;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Cursor - Smooth professional design */
body {
    cursor: none !important;
}

* {
    cursor: none !important;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease;
    will-change: transform;
}

.cursor.cursor-hover {
    width: 40px;
    height: 40px;
    opacity: 0.3;
}

/* Hide custom cursor on mobile and restore default */
@media (max-width: 1024px) {
    .cursor {
        display: none !important;
    }
    body, * {
        cursor: auto !important;
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.loader-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    overflow: hidden;
}

.loader-bar {
    width: 300px;
    height: 2px;
    background: var(--color-border);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-accent);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
}

.nav-menu-toggle {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: none;
}

.nav-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-smooth);
}

.nav-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-smooth);
    overflow-y: auto;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-container {
    padding: 8rem 4rem 4rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 1rem;
}

.menu-link {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 10rem);
    line-height: 1;
    letter-spacing: 0.05em;
    overflow: hidden;
    position: relative;
}

.menu-link span {
    display: inline-block;
    transition: transform 0.5s var(--ease-smooth);
}

.menu-link:hover span {
    transform: translateY(-100%);
}

.menu-link::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--color-accent);
    transition: transform 0.5s var(--ease-smooth);
}

.menu-link:hover::after {
    transform: translateY(-100%);
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: auto;
}

.menu-social,
.menu-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-text {
    margin-bottom: 4rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.05em;
    overflow: hidden;
    margin-bottom: 0;
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-top: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-indicator-wrapper {
    position: fixed;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 35vw;
    height: 45vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    border-radius: 10px;
}

.hero-image-1 {
    top: 10%;
    left: 5%;
    animation: float1 20s ease-in-out infinite;
}

.hero-image-2 {
    top: 25%;
    right: 3%;
    animation: float2 25s ease-in-out infinite;
}

.hero-image-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 22s ease-in-out infinite;
}

/* Floating animations for hero images */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -15px) scale(1.02);
    }
    50% {
        transform: translate(-15px, 20px) scale(0.98);
    }
    75% {
        transform: translate(15px, 10px) scale(1.01);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-20px, 15px) scale(1.01);
    }
    66% {
        transform: translate(15px, -20px) scale(0.99);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    30% {
        transform: translateX(-50%) translateY(-20px) scale(1.02);
    }
    60% {
        transform: translateX(-50%) translateY(15px) scale(0.98);
    }
    90% {
        transform: translateX(-50%) translateY(-10px) scale(1.01);
    }
}

/* Section Styles */
section {
    padding: 8rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.5;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Featured Section */
.featured-section {
    background: var(--color-secondary);
    position: relative;
    z-index: 1;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    opacity: 1 !important;
    visibility: visible !important;
    will-change: auto;
}

.featured-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-smooth);
    opacity: 1;
    display: block;
}

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-info {
    padding: 2rem 0;
}

.featured-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.featured-info p {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Horizontal Scroll Section */
.horizontal-section {
    height: auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-container {
    display: flex;
    height: 100vh;
    width: max-content;
    align-items: center;
}

.horizontal-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    padding: 4rem;
    gap: 4rem;
    flex-shrink: 0;
}

.horizontal-content {
    flex: 1;
    max-width: 500px;
}

.horizontal-title {
    font-family: var(--font-heading);
    font-size: 12rem;
    line-height: 0.8;
    opacity: 0.1;
    margin-bottom: 1rem;
}

.horizontal-content h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.horizontal-content p {
    font-size: 1.2rem;
    opacity: 0.7;
}

.horizontal-image {
    flex: 1;
    height: 70vh;
    overflow: hidden;
    border-radius: 10px;
}

.horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    background: var(--color-secondary);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 8rem);
    display: block;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.about-image-wrapper {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
    background: var(--color-secondary);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.large-text {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.about-cta {
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--color-accent);
    color: var(--color-bg);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.4);
}

/* Services Section */
.services-section {
    background: var(--color-secondary);
}

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

.service-item {
    padding: 3rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: all 0.3s var(--ease-smooth);
}

.service-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-item p {
    opacity: 0.7;
    line-height: 1.8;
}

/* Parallax Section */
.parallax-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    animation: parallaxPan 30s ease-in-out infinite;
}

/* Slow panning animation for parallax image */
@keyframes parallaxPan {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    25% {
        transform: scale(1.15) translate(-3%, -2%);
    }
    50% {
        transform: scale(1.12) translate(2%, 3%);
    }
    75% {
        transform: scale(1.13) translate(-2%, 1%);
    }
    100% {
        transform: scale(1.1) translate(0, 0);
    }
}

.parallax-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.parallax-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 6rem);
    letter-spacing: 0.05em;
    max-width: 1200px;
}

/* Gallery Showcase */
.gallery-showcase {
    padding: 0;
    overflow: hidden;
}

.gallery-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-card {
    min-width: 500px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

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

/* Contact Section */
.contact-section {
    background: var(--color-secondary);
    padding: 8rem 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 6rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 12rem);
    letter-spacing: 0.05em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: 0.6;
    font-weight: 300;
}

.instagram-embed-container {
    max-width: 540px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: center;
}

.instagram-media {
    margin: 0 auto !important;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(255, 85, 0, 0.2);
}

.social-card:hover::before {
    opacity: 0.1;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    z-index: 1;
}

.social-card:hover .social-icon {
    background: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
}

.social-icon svg {
    transition: all 0.4s ease;
}

.social-card:hover .social-icon svg {
    stroke: var(--color-bg);
}

.social-info {
    position: relative;
    z-index: 1;
}

.social-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.social-card:hover .social-info h3 {
    color: var(--color-accent);
}

.social-info p {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 2rem;
    }
    
    .contact-header {
        margin-bottom: 4rem;
    }
    
    .instagram-embed-container {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 2.5rem 2rem;
    }
}

/* Footer */
.footer {
    padding: 3rem 4rem;
    border-top: 1px solid var(--color-border);
}

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

.footer-link {
    transition: color 0.3s ease;
}

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

/* View Project Button */
.view-project-btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s var(--ease-smooth);
}

.view-project-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: none;
    z-index: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--color-secondary);
    border-radius: 20px;
    overflow: hidden;
    z-index: 10;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--color-text);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 2rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
    z-index: 100;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
    transform: rotate(90deg);
}

.modal-scroll {
    height: 90vh;
    overflow-y: auto;
    padding: 4rem;
}

.modal-scroll::-webkit-scrollbar {
    width: 8px;
}

.modal-scroll::-webkit-scrollbar-track {
    background: var(--color-bg);
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.modal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modal-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.modal-meta {
    font-size: 1.2rem;
    opacity: 0.6;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: none;
}

.btn-view-project:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.5);
}

.btn-view-project svg {
    transition: transform 0.3s var(--ease-smooth);
}

.btn-view-project:hover svg {
    transform: translateX(5px);
}

.modal-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.modal-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease-smooth);
}

.modal-image:hover img {
    transform: scale(1.02);
}

.modal-text {
    max-width: 800px;
    margin: 0 auto;
}

.modal-section {
    margin-bottom: 4rem;
}

.modal-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.modal-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    white-space: pre-line;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 2rem;
    }

    section {
        padding: 6rem 2rem;
    }

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

    .horizontal-item {
        flex-direction: column;
        padding: 2rem;
        height: auto;
        min-height: 100vh;
    }
    
    .horizontal-content {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .horizontal-image {
        width: 100%;
        height: 50vh;
        max-height: 500px;
    }

    .about-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .gallery-card {
        min-width: 350px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        padding: 6rem 2rem 2rem;
    }

    .menu-links {
        gap: 0.5rem;
    }

    .menu-link {
        font-size: 3rem;
    }

    .menu-footer {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-image {
        width: 45vw;
        height: 30vh;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        margin-top: 2rem;
    }

    .scroll-indicator-wrapper {
        bottom: 2rem;
        scale: 0.9;
    }

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

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .modal-scroll {
        padding: 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .modal-section h2 {
        font-size: 2rem;
    }

    .modal-section p {
        font-size: 1rem;
    }
}
