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

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background: #000;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

body.page-loaded {
    opacity: 1;
}

/* Page load animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero section animations */
.hero .hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero .hero-bottom {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Service sections animations */
.service .service-layout {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

/* Grid section animations */
.grid-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.grid-card:nth-child(1) {
    animation-delay: 0.2s;
}

.grid-card:nth-child(2) {
    animation-delay: 0.4s;
}

.grid-card:nth-child(3) {
    animation-delay: 0.6s;
}

.grid-card:nth-child(4) {
    animation-delay: 0.8s;
}

/* About section animations */
#section-7 .img-container {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

#section-7 .txt-container {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Navigation Styles */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    margin: 1rem auto 0;
    min-height: 64px;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 700ms ease-in-out;
    position: relative;
    z-index: 100;
}

/* Scrolled State */
.nav-header.scrolled .nav-container {
    max-width: 720px;
    background: rgba(33, 33, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid #e30613;
    margin: 1rem auto 0;
    padding: 1rem 1.5rem;
}

.nav-header.scrolled .nav-links {
    gap: 2.25rem;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #ffffff;
    transition: all 700ms ease-in-out;
    white-space: nowrap;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e30613;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 700ms ease-in-out;
}

.nav-header.scrolled .logo-text {
    font-size: 1.25rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 700ms ease-in-out;
}

.nav-header.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: gap 700ms ease-in-out;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 300ms ease;
    white-space: nowrap;
}

.nav-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 300ms ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Vertical Divider */
.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1.5rem;
    transition: all 700ms ease-in-out;
}

.nav-header.scrolled .nav-divider {
    height: 20px;
    margin: 0 1rem;
}

/* Dropdown Group */
.nav-dropdown-group {
    position: relative;
    display: inline-block;
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    padding-top: 1rem;
    min-width: max-content;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease-out, transform 180ms ease-out;
    z-index: 200;
    pointer-events: none;
}

/* Dropdown Inner Container */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
}

.nav-dropdown a {
    position: relative;
    z-index: 1;
}

/* Dropdown Visual Container */
.nav-dropdown {
    background-clip: padding-box;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    z-index: -1;
    transition: none;
}

/* Scrolled State Dropdown */
.nav-header.scrolled .nav-dropdown::after {
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dropdown Hover State */
.nav-dropdown-group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

/* Dropdown Links Container */
.nav-dropdown {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Dropdown Links */
.dropdown-link {
    display: block;
    padding: 0.625rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0.5rem;
    transition: all 200ms ease;
    position: relative;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateX(4px);
}

/* Sticky Wrapper - Contains sections 1-6 */
.sticky-wrapper {
    position: relative;
    height: 600vh; /* 6 sections × 100vh each */
}

/* Section Base Styles */
.section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Z-index Stacking - Each section stacks on top */
#section-1 {
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), 
                      url('slike/00.jpeg');
}

#section-2 {
    z-index: 2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                      url('slike/stambene-zgrade/00.jpeg');
}

#section-3 {
    z-index: 3;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                      url('slike/nestambene-zgrade/00.jpeg');
}

#section-4 {
    z-index: 4;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                      url('slike/dvorista-i-okucnice/02.jpeg');
}

#section-5 {
    z-index: 5;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                      url('slike/drenaza-i-hidroizolacija/01.jpeg');
}

#section-5b {
    z-index: 6;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                      url('slike/nadogradnja-i-rekonstrukcija/00.jpeg');
}

