/* ===================================
   LUXJOURNEY COLLECTIVE - STYLES
   Where Luxury Meets Legacy
   =================================== */

/* Root Variables */
:root {
    /* New Color Scheme: Black, Silver, Kelly Green */
    --primary-silver: #C0C0C0;
    --primary-silver-dark: #A8A8A8;
    --kelly-green: #00A86B;
    --kelly-green-dark: #008F5A;
    --pure-black: #000000;
    --soft-black: #0A0A0A;
    --light-silver: #E8E8E8;
    --off-white: #F5F5F5;
    --pearl-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-light: #D0D0D0;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--pure-black);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--pearl-white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: none;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition-smooth);
    object-fit: contain;
    mix-blend-mode: normal;
    display: block;
    filter: none;
    -webkit-filter: none;
}

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

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--off-white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
        url('../images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Hide video on mobile for performance */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pearl-white);
    padding: 2rem;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pearl-white);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subheadline {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--pearl-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-secondary-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pearl-white);
    font-family: var(--font-serif);
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--kelly-green);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--kelly-green);
    color: var(--pearl-white);
    border-color: var(--kelly-green);
}

.btn-primary:hover {
    background: var(--kelly-green-dark);
    border-color: var(--kelly-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pearl-white);
    border-color: var(--pearl-white);
}

.btn-secondary:hover {
    background: var(--pearl-white);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-silver);
    border-color: var(--primary-silver);
}

.btn-outline:hover {
    background: var(--primary-silver);
    color: var(--pure-black);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* What is LuxJourney Section */
.what-is-section {
    background: var(--soft-black);
}

.content-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--pearl-white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.expertise-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--pearl-white);
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--kelly-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 168, 107, 0.2);
}

.expertise-item i {
    font-size: 1.8rem;
    color: var(--primary-silver);
    min-width: 30px;
}

.expertise-item span {
    font-size: 1rem;
    color: var(--pearl-white);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Who We Serve Section */
.who-we-serve {
    background: var(--pure-black);
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.92)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.serve-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 168, 107, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 168, 107, 0.3);
    border-color: var(--kelly-green);
}

.serve-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--kelly-green);
}

.serve-icon i {
    display: inline-block;
    transition: var(--transition-smooth);
}

.serve-card:hover .serve-icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--kelly-green-dark);
}

.serve-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.serve-card .subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.serve-tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.serve-list {
    margin: 2rem 0;
}

.serve-list p {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

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

.serve-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.serve-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.serve-card .btn {
    margin-top: 2rem;
    width: 100%;
}

/* Signature Series Section */
.signature-series {
    background: var(--soft-black);
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1540541338287-41700207dee6?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.signature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(192, 192, 192, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.signature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: var(--transition-smooth);
    z-index: 0;
}

.signature-card:hover::before {
    opacity: 0.25;
    transform: scale(1.1);
}

.signature-card > * {
    position: relative;
    z-index: 1;
}

/* Individual Card Background Images */
.signature-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f29da8fd38?q=80&w=1600'); /* Beach wedding */
}

.signature-card:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1564769625905-50e93615e769?q=80&w=1600'); /* Jerusalem/Holy Land */
}

.signature-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?q=80&w=1600'); /* Cruise ship */
}

.signature-card:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?q=80&w=1600'); /* Luxury yacht */
}

.signature-card:nth-child(5)::before {
    background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1600'); /* Corporate/MICE */
}

.signature-card:nth-child(6)::before {
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=1600'); /* Spa/Wellness */
}

.signature-card:nth-child(7)::before {
    background-image: url('https://images.unsplash.com/photo-1602343168117-bb8ffe3e2e9f?q=80&w=1600'); /* Luxury villa */
}

.signature-card:nth-child(8)::before {
    background-image: url('https://images.unsplash.com/photo-1528543606781-2f6e6857f318?q=80&w=1600'); /* Disney castle */
}

.signature-card:nth-child(9)::before {
    background-image: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=1600'); /* Family travel */
}

.signature-card:nth-child(10)::before {
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=1600'); /* Philanthropy/helping */
}

.signature-card:nth-child(11)::before {
    background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?q=80&w=1600'); /* Carnival/Festival */
}

.signature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--kelly-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.signature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-silver);
}

.signature-icon i {
    display: inline-block;
    transition: var(--transition-smooth);
}

.signature-card:hover .signature-icon i {
    transform: scale(1.1);
    color: var(--kelly-green);
}

