:root {
    --primary-blue: #01013F;
    --navy: #0a1628;
    --deep-blue: #1a2b47;
    --gold: #d4af37;
    --gold-light: #e8c76a;
    --cream: #f8f6f1;
    --grey: #e8e8eb;
    --white-tint: #f5f5f7;
    --text-dark: #1a1a1a;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ===== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.3rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary-blue);
}

nav.scrolled {
    background: rgba(245, 245, 247, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 0.3rem 3rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Image Logo Styles (Active) */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .logo-image {
    height: 45px;
}

.logo:hover .logo-image {
    opacity: 0.85;
}

/* Text Logo Styles (Commented for easy reversal)
.logo {
    background: var(--primary-blue);
    padding: 0.6rem 1.8rem;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .logo {
    box-shadow: 0 4px 20px rgba(1, 1, 63, 0.2);
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    color: var(--gold-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.15rem;
    font-weight: 400;
    transition: all 0.3s;
}
*/

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

nav.scrolled .nav-links a {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .menu-toggle span {
    background: var(--primary-blue);
}

/* ===== HERO SECTION ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #020250 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(232, 199, 106, 0.06) 0%, transparent 50%);
    opacity: 0.8;
    animation: floatAnimation 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: floatAnimation 25s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.btn {
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-blue);
    border: 2px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover::before {
    left: 0;
}

/* ===== SECTION STYLING ===== */

section {
    padding: 8rem 3rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

/* ===== OVERVIEW SECTION ===== */

#overview {
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card.visible .benefit-icon {
    animation: rotateIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== PROCESS SECTION ===== */

#process {
    background: linear-gradient(to bottom, white, var(--grey));
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Force last two to center */
.process-step:nth-child(4),
.process-step:nth-child(5) {
    flex: 0 1 calc(33.333% - 2rem);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ASSET TYPES SECTION ===== */

#assets {
    background: var(--cream);
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.asset-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.asset-card.visible {
    opacity: 1;
    transform: scale(1);
}

.asset-card {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Layer 1: Image placeholder area - top 40% with zoom effect */
.asset-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.asset-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.asset-card:hover .asset-image-placeholder img {
    transform: scale(1.15);
}

/* Layer 2: Blue background - bottom 60% with zoom effect */
.asset-background {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #020250 100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.asset-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.8s;
}

.asset-card:hover .asset-background {
    transform: scale(1.15);
}

.asset-card:hover .asset-background::before {
    left: 100%;
}

/* Layer 3: Icon - centered in blue area, NOT affected by zoom */
.asset-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    z-index: 2;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 3rem; /* Default size */
}

/* --- Specific Size Modifiers --- */
.asset-icon.size-sm { font-size: 2.5rem; }
.asset-icon.size-md { font-size: 3rem; }
.asset-icon.size-lg { font-size: 3.5rem; }

.asset-card:hover .asset-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Layer 4: Text overlay - slides up on hover */
.asset-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 1, 63, 0.95), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.asset-card:hover .asset-overlay {
    transform: translateY(0);
}

.asset-overlay h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.asset-overlay p {
    font-size: 0.95rem;
    color: var(--cream);
}

/* Hide the separate containers (not used in this version) */
.asset-icon-container,
.asset-content {
    display: none;
}

/* ===== WHY NEVILLE SION SECTION ===== */

#why-us {
    background: var(--primary-blue);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: floatAnimation 30s ease-in-out infinite;
}

#why-us .section-title {
    color: var(--gold);
}

#why-us .section-subtitle {
    color: var(--grey);
}

.differentiators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.differentiator {
    padding: 2.5rem;
    border-left: 3px solid var(--gold);
    background: rgba(105, 103, 103, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    backdrop-filter: blur(10px);
    flex: 0 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.differentiator.visible {
    opacity: 1;
    transform: translateX(0);
}

.differentiator:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-left-width: 5px;
}

.differentiator h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.differentiator p {
    color: var(--grey);
    line-height: 1.8;
}

/* ===== FOR WHOM SECTION ===== */

#for-whom {
    background: var(--cream);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2.5rem;
    background: white;
    border: 2px solid var(--gold);
    color: var(--navy);
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 63, 0.1);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.tab-button:hover::before {
    opacity: 1;
}

.tab-button.active {
    background: var(--primary-blue);
    color: var(--gold);
    border-color: var(--primary-blue);
}

.tab-button:hover:not(.active) {
    background: rgba(1, 1, 63, 0.05);
}

.tab-content {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--grey);
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s;
}

.tab-content li:hover {
    padding-left: 2.5rem;
    color: var(--text-dark);
}

.tab-content li:last-child {
    border-bottom: none;
}

.tab-content li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.tab-content li:hover::before {
    transform: scale(1.3);
}

.tab-content li strong {
    color: var(--navy);
}

/* ===== CONTACT SECTION ===== */

#contact {
    background: var(--primary-blue);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    animation: floatAnimation 25s ease-in-out infinite reverse;
}

#contact .section-title {
    color: var(--gold);
}

#contact .section-subtitle {
    color: var(--grey);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 246, 241, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--cream);
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: var(--gold);
    color: var(--primary-blue);
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover::before {
    left: 0;
}

/* ===== FOOTER ===== */

footer {
    background: #000020;
    color: var(--grey);
    text-align: center;
    padding: 3rem 2.5rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo-image:hover {
    opacity: 1;
}

footer p {
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 968px) {
    nav {
        padding: 0.3rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--cream);
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex: 0 1 auto;
        width: 100%;
        max-width: 400px;
    }

    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        flex: 0 1 auto;
    }

    .assets-grid,
    .differentiators {
        flex-direction: column;
        align-items: center;
    }

    .assets-grid {
        display: flex;
    }

  .asset-card {
        width: 100%;
        max-width: 400px;
    }

    .differentiator {
        flex: 0 1 auto;
        width: 100%;
    }
  
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    /* Image Logo - Mobile */
    .logo-image {
        height: 40px;
    }

    nav.scrolled .logo-image {
        height: 38px;
    }

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

    /* Text Logo - Mobile (Commented)
    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.48rem;
    }
    */

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .asset-card {
        height: 380px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 1.6rem;
    }
}

/* TEMPORARY FIX - Force asset cards to show */
#assets .asset-card {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Mobile Fix - Force asset cards to show */
@media (max-width: 968px) {
    .asset-card {
        opacity: 1 !important;
        transform: scale(1) !important;
        width: 100%;
        max-width: 450px;
        margin: 0 auto 2rem;
    }
}

/* ============================================
   CONTACT INFORMATION SECTION
   Add this to your main styles.css file
   ============================================ */

.contact-info-section {
    background: linear-gradient(135deg, #01013F 0%, #020250 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-section .container {
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(232, 199, 106, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(232, 199, 106, 0.2));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-info-card a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.contact-info-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-info-card a:hover::after {
    width: 100%;
}

.contact-info-card p {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Response Banner */
.response-banner {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(232, 199, 106, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.response-banner svg {
    color: var(--gold);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.response-banner span {
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    
    .response-banner {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card a,
    .contact-info-card p {
        font-size: 0.95rem;
    }
    
    .response-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