/* Section Content Container */
.section-content {
    width: 100%;
    height: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hero Section Styles */
.hero .section-content {
    justify-content: flex-start;
}

.hero-title {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
}

.hero-title h1 {
    font-size: clamp(2.75rem, 5.5vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
    color: #e30613;
    font-size: clamp(4.5rem, 9.5vw, 9.5rem);
    line-height: 0.95;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
}

.bottom-left, .bottom-right {
    max-width: 300px;
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    font-weight: 500;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.bottom-right {
    text-align: right;
}

.meta {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
    font-weight: 400;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    transition: color 400ms ease;
    z-index: 1;
}

.hero-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #e30613;
    transition: height 400ms ease;
    z-index: -1;
}

.hero-button:hover {
    color: #ffffff;
    border-color: #e30613;
}

.hero-button:hover::before {
    height: 100%;
}

/* Service Section Styles */
.service .section-content {
    justify-content: center;
    align-items: center;
}

.service-layout {
    max-width: 800px;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    line-height: 1;
    color: #e30613;
    opacity: 0.6;
    flex-shrink: 0;
}

.service-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.service-info p {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: -0.01em;
}

/* Navigation Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        margin-top: 0.75rem;
        min-height: 58px;
        align-items: center;
    }

    .nav-header.scrolled .nav-container {
        padding: 0.85rem 1.5rem;
        margin-top: 0.75rem;
        max-width: 90%;
        min-height: 48px;
    }

    .nav-logo {
        font-size: 1.25rem;
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 42px;
    }

    .nav-header.scrolled .logo-img {
        height: 35px;
    }

    .nav-divider {
        height: 20px;
        margin: 0 1rem;
        align-self: center;
    }

    .nav-header.scrolled .nav-divider {
        height: 18px;
        margin: 0 0.75rem;
    }

    .nav-links {
        gap: 1.5rem;
        display: flex;
        align-items: center;
    }

    .nav-link {
        font-size: 1rem;
        display: flex;
        align-items: center;
    }

    .dropdown-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.9rem 1rem;
        margin-top: 0.6rem;
        min-height: 54px;
        align-items: center;
    }

    .nav-header.scrolled .nav-container {
        padding: 0.75rem 1rem;
        max-width: 95%;
        min-height: 44px;
    }

    .nav-logo {
        font-size: 1.125rem;
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 38px;
    }

    .nav-header.scrolled .logo-img {
        height: 32px;
    }

    .nav-divider {
        height: 18px;
        margin: 0 0.75rem;
        align-self: center;
    }

    .nav-header.scrolled .nav-divider {
        height: 16px;
        margin: 0 0.5rem;
    }

    .nav-links {
        gap: 0.875rem;
        display: flex;
        align-items: center;
    }

    .nav-link {
        font-size: 0.95rem;
        display: flex;
        align-items: center;
    }

    .dropdown-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .nav-dropdown {
        padding-bottom: 0.375rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-content {
        padding: 1.5rem;
    }

    .hero-title {
        padding-top: 0;
    }

    .hero-title h1 {
        font-size: clamp(2.1rem, 9vw, 3.9rem);
        line-height: 1;
        letter-spacing: -0.01em;
    }

    .hero-highlight {
        font-size: clamp(3.2rem, 13vw, 6rem);
        line-height: 0.95;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .bottom-left, .bottom-right {
        max-width: 100%;
    }

    .bottom-right {
        text-align: center;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .service-layout {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .service-number {
        font-size: 4rem;
    }

    .service-info h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.2;
    }

    .service-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .section-content {
        padding: 1rem;
    }

    .hero-title {
        padding-top: 0;
    }

    .hero-title h1 {
        font-size: clamp(1.8rem, 8.5vw, 3rem);
        line-height: 1.05;
    }

    .hero-highlight {
        font-size: clamp(3rem, 14.5vw, 4.75rem);
        line-height: 0.95;
    }

    .eyebrow {
        font-size: 0.65rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .hero-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.85rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-info h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .service-info p {
        font-size: 0.875rem;
    }
}

/* Grid Section Styles */
.grid-section {
    padding: 6rem 4rem;
    background: #0a0a0a;
    z-index: 6;
    position: relative;
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-card {
    position: relative;
    height: 450px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 300ms ease;
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 300ms ease, transform 300ms ease;
}

.card-center-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-align: center;
    opacity: 1;
    transition: opacity 300ms ease;
    pointer-events: none;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.72);
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    max-width: 400px;
}

/* Hover Effects */
.grid-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.72);
}

.grid-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.grid-card:hover .card-center-title {
    opacity: 0;
}

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