.signature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.signature-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--kelly-green);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.signature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Visionary Path Section */
.visionary-path {
    background: linear-gradient(135deg, var(--pure-black) 0%, #1A1A1A 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.88)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--pearl-white);
    border-top: 2px solid var(--kelly-green);
    border-bottom: 2px solid var(--kelly-green);
    position: relative;
}

.visionary-path .section-title,
.visionary-path h3 {
    color: var(--pearl-white);
}

.visionary-path .section-subtitle {
    color: var(--light-gold);
}

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

.path-content h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.path-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.path-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--kelly-green);
    transform: translateY(-3px);
}

.path-item i {
    font-size: 2.5rem;
    color: var(--kelly-green);
}

.path-item span {
    text-align: center;
    font-size: 1rem;
    color: var(--off-white);
}

/* Why Choose Section */
.why-choose {
    background: var(--pure-black);
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.90)),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-item i {
    font-size: 3rem;
    color: var(--kelly-green);
    margin-bottom: 1.5rem;
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.why-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--soft-black);
    position: relative;
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.90), rgba(10, 10, 10, 0.92)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
    border-color: var(--kelly-green);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-silver);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pearl-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.stars {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.stars i {
    color: var(--kelly-green);
    font-size: 1rem;
}

/* Join Collective Section */
.join-collective {
    background: linear-gradient(135deg, var(--pure-black) 0%, #0A0A0A 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.88)),
        url('https://images.unsplash.com/photo-1528605105345-5344ea20e269?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--pearl-white);
    border-top: 2px solid var(--kelly-green);
    border-bottom: 2px solid var(--kelly-green);
    position: relative;
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.join-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.join-content p {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pearl-white);
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--kelly-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
}

.newsletter-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

/* Final CTA Section */
.final-cta {
    background: var(--soft-black);
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(192, 192, 192, 0.1);
}

.final-cta-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--kelly-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.3);
}

.final-cta-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.final-cta-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.final-cta-card .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--pure-black);
    color: var(--off-white);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--kelly-green);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
    display: block;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--light-gold);
    font-style: italic;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
    letter-spacing: 0.5px;
}

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

.footer-column h4 {
    color: var(--kelly-green);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--off-white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--kelly-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 50%;
    color: var(--primary-silver);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.social-icons a:hover {
    background: var(--kelly-green);
    color: var(--pearl-white);
    transform: translateY(-3px);
    border-color: var(--kelly-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: 3rem;
    }

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

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .serve-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero {
        min-height: 600px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }
    
    .footer-logo-image {
        height: 90px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .expertise-list,
    .signature-grid,
    .why-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 4rem 0;
    }

    .serve-card,
    .testimonial-card,
    .final-cta-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 65px;
    }
    
    .footer-logo-image {
        height: 85px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }

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

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

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

    .serve-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-item,
    .signature-card {
        padding: 1.5rem;
    }
}

/* Animations & Effects */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

/* Smooth Scroll Offset for Fixed Nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* ===================================
   GHL INTEGRATION STYLES
   =================================== */

/* GHL Integration Note */
.ghl-integration-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 168, 107, 0.1);
    border-left: 4px solid var(--kelly-green);
    border-radius: 6px;
    text-align: center;
}

.ghl-integration-note small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.ghl-integration-note a {
    color: var(--kelly-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.ghl-integration-note a:hover {
    color: var(--kelly-green-dark);
    text-decoration: underline;
}

/* GHL Modal Styles */
.ghl-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.ghl-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghl-modal-content {
    background: var(--soft-black);
    margin: 2rem auto;
    padding: 3rem;
    border: 2px solid var(--primary-silver);
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 168, 107, 0.3);
    animation: slideUp 0.4s ease;
}

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

.ghl-modal-close {
    color: var(--primary-silver);
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.ghl-modal-close:hover,
.ghl-modal-close:focus {
    color: var(--kelly-green);
    transform: rotate(90deg);
}

.ghl-modal-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--pearl-white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.ghl-modal-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* GHL Placeholder Form Styles */
.ghl-form-container {
    margin-top: 2rem;
}

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

.ghl-placeholder-form label {
    display: block;
    color: var(--primary-silver);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.ghl-placeholder-form input[type="text"],
.ghl-placeholder-form input[type="email"],
.ghl-placeholder-form input[type="tel"],
.ghl-placeholder-form select,
.ghl-placeholder-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--pure-black);
    border: 2px solid var(--primary-silver);
    border-radius: 8px;
    color: var(--pearl-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.ghl-placeholder-form input:focus,
.ghl-placeholder-form select:focus,
.ghl-placeholder-form textarea:focus {
    outline: none;
    border-color: var(--kelly-green);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.2);
}

.ghl-placeholder-form textarea {
    resize: vertical;
    min-height: 100px;
}

.ghl-placeholder-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C0C0C0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkbox-group label:hover {
    color: var(--kelly-green);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    cursor: pointer;
    accent-color: var(--kelly-green);
}

/* Signature Link for "Learn More" */
.signature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--kelly-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.signature-link:hover {
    color: var(--kelly-green-dark);
    transform: translateX(5px);
}

/* Mobile Responsive Adjustments for GHL Modals */
@media (max-width: 768px) {
    .ghl-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }

    .ghl-modal-title {
        font-size: 2rem;
    }

    .ghl-modal-subtitle {
        font-size: 1rem;
    }

    .ghl-modal-close {
        font-size: 2rem;
        right: 1rem;
        top: 1rem;
    }
}

@media (max-width: 480px) {
    .ghl-modal-content {
        padding: 1.5rem 1rem;
    }

    .ghl-modal-title {
        font-size: 1.6rem;
    }

    .ghl-placeholder-form input,
    .ghl-placeholder-form select,
    .ghl-placeholder-form textarea {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
}

/* ===================================
   FREE PREMIUM ENHANCEMENTS
   =================================== */

/* 1. WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    background: #22c55e;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
        bottom: 80px;
        right: 20px;
    }
}

/* 2. Social Proof Ticker */
.social-proof-ticker {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--soft-black);
    border: 1px solid var(--primary-silver);
    border-left: 3px solid var(--kelly-green);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 997;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.social-proof-ticker.show {
    opacity: 1;
    transform: translateY(0);
}

.proof-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--pearl-white);
    font-size: 0.9rem;
}

