/* ===========================
   ZEPHORIC VILLAS PAGE
   Matching Homepage Aesthetic
   =========================== */

/* CSS VARIABLES */
:root {
    /* Zephoric Brand Colors */
    --gold: #956d46;
    --white: #FFFFFF;
    --black: #000000;
    --marble-white: #FAFAFA;
    --light-gray: #F8F8F8;
    --zephoric-navy: #1B365D;
    --zephoric-dark: #001524;
    --platinum: #E5E4E2;

    /* Typography */
    --font-serif: 'EB Garamond', serif;
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(149, 109, 70, 0.1);
    z-index: 9999;
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: translateY(-2px);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 12px rgba(149, 109, 70, 0.3);
}

.hero-logo {
    display: block;
    max-width: 300px;
    height: auto;
    margin: 0 auto var(--spacing-md) auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* SECTION TITLES */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-sm);
}

.section-intro {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* ABOUT SECTION */
.about-section {
    padding: 0;
    background: var(--marble-white);
    position: relative;
    overflow: hidden;
}

.about-split-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.about-text {
    width: 60%;
    padding: var(--spacing-xl) 5%;
    z-index: 2;
    position: relative;
    background: var(--marble-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    width: 40%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, var(--marble-white) 0%, rgba(250, 250, 250, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-md);
}

/* SERVICES INTRO */
.services-intro {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--white);
}

/* SERVICE CATEGORY SECTIONS */
.carousel-service-section {
    padding: var(--spacing-md) 0 0 0;
    background: var(--marble-white);
}

.carousel-service-section.dark {
    background: linear-gradient(135deg, #1a1625 0%, #221c32 50%, #2d2640 100%);
    color: var(--white);
}

.carousel-service-section.dark .service-category-title,
.carousel-service-section.dark .section-title {
    color: var(--white);
}

.carousel-service-section.dark .service-category-intro {
    color: rgba(255, 255, 255, 0.8);
}

.service-category-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.service-category-intro {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* INTERACTIVE ARTICLE CAROUSEL */
/* Interactive Article Carousel Styles */
.interactive-article-carousel-section {
    background: var(--white);
    padding: 0;
    margin: 0;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.interactive-article-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.interactive-article-track,
.article-carousel-track {
    display: flex;
    height: 100%;
    position: relative;
    transition: none;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.interactive-article-track::-webkit-scrollbar,
.article-carousel-track::-webkit-scrollbar {
    display: none;
}

.interactive-article-card,
.article-card {
    min-width: 300px;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.interactive-article-card:hover,
.article-card:hover {
    transform: scale(1.02);
}

.interactive-article-card::after,
.article-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.interactive-article-content,
.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 10px 20px;
    z-index: 2;
}

.interactive-article-hook,
.article-content h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4px;
    color: var(--black);
}

.interactive-article-intro,
.article-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.813rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
}

/* CAROUSEL NAVIGATION BUTTONS */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid rgba(149, 109, 70, 0.15);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--zephoric-navy);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--zephoric-navy);
    color: var(--white);
    border-color: var(--zephoric-navy);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(149, 109, 70, 0.2);
}

.carousel-nav-btn.prev {
    left: 0;
}

.carousel-nav-btn.next {
    right: 0;
}

/* SHORT-TERM RENTAL SECTION */
.str-section {
    padding: var(--spacing-xl) 0;
    background: var(--marble-white);
    position: relative;
}

.str-section.dark {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

.str-section .str-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(25%, -50%);
    height: 75%;
    width: auto;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    opacity: 0.15;
}

.str-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.str-section.dark .section-title {
    color: var(--white);
}

.str-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.str-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.str-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.str-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.str-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(149, 109, 70, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* APP SECTION */
.app-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.app-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.app-intro {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.app-feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(149, 109, 70, 0.1) 0%, rgba(149, 109, 70, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-xs);
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--black);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    border-radius: 32px;
}

/* LIFESTYLING SECTION */
.lifestyling-section {
    padding: var(--spacing-md) 0;
    background: var(--marble-white);
}

.lifestyling-section.dark {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

.lifestyling-section.dark .section-intro {
    color: var(--white);
}

.lifestyling-section .section-title {
    text-align: center;
    color: rgb(149, 109, 70);
}

.lifestyling-section .section-intro {
    font-family: var(--font-sans);
    color: var(--white);
}

.lifestyling-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    font-family: var(--font-sans);
    max-width: 900px;
    margin: 0 auto var(--spacing-md) auto;
    text-align: center;
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: 0;
}

.portfolio-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    cursor: pointer;
    background: var(--white);
    border: 2px solid rgb(149, 109, 70);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-gray);
}

.portfolio-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(27, 54, 93);
    margin: var(--spacing-md) var(--spacing-md) var(--spacing-xs) var(--spacing-md);
}

.portfolio-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgb(27, 54, 93);
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
}

/* BRAND CAROUSEL */
.brand-carousel-section {
    margin-top: var(--spacing-xl);
}

.carousel-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.brand-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(149, 109, 70, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(149, 109, 70, 0.2);
}

.brand-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FAQS SECTION */
.faqs-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.faqs-section .section-title {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: var(--spacing-lg) auto 0 auto;
    column-gap: var(--spacing-lg);
}

.faq-item {
    border-left: 3px solid var(--gold);
    transition: all var(--transition-base);
    cursor: pointer;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    padding: var(--spacing-xs) var(--spacing-sm);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 var(--spacing-sm);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-xs) var(--spacing-sm) var(--spacing-sm) var(--spacing-sm);
}

/* CTA SECTION */
.cta-section {
    padding: 40px 0 40px 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-primary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

.cta-section .btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    background: linear-gradient(to bottom, var(--marble-white) 0%, rgba(250, 250, 250, 0.5) 50%, var(--white) 100%);
    border-top: 1px solid rgba(149, 109, 70, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.footer-brand p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-md);
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: var(--spacing-xs);
}

.footer-hours {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.footer-bottom-deprecated {
    border-top: 1px solid rgba(149, 109, 70, 0.1);
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .str-content,
    .app-content {
        grid-template-columns: 1fr;
    }

    .about-split-container {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image {
        min-height: 400px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .str-features {
        grid-template-columns: 1fr;
    }

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

    .brand-carousel {
        grid-template-columns: 1fr;
    }

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

    .carousel-track-wrapper {
        padding: 0 var(--spacing-md);
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* SECTION RELATIVE POSITIONING */
section {
    position: relative;
}

section > * {
    position: relative;
    z-index: 1;
}