/* Grid Section Responsive - Tablet */
@media (max-width: 768px) {
    .grid-section {
        padding: 4rem 1.5rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid-card {
        height: 400px;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .card-center-title {
        font-size: 2rem;
        padding: 1.5rem;
    }
}

/* Grid Section Responsive - Mobile */
@media (max-width: 480px) {
    .grid-section {
        padding: 3rem 1rem;
    }

    .grid-container {
        gap: 1rem;
    }

    .grid-card {
        height: 350px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-description {
        font-size: 0.875rem;
    }

    .card-center-title {
        font-size: 1.5rem;
        padding: 1.25rem;
    }

    /* Make hover effect always visible on mobile */
    .card-overlay {
        background: rgba(0, 0, 0, 0.32);
    }

    .card-content {
        opacity: 1;
        transform: translateY(0);
    }

    .card-center-title {
        opacity: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ========================================
   FOOTER SECTION - MINIMALIST ELEGANCE
   ======================================== */

.footer-section {
    position: relative;
    width: 100%;
    height: 50vh;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    z-index: 8;
    overflow: hidden;
}

.footer-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
}

/* Upper Section - Contact Info (0-20vh) */
.footer-upper {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-info-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: start;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    align-items: center;
    justify-content: center;
}

.footer-social-link {
    display: inline-block;
    transition: transform 300ms ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-link:hover .footer-social-icon {
    fill: rgba(255, 255, 255, 1);
}

.footer-social-icon {
    width: 28px;
    height: 28px;
    transition: fill 300ms ease;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.footer-company {
    white-space: nowrap;
}

.footer-links {
    gap: 0.375rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 300ms ease;
    line-height: 1.8;
    display: block;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-link-contact {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 300ms ease;
    line-height: 1.8;
    display: block;
    cursor: pointer;
}

.footer-link-contact:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-credits {
    gap: 0.75rem;
}

.footer-made-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Horizontal Divider Line */
.footer-divider {
    position: absolute;
    top: 20vh;
    left: 4rem;
    right: 4rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* Lower Section - Large Brand Title (20vh-50vh) */
.footer-lower {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0rem;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    
    /* Strix-style vertical gradient mask */
    background: linear-gradient(to bottom, #ffffff 10%, rgba(255, 255, 255, 0.01) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-highlight {
    /* Orange gradient for TRANS */
    background: linear-gradient(to bottom, #e30613 10%, rgba(255, 107, 0, 0.01) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Responsive - Tablet */
@media (max-width: 768px) {
    .footer-section {
        height: auto;
        min-height: 70vh;
    }

    .footer-container {
        padding: 2rem 1.5rem;
    }

    .footer-upper {
        height: auto;
        padding: 1.5rem 0;
    }
    
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
        gap: 0.375rem;
    }

    .footer-social {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-links {
        grid-column: 1;
        grid-row: auto;
        text-align: center;
        align-items: center;
    }

    .footer-credits {
        grid-column: 1;
        grid-row: auto;
        align-items: center;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .footer-social-icon {
        width: 24px;
        height: 24px;
    }

    .footer-made-by {
        justify-content: center;
    }

    .footer-logo {
        width: 45px;
        height: 45px;
    }

    .footer-divider {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        margin: 1.5rem 0;
    }

    .footer-lower {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        font-size: clamp(2rem, 9vw, 4rem);
        letter-spacing: 0.02em;
        font-weight: 900;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 480px) {
    .footer-section {
        height: auto;
        min-height: 60vh;
    }

    .footer-container {
        padding: 2rem 1.5rem;
    }

    .footer-upper {
        height: auto;
        padding: 1.5rem 0;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
        gap: 0.375rem;
    }

    .footer-social {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-links {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-credits {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .footer-social-icon {
        width: 24px;
        height: 24px;
    }

    .footer-made-by {
        justify-content: center;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-divider {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        margin: 1.5rem 0;
    }

    .footer-lower {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 0.02em;
        font-weight: 900;
    }
}

/* ===================================
   SECTION 7 - ABOUT US (STATIC)
   =================================== */

#section-7 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
}

.section-7-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    gap: 2rem;
}

/* Image Container - 70% width */
.img-container {
    width: 70%;
    height: 80vh;
    flex-shrink: 0;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Text Container - 30% width */
.txt-container {
    width: 30%;
    padding: 3rem 2.5rem;
    border: 1px solid #e30613;
    border-radius: 24px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.txt-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.txt-container p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: -0.01em;
}

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

    .img-container {
        width: 65%;
        height: 70vh;
    }

    .txt-container {
        width: 35%;
        padding: 2.5rem 2rem;
    }

    .txt-container h2 {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .txt-container p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #section-7 {
        min-height: auto;
    }

    .section-7-wrapper {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .img-container {
        width: 100%;
        height: 50vh;
    }

    .txt-container {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .txt-container h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }

    .txt-container p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-7-wrapper {
        padding: 1.5rem 1rem;
    }

    .img-container {
        height: 40vh;
    }

    .txt-container {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .txt-container h2 {
        margin-bottom: 0.75rem;
    }
}