.proof-content i {
    color: var(--kelly-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .social-proof-ticker {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .proof-content {
        gap: 0.6rem;
        font-size: 0.85rem;
    }
}

/* 3. Exit-Intent Modal */
.exit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.exit-modal.active {
    display: flex;
}

.exit-modal-content {
    background: linear-gradient(135deg, var(--soft-black) 0%, #1A1A1A 100%);
    border: 2px solid var(--primary-silver);
    padding: 3rem;
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 168, 107, 0.2);
}

.exit-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-silver);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.exit-modal-close:hover {
    color: var(--kelly-green);
    transform: rotate(90deg);
}

.exit-icon {
    font-size: 4rem;
    color: var(--kelly-green);
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

.exit-modal-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--pearl-white);
    margin-bottom: 0.5rem;
}

.exit-modal-content h3 {
    font-size: 1.4rem;
    color: var(--kelly-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.exit-modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.exit-form {
    margin-top: 2rem;
}

.exit-form .form-group {
    margin-bottom: 1rem;
}

.exit-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-silver);
    border-radius: 8px;
    color: var(--pearl-white);
    font-size: 1rem;
    transition: all 0.3s;
}

.exit-form input:focus {
    outline: none;
    border-color: var(--kelly-green);
    background: rgba(255, 255, 255, 0.08);
}

.exit-form .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.exit-privacy {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 1rem;
    margin-bottom: 0;
}

.exit-privacy i {
    color: var(--kelly-green);
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .exit-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .exit-modal-content h2 {
        font-size: 1.8rem;
    }
    
    .exit-modal-content h3 {
        font-size: 1.2rem;
    }
    
    .exit-icon {
        font-size: 3rem;
    }
}

/* 4. Urgency/Scarcity Notice */
.availability-notice {
    background: linear-gradient(90deg, var(--kelly-green) 0%, #008F5A 100%);
    padding: 1.2rem 0;
    text-align: center;
    border-top: 2px solid var(--kelly-green-dark);
    border-bottom: 2px solid var(--kelly-green-dark);
}

.availability-notice .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--pearl-white);
    font-size: 1.05rem;
    font-weight: 500;
}

.availability-notice i {
    font-size: 1.4rem;
    animation: pulse 2s ease-in-out infinite;
}

.availability-notice strong {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .availability-notice {
        padding: 1rem 1rem;
    }
    
    .availability-notice .container {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .availability-notice i {
        font-size: 1.2rem;
    }
}

/* 5. Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--kelly-green) 0%, #00D17A 100%);
    z-index: 9999;
    transition: width 0.2s ease;
    box-shadow: 0 0 10px var(--kelly-green);
}

/* 6. Button Ripple Effect */
.btn, .cta-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 7. Enhanced Hover States */
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--kelly-green), #00D17A);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* 8. Floating Animation for Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-icon, .section-icon {
    animation: float 3s ease-in-out infinite;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--soft-black) 0%, #1A1A1A 100%);
    border-top: 2px solid var(--kelly-green);
    padding: 1.5rem 0;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--kelly-green);
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}
