/* 
   BDA GLOBAL - CORPORATE & PREMIUM HOLDING THEME v7.0
   Clean Code & High Performance Edition
*/

:root {
    --bg-main: #0b0e14;
    --bg-secondary: #0e121a;
    --bg-card: #151a23;
    --accent-primary: #d4b996;
    --accent-glow: rgba(212, 185, 150, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(11, 14, 20, 0.8);
    --gradient-accent: linear-gradient(135deg, #f5ebe0 0%, #d4b996 50%, #bc8a5f 100%);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1280px;
    --z-header: 1000;
    --z-overlay: 4500;
    --z-drawer: 5000;
    --z-modal: 6000;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100% !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Avoid inline spacing issues */
}

/* Touch Device Optimization */
@media (hover: none) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.gold-text {
    color: var(--accent-primary);
}

/* --- COMPONENTS --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 185, 150, 0.1);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid rgba(212, 185, 150, 0.2);
    margin-bottom: 1rem;
}

/* --- SECTION HEADERS --- */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-header-centered h3 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #fff;
    text-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.section-header-centered p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

.section-header-centered .badge {
    background: rgba(212, 185, 150, 0.1);
    backdrop-filter: blur(15px);
    padding: 12px 28px;
    margin-bottom: 2.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 185, 150, 0.1);
    border: 1px solid rgba(212, 185, 150, 0.3);
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(212, 185, 150, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #f5ebe0 0%, #d4b996 50%, #bc8a5f 100%);
    color: #0b0e14;
    box-shadow: 0 10px 30px rgba(212, 185, 150, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 185, 150, 0.4);
    filter: brightness(1.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* --- HEADER --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-main {
    font-size: 1.8rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: block;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.cart-wrapper {
    position: relative;
    margin-right: 1.5rem;
}

.cart-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- TICKER --- */
.top-ticker {
    background: #000;
    border-bottom: 1px solid var(--border-color);
    height: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    height: 100%;
    align-items: center;
}

.ticker-item {
    padding: 0 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ticker-item .price {
    color: var(--accent-primary);
    font-weight: 700;
    margin-left: 6px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- HERO --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    position: relative;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent, rgba(11, 14, 20, 0.8));
    z-index: -1;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 4rem 3rem;
    background: rgba(11, 14, 20, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.trust-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    display: block;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- PRODUCTS --- */
/* --- MARKET PAGE PREMIUM ENHANCEMENTS --- */
.market-fullscreen {
    padding: 10rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

.market-header-section {
    text-align: center;
    margin-bottom: 6rem;
}

.market-header-section .main-title {
    font-size: 4rem;
    margin: 1.5rem 0;
    letter-spacing: -2px;
}

.market-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 2.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.market-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 185, 150, 0.05), transparent);
    pointer-events: none;
}

.market-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 185, 150, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.market-card.flash-up {
    animation: flashGreen 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-card.flash-down {
    animation: flashRed 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes flashGreen {
    0% {
        background: rgba(4, 209, 130, 0.1);
        border-color: #04d182;
    }

    100% {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }
}

@keyframes flashRed {
    0% {
        background: rgba(255, 77, 77, 0.1);
        border-color: #ff4d4d;
    }

    100% {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3rem 2rem;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 185, 150, 0.1);
    color: var(--accent-primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(212, 185, 150, 0.2);
}

.product-img {
    height: 220px;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Default subtle zoom */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.15) rotate(2deg);
}

.price-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-buy {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
}

.btn-buy:hover {
    background: var(--gradient-accent);
    color: #000;
    border-color: transparent;
}

/* --- CART DRAWER --- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100vh;
    background: var(--bg-secondary);
    box-shadow: -15px 0 60px rgba(0, 0, 0, 0.9);
    z-index: var(--z-drawer);
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.btn-checkout {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-accent);
    border: none;
    color: #0b0e14;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 185, 150, 0.3);
}

.cart-drawer-header {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2.5rem;
    cursor: pointer;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

/* Expanded Cart Item Styles */
.cart-item-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.cart-item-row .item-details {
    flex: 1;
}

.cart-item-row h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cart-item-row .item-price {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-row .qty-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.qty-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.qty-control:hover {
    background: rgba(212, 185, 150, 0.2);
    border-color: var(--accent-primary);
}

.item-remove {
    background: transparent;
    border: none;
    color: #ff4d4d;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
}

.item-remove:hover {
    opacity: 1;
    transform: scale(1.1);
}

.empty-cart-view {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-view .empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-cart-view p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cart-drawer-footer {
    padding: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- MODALS --- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 3.5rem 5rem;
    max-width: 1300px;
    width: 95%;
    max-height: fit-content;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent-primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.modal-section {
    text-align: left;
}

.modal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.modal-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.modal-full-section {
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.value-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- CORPORATE ENHANCEMENTS --- */
#corporate {
    padding: 10rem 0;
}

.corporate-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 8rem;
    align-items: center;
}

.corporate-img {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.corporate-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s;
}

.corporate-img:hover img {
    transform: scale(1.05);
}

.corporate-text-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 40px;
    position: relative;
    z-index: 2;
}

.corporate-text-card h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.multi-sector-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.sector-tag {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sector-tag:hover {
    background: rgba(212, 185, 150, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.corporate-stats {
    display: flex;
    gap: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-txt {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- LOGO SWITCHER --- */
.logo-switcher-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.logo-switcher-wrapper {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
}

.logo-display {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1200px;
    overflow: hidden;
}

.logo-slide {
    position: absolute;
    opacity: 0;
    transform: translateX(100px) scale(0.7) rotateY(-30deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    filter: blur(4px) grayscale(1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.logo-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1.3) rotateY(0);
    z-index: 10;
    pointer-events: auto;
    filter: blur(0) grayscale(0);
    border-color: var(--accent-primary);
    background: rgba(212, 185, 150, 0.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 185, 150, 0.15);
}

.logo-slide.prev {
    opacity: 0.15;
    transform: translateX(-220px) scale(0.8) rotateY(35deg);
    z-index: 5;
    filter: blur(3px) grayscale(1);
}

.logo-slide.next {
    opacity: 0.15;
    transform: translateX(220px) scale(0.8) rotateY(-35deg);
    z-index: 5;
    filter: blur(3px) grayscale(1);
}

.logo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


/* --- CONTACT BUTTON FIX --- */
.btn-submit {
    /* Overriding the old contact button class */
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--gradient-accent);
    color: #0b0e14;
    box-shadow: 0 10px 20px rgba(212, 185, 150, 0.2);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 185, 150, 0.4);
    filter: brightness(1.1);
}

/* --- MARKET PAGE SPECIFIC --- */
.market-fullscreen {
    padding: 4rem 0;
}

.market-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.market-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    cursor: pointer;
    min-height: 240px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 185, 150, 0.05), transparent);
    z-index: -1;
}

.market-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--accent-primary);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-name {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.currency-symbol {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent-primary);
    background: rgba(212, 185, 150, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.main-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 1.5rem 0;
    font-family: var(--font-heading);
    transition: color 0.3s;
    letter-spacing: -1px;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.change-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.bg-up {
    background: rgba(4, 209, 130, 0.15);
    color: #04d182;
    border: 1px solid rgba(4, 209, 130, 0.2);
}

.bg-down {
    background: rgba(255, 77, 77, 0.15);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(4, 209, 130, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(4, 209, 130, 0.2);
}

.status-indicator span {
    color: #04d182;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refresh-indicator {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.market-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.market-card.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 7000;
    width: 95%;
    max-width: 550px;
    background: var(--bg-main);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 185, 150, 0.1);
    padding: 4rem;
}

.market-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    z-index: 6500;
    transition: var(--transition);
}

.market-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Payment Maintenance Styling */
.payment-maintenance {
    max-width: 650px;
    background: #0f1218;
    border: 1px solid var(--accent-primary);
    padding: 4rem;
    text-align: center;
}

.maintenance-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

.maintenance-text {
    margin: 2rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.maintenance-actions {
    background: rgba(212, 185, 150, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 185, 150, 0.1);
}

.contact-number-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-number-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 185, 150, 0.4);
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* --- SERVICES / ECOSYSTEM --- */
#services {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    padding: 10rem 0;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.service-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-list li {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.serv-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 185, 150, 0.05);
    border: 1px solid rgba(212, 185, 150, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-list li:hover .serv-icon {
    background: var(--gradient-accent);
    color: #0b0e14;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 185, 150, 0.3);
}

.serv-txt h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.serv-txt p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.premium-glass-card {
    position: relative;
    height: 600px;
    border-radius: 48px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.premium-glass-card .card-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1280') no-repeat center;
    background-size: cover;
    opacity: 0.5;
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-glass-card:hover .card-bg {
    transform: scale(1.15);
    opacity: 0.7;
}

.card-overlay-txt {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 4rem;
    background: linear-gradient(to top, rgba(11, 14, 20, 1) 0%, rgba(11, 14, 20, 0.8) 30%, transparent 100%);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.premium-glass-card:hover .card-overlay-txt {
    backdrop-filter: blur(2px);
    background: linear-gradient(to top, rgba(11, 14, 20, 0.9) 0%, rgba(11, 14, 20, 0.6) 40%, transparent 100%);
}

.card-overlay-txt h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.card-overlay-txt p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.card-footer-line {
    width: 80px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 185, 150, 0.4);
}

/* --- MANIFESTO SECTION --- */
#manifesto {
    padding: 12rem 0;
    background: #0d1117;
    overflow: hidden;
    position: relative;
}

.manifesto-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.manifesto-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(212, 185, 150, 0.15);
    white-space: nowrap;
    z-index: -1;
    text-transform: uppercase;
    animation: marqueeText 100s linear infinite;
    pointer-events: none;
    user-select: none;
    letter-spacing: 1vw;
}

@keyframes marqueeText {
    from {
        transform: translate(-10%, -50%);
    }

    to {
        transform: translate(-90%, -50%);
    }
}

.manifesto-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.manifesto-title {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

.m-line {
    display: block;
    animation: fadeInUp 1s forwards;
    opacity: 0;
    transform: translateY(30px);
    background: linear-gradient(to bottom, #fff, #eee);
    -webkit-background-clip: text;
    background-clip: text;
}

.m-line.gold-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.m-line:nth-child(2) {
    animation-delay: 0.2s;
}

.m-line:nth-child(3) {
    animation-delay: 0.4s;
}

.manifesto-footer {
    margin-top: 4rem;
    opacity: 0.7;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Particles / Decorative Elements */
.manifesto-particles .particle {
    position: absolute;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: -1;
}

.p1 {
    width: 300px;
    height: 300px;
    top: -10%;
    left: -10%;
    animation: float 15s infinite alternate;
}

.p2 {
    width: 400px;
    height: 400px;
    bottom: -20%;
    right: -10%;
    animation: float 20s infinite alternate-reverse;
}

.p3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    background: #fff !important;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 100px) scale(1.2);
    }
}

/* --- CONTACT PAGE PREMIUM --- */
.contact-page-header {
    padding: 12rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 185, 150, 0.05), transparent);
}

.contact-section {
    padding-bottom: 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 24px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.04);
}

.info-card h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(212, 185, 150, 0.1);
}

.kvkk-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.kvkk-wrapper label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.kvkk-link {
    color: var(--accent-primary);
    text-decoration: underline;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-accent);
    border: none;
    color: #0b0e14;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 185, 150, 0.3);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- FOOTER --- */
footer {
    background: #050608;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5rem;
}

/* --- UTILITIES --- */
.scrolled {
    padding: 0.8rem 0 !important;
    background: rgba(11, 14, 20, 0.95) !important;
}

/* --- MOBILE RESPONSIVE SYSTEM --- */

/* Mobile Menu Toggle - Premium Style */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(212, 185, 150, 0.1);
    border-color: var(--accent-primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 5px;
}

body.menu-open .mobile-menu-toggle {
    background: var(--bg-card);
    border-color: var(--accent-primary);
}

body.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background: var(--accent-primary);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
    transform: scale(0);
    opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    background: var(--accent-primary);
}

@media (max-width: 1024px) {
    :root {
        --container-width: 95%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(11, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }

    body.menu-open .nav-links {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 0.5rem;
        /* Tighter gap for smaller screens */
    }

    .cart-wrapper {
        margin-right: 0.5rem;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    /* Corporate Section */
    .corporate-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .multi-sector-list {
        justify-content: center;
    }

    .corporate-stats {
        justify-content: center;
    }

    /* Services Section */
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .service-visual {
        order: -1;
    }

    .premium-glass-card {
        height: 400px;
    }

    .card-overlay-txt {
        padding: 3rem 2rem;
        justify-content: center;
        /* Center vertically if space is tight */
    }

    .card-overlay-txt h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .card-overlay-txt p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .modal-content {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        width: 95%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .market-header-section .main-title {
        font-size: 2.5rem;
    }

    .market-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.2;
    }

    .section-header-centered h3 {
        font-size: 2.5rem;
    }

    .section-header-centered .badge {
        letter-spacing: 3px;
    }

    /* Market Grid */
    .market-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Manifesto */
    .manifesto-title {
        font-size: 2.8rem;
    }

    .manifesto-bg-text {
        font-size: 30vw;
    }

    /* Modal Adjustments */
    .modal-content {
        padding: 2.5rem 1.5rem !important;
        border-radius: 24px !important;
        width: 95% !important;
        height: auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .corporate-text-card {
        padding: 2.5rem;
    }

    .corporate-text-card h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 0.5rem !important;
    }

    .product-card {
        padding: 1.2rem 0.8rem;
    }

    .product-img {
        height: 110px;
    }

    .product-specs {
        display: none;
    }

    .product-card h3 {
        font-size: 0.9rem;
        height: 2.2em;
        overflow: hidden;
    }

    .price-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .product-price {
        font-size: 1rem;
    }

    .btn-buy {
        padding: 10px;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    .product-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        top: 8px;
        right: 8px;
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 100% !important;
        padding: 1.5rem;
        right: -100%;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .ticker-content {
        animation-duration: 45s;
        /* Slower for readability */
    }

    .ticker-item {
        padding: 0 1rem;
        font-size: 0.7rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .corporate-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Support for very small devices (like iPhone SE/5) */
    .premium-glass-card {
        height: auto !important;
        min-height: 400px;
    }

    .card-overlay-txt {
        padding: 2rem 1.25rem !important;
    }

    .card-overlay-txt h3 {
        font-size: 1.6rem !important;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        padding: 0 1.5rem !important;
    }
}
/* --- COOKIE CONSENT --- */
.cookie-consent {
    position: fixed;
    bottom: -150px;
    left: 2rem;
    right: 2rem;
    background: rgba(14, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.active {
    bottom: 2rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 24px;
    background: var(--gradient-accent);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 185, 150, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem;
        left: 1rem;
        right: 1rem;
    }
    
    .cookie-consent.active {
        bottom: 1rem;
    }
}

/* --- CONTACT HOME SECTION --- */
.contact-home {
    background: var(--bg-secondary);
    padding: 10rem 0;
    border-top: 1px solid var(--border-color);
}

.contact-home-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-home-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 1.5rem 0;
}

.contact-home-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-home-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 185, 150, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    border: 1px solid rgba(212, 185, 150, 0.2);
}

.info-details span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-details strong {
    font-size: 1.2rem;
    color: #fff;
}

.contact-home-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.contact-home-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-home-form input,
.contact-home-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-home-form input:focus,
.contact-home-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
    .contact-home-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .contact-home-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-home-info {
        align-items: center;
    }
    
    .contact-home-text h2 {
        font-size: 2.8rem;
    }
}
