/*
Theme Name: Ewa Theme
Theme URI: https://www.ewaofficial.co.uk/
Author: Ewa Team
Author URI: https://www.ewaofficial.co.uk/
Description: A premium theme converted from custom HTML, CSS, and JS for Ewa Official Afro Hairdressers UK.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ewa-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #09090b;
    --bg-secondary: #121214;
    --bg-tertiary: #1c1c1f;
    --accent-gold: #d4af37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-champagne: #f3e5ab;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-hover: rgba(212, 175, 55, 0.3);
    --glass-bg: rgba(18, 18, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-alt: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-mode {
    --bg-primary: #fafafa;
    --bg-secondary: #f4f4f5;
    --bg-tertiary: #ffffff;
    --text-primary: #09090b;
    --text-secondary: #3f3f46;
    --text-muted: #71717a;
    --border-color: rgba(184, 147, 38, 0.2);
    --border-color-hover: rgba(184, 147, 38, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(9, 9, 11, 0.06);
    --shadow-premium: 0 20px 40px -15px rgba(9, 9, 11, 0.08);
}

body.light-mode .ambient-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
}

body.light-mode .gradient-text {
    background: linear-gradient(135deg, #09090b 30%, #451a03 70%, #854d0e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-circle-fill {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 80%);
}

body.light-mode .subscribe-form input {
    color: #09090b;
}

body.light-mode .modal-card input {
    background: #f4f4f5 !important;
    color: #09090b !important;
}

body.light-mode footer {
    background-color: #f4f4f5;
    border-top: 1px solid rgba(9, 9, 11, 0.05);
}

body.light-mode .specialty-tag {
    background: rgba(9, 9, 11, 0.03);
    border: 1px solid rgba(9, 9, 11, 0.05);
    color: var(--text-secondary);
}

body.light-mode .social-icon {
    background: rgba(9, 9, 11, 0.02);
    border: 1px solid rgba(9, 9, 11, 0.05);
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dynamic Radial Background Glows */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.glow-top-right {
    top: -100px;
    right: -100px;
}

.glow-middle-left {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.glow-bottom-right {
    bottom: -100px;
    right: -100px;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-champagne) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b89326 100%);
    color: #000000;
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-champagne) 0%, var(--accent-gold) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: transparent;
    transition: var(--transition-smooth);
}

header.scrolled {
    top: 20px;
    width: 90%;
    max-width: 1200px;
    border-radius: 50px;
    padding: 12px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c5a85c;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c5a85c;
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

/* Cream Hero Section Styles */
.cream-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 180px 0 100px 0;
    overflow: hidden;
    background-color: #09090b; /* default dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.4s ease;
}

.cream-hero-section .container {
    width: 100%;
}

body.light-mode .cream-hero-section {
    background-color: #f3eee3; /* light cream background */
}

.cream-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cream-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.cream-hero-slide.active {
    opacity: 1;
}

.cream-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.45) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: background 0.4s ease;
}

body.light-mode .cream-hero-overlay {
    background: linear-gradient(90deg, rgba(243, 238, 227, 0.9) 0%, rgba(243, 238, 227, 0.4) 60%, transparent 100%);
}

.cream-hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: calc(100vh - 280px);
}

.cream-hero-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 1;
}

.cream-hero-left {
    max-width: 600px;
    text-align: left;
}

.cream-hero-left h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 600;
    line-height: 1.05;
    color: #ffffff; /* white in dark mode */
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

body.light-mode .cream-hero-left h1 {
    color: #1c1917; /* dark stone in light mode */
}

.cream-hero-left h1 .accent-serif {
    color: var(--accent-gold);
    font-style: italic;
}

.cream-hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #a8a29e; /* light brown/grey in dark mode */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    transition: color 0.4s ease;
}

body.light-mode .cream-hero-desc {
    color: #57534e; /* dark stone/grey in light mode */
}

.cream-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-cream-book {
    display: inline-block;
    background: #4a3728;
    color: #f5f5f4;
    padding: 16px 36px;
    border-radius: 30px;
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(74, 55, 40, 0.2);
}

.btn-cream-book:hover {
    background: var(--accent-gold);
    color: #000000;
    transform: translateY(-2px);
}

.dryer-badge-wrapper {
    position: relative;
}

.dryer-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fbfbf9;
    border: 1px solid rgba(74, 55, 40, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a3728;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

.dryer-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cream-hero-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    right: 0;
    z-index: 10;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

body.light-mode .social-circle {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    color: #4a3728;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.social-circle:hover {
    background: var(--accent-gold);
    color: #000000;
    transform: scale(1.1);
}

body.light-mode .social-circle:hover {
    background: #4a3728;
    color: #ffffff;
}

.cream-hero-search-wrapper {
    width: 100%;
    margin-top: auto;
    padding-top: 60px;
}

.glass-search-bar {
    display: flex;
    background: rgba(18, 18, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 12px 24px;
    gap: 24px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

body.light-mode .glass-search-bar {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 16px;
}

body.light-mode .search-input-group {
    border-right: 1px solid rgba(74, 55, 40, 0.1);
}

.search-input-group:nth-child(3) {
    border-right: none;
}

.search-input-group i {
    color: var(--accent-gold);
    font-size: 16px;
}

body.light-mode .search-input-group i {
    color: #4a3728;
}

.search-input-group input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-alt);
    font-size: 15px;
    color: #ffffff;
}

body.light-mode .search-input-group input {
    color: #1c1917;
}

.search-input-group input::placeholder {
    color: #94a3b8;
}

body.light-mode .search-input-group input::placeholder {
    color: #78716c;
}

.btn-glass-search {
    background: var(--accent-gold);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

body.light-mode .btn-glass-search {
    background: #4a3728;
    color: #ffffff;
}

.btn-glass-search:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

body.light-mode .btn-glass-search:hover {
    background: var(--accent-gold);
    color: #000000;
}

/* Responsive adjustment for new hero */
@media (max-width: 992px) {
    .cream-hero-section {
        padding: 140px 0 80px 0;
    }
    .cream-hero-slide {
        background-position: center center;
    }
    .cream-hero-left h1 {
        font-size: 48px;
    }
    .cream-hero-main-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .cream-hero-socials {
        position: relative;
        flex-direction: row;
        right: auto;
    }
    .glass-search-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 12px;
    }
    body.light-mode .search-input-group {
        border-bottom: 1px solid rgba(74, 55, 40, 0.1);
    }
}

/* Services Showcase */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--accent-gold);
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-gold);
    font-size: 22px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.15);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    flex: 1;
}

.service-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Marketplace Section */
.marketplace {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 12px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-alt);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.search-select-group {
    display: flex;
    gap: 16px;
}

.select-custom {
    background: rgba(9, 9, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.select-custom:focus {
    border-color: var(--accent-gold);
}

.stylists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stylist-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.stylist-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-premium);
}

.stylist-image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.stylist-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.stylist-card:hover .stylist-image-wrap img {
    transform: scale(1.05);
}

.stylist-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px 12px;
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--accent-gold);
}

.stylist-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stylist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stylist-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
}

.stylist-rating span {
    color: var(--text-secondary);
}

.stylist-location {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stylist-location i {
    color: var(--accent-gold);
}

.stylist-details h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.stylist-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.specialty-tag {
    font-family: var(--font-alt);
    font-size: 11px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-secondary);
}

.stylist-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stylist-price p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stylist-price h4 {
    font-size: 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.stylist-price span {
    color: var(--accent-gold);
    font-size: 14px;
}

/* Call to Action Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-img-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    height: 300px;
}

.cta-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.cta-img-card:first-child {
    transform: translateY(-20px);
}

.cta-img-card:last-child {
    transform: translateY(20px);
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 550px;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

/* Care & Styling Blog Trends */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.blog-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-meta-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 4px 12px;
    font-family: var(--font-alt);
    font-size: 11px;
    color: var(--accent-champagne);
    text-transform: uppercase;
}

.blog-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta-text {
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
}

.blog-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-details p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    flex: 1;
}

/* Footer styling */
footer {
    background-color: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.footer-nav h4 {
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-subscribe h4 {
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-subscribe p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4px 4px 4px 16px;
}

.subscribe-form input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    width: 100%;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form button {
    background: var(--accent-gold);
    color: #000000;
    border: none;
    border-radius: 26px;
    padding: 10px 20px;
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.subscribe-form button:hover {
    background: var(--accent-champagne);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* Modals / Alerts */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.modal-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* Animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* JS Scroll Reveal Base Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stylists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        align-items: center;
    }
    .hero p {
        margin: 0 auto;
    }
    .search-box-container {
        margin: 12px auto 0 auto;
        width: 100%;
    }
    .hero-stats {
        justify-content: center;
    }
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .cta-img-card:first-child {
        transform: translateY(0);
    }
    .cta-img-card:last-child {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(18, 18, 20, 0.95);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 30px;
        flex-direction: column;
        gap: 20px;
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-premium);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 44px;
    }
    .services-grid, .stylists-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    .filter-group {
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .search-select-group {
        flex-direction: column;
    }
    .cta-content {
        text-align: center;
    }
    .cta-content p {
        margin: 0 auto 32px auto;
    }
    .cta-actions {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Tab Section Styles */
.features-tab-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.features-card-wrapper {
    background: linear-gradient(135deg, #121214 0%, #1c1c1f 60%, #30260e 100%);
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.tabs-control-bar {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px;
    margin: 0 auto 50px auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.tabs-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.tab-panes-container {
    position: relative;
    min-height: 250px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-meta-title {
    color: var(--accent-gold);
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
}

.tab-pane h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 32px;
}

.btn-tab-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.btn-tab-action:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-tab-action i {
    transition: transform 0.2s ease;
}

.btn-tab-action:hover i {
    transform: translateX(4px);
}

/* Visual Phone Mockup */
.tab-visual-mockup {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 6px solid #1a1a24;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0f172a;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 14px;
}

.mockup-header i {
    font-size: 12px;
    color: #64748b;
}

.mockup-body {
    flex: 1;
    background: #f8fafc;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mockup-preview-screen {
    display: none;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mockup-preview-screen.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

/* Booking Preview Card */
.booking-card-preview {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 168, 92, 0.1);
    color: #c5a85c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.preview-details h4 {
    font-family: var(--font-body);
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
}

.preview-details p {
    font-family: var(--font-alt);
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.preview-details span {
    font-family: var(--font-alt);
    font-size: 11px;
    color: #c5a85c;
    font-weight: 600;
}

/* Stylist Preview List */
.stylist-preview-screen {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.stylist-preview-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stylist-preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stylist-preview-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.stylist-preview-text h5 {
    font-family: var(--font-body);
    font-size: 14px;
    color: #0f172a;
}

.stylist-preview-text span {
    font-family: var(--font-alt);
    font-size: 11px;
    color: #64748b;
}

.stylist-status-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    font-family: var(--font-alt);
}

/* Care Preview Card */
.care-preview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.care-preview-image {
    height: 120px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
}

.care-preview-card h4 {
    font-family: var(--font-body);
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 6px;
}

.care-preview-card p {
    font-family: var(--font-alt);
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .features-card-wrapper {
        padding: 40px;
    }
    .tabs-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tab-visual-mockup {
        height: 320px;
    }
}

/* Testimonial Section Styles */
.testimonial-carousel-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.testimonial-card-wrapper {
    background: #3b6e55; /* Sage green background */
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonial-left-content {
    color: #ffffff;
}

.testimonial-tag-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-alt);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-champagne);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Sound/Voice Wave Animation */
.voice-wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
}

.voice-wave .bar {
    width: 3px;
    background: var(--accent-champagne);
    border-radius: 3px;
    display: block;
}

.bar-1 {
    height: 6px;
    animation: soundWave 0.8s ease-in-out infinite alternate;
}

.bar-2 {
    height: 12px;
    animation: soundWave 0.8s ease-in-out infinite alternate 0.2s;
}

.bar-3 {
    height: 8px;
    animation: soundWave 0.8s ease-in-out infinite alternate 0.4s;
}

@keyframes soundWave {
    0% { transform: scaleY(0.5); }
    100% { transform: scaleY(1.3); }
}

.testimonial-left-content h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 700;
}

/* Testimonial Slide Card */
.testimonial-slide-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    position: relative;
}

.testimonial-panes {
    position: relative;
    flex: 1;
}

.testimonial-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.testimonial-body {
    font-family: var(--font-alt);
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-family: var(--font-alt);
    font-size: 12px;
    color: #64748b;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots .dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dots .dot-btn:hover {
    background: #94a3b8;
}

.testimonial-dots .dot-btn.active {
    background: #3b6e55;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .testimonial-card-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    .testimonial-left-content h2 {
        font-size: 40px;
    }
    .testimonial-slide-card {
        min-height: auto;
    }
}

/* Mobile App Showcase Section Styles */
.app-showcase-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.app-intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 580px;
}

.app-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.app-features-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-family: var(--font-alt);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.app-download-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.app-showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen-frame {
    width: 270px;
    height: 580px;
    border-radius: 40px;
    border: 8px solid #1a1a24;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-screen-frame:hover {
    transform: translateY(-8px) scale(1.02);
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-circle-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: 1;
    filter: blur(50px);
    pointer-events: none;
}

@media (max-width: 992px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .app-showcase-visual {
        order: -1;
    }
    .phone-screen-frame {
        width: 240px;
        height: 520px;
    }
}

/* About Page Custom Styles */
.about-hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #0c0a09;
    padding: 220px 0 120px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .about-hero-section {
    background: #faf9f6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-tag {
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.about-hero-content h1 {
    font-size: 64px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 16px 0 24px 0;
    transition: color 0.4s ease;
}

body.light-mode .about-hero-content h1 {
    color: #1c1917;
}

.about-hero-content p {
    font-size: 20px;
    color: #a8a29e;
    line-height: 1.6;
    transition: color 0.4s ease;
}

body.light-mode .about-hero-content p {
    color: #57534e;
}

/* Our Story & Founder Section */
.about-story-section {
    padding: 120px 0;
    background: #09090b;
    transition: background 0.4s ease;
}

body.light-mode .about-story-section {
    background: #fdfcfb;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.founder-image {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.founder-image:hover {
    transform: scale(1.02);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(18, 18, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    border-radius: 16px;
    color: #ffffff;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

body.light-mode .founder-badge {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(74, 55, 40, 0.1);
    color: #1c1917;
}

.founder-badge h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.founder-badge p {
    font-family: var(--font-alt);
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 500;
}

body.light-mode .founder-badge p {
    color: #854d0e;
}

.founder-details h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    transition: color 0.4s ease;
}

body.light-mode .founder-details h2 {
    color: #1c1917;
}

.founder-details p {
    font-size: 16px;
    color: #a8a29e;
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

body.light-mode .founder-details p {
    color: #57534e;
}

.founder-details .intro-paragraph {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

body.light-mode .founder-details .intro-paragraph {
    color: #1c1917;
}

.text-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
}

body.light-mode .text-link {
    color: #854d0e;
}

/* Core Pillars: Purpose & Mission */
.about-pillars-section {
    padding: 120px 0;
    background: #0c0a09;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .about-pillars-section {
    background: #fbfaf7;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 12px;
    transition: color 0.4s ease;
}

body.light-mode .pillars-header h2 {
    color: #1c1917;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 24px;
    transition: var(--transition-smooth);
}

body.light-mode .pillar-card {
    background: #ffffff;
    border: 1px solid rgba(74, 55, 40, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
}

body.light-mode .pillar-card:hover {
    border-color: #854d0e;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(74, 55, 40, 0.06);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 30px;
}

body.light-mode .pillar-icon {
    background: rgba(133, 77, 14, 0.08);
    color: #854d0e;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

body.light-mode .pillar-card h3 {
    color: #1c1917;
}

.pillar-highlight {
    font-size: 18px;
    font-style: italic;
    color: var(--accent-gold) !important;
    margin-bottom: 20px;
}

body.light-mode .pillar-highlight {
    color: #854d0e !important;
}

.pillar-card p {
    font-size: 15px;
    color: #a8a29e;
    line-height: 1.6;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

body.light-mode .pillar-card p {
    color: #57534e;
}

.pillar-card p:last-child {
    margin-bottom: 0;
}

/* Contact Ewa Section */
.about-contact-section {
    padding: 120px 0;
    background: #09090b;
    transition: background 0.4s ease;
}

body.light-mode .about-contact-section {
    background: #fdfcfb;
}

.contact-card {
    background: rgba(18, 18, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .contact-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(74, 55, 40, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

body.light-mode .contact-header h2 {
    color: #1c1917;
}

.contact-header p {
    color: #a8a29e;
    font-size: 16px;
    transition: color 0.4s ease;
}

body.light-mode .contact-header p {
    color: #57534e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    color: #e7e5e4;
    transition: color 0.4s ease;
}

body.light-mode .form-group label {
    color: #1c1917;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: #ffffff;
    border: 1px solid rgba(74, 55, 40, 0.15);
    color: #1c1917;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    border-color: #854d0e;
    background: #ffffff;
}

.btn-submit-contact {
    align-self: center;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 30px;
    width: auto;
    min-width: 200px;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-alt);
    font-size: 16px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

body.light-mode .success-message {
    color: #854d0e;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 44px;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    .founder-details {
        text-align: center;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-card {
        padding: 30px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Book Online Redesigned Layout Styles */
.booking-video-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-video-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hero-video-content p {
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.booking-filters-bar-section {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-filters-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select-group select {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #3f3f46;
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 500;
    outline: none;
    min-width: 190px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-select-group select:focus {
    border-color: var(--accent-gold);
}

.booking-search-trigger-btn {
    padding: 10px 32px;
    border-radius: 30px;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13px;
}

.our-services-heading-section {
    padding: 60px 0 10px 0;
    background: #fafafa;
}

.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.services-header-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #171717;
    margin-bottom: 10px;
}

.services-header-text p {
    font-size: 15px;
    color: #52525b;
    max-width: 750px;
    line-height: 1.6;
}

.services-category-tabs {
    display: flex;
    justify-content: center;
    gap: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.tab-link {
    background: none;
    border: none;
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 600;
    color: #71717a;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
    outline: none;
}

.tab-link:hover,
.tab-link.active {
    color: #171717;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #171717;
}

.booking-services-grid-section {
    padding: 30px 0 100px 0;
    background: #fafafa;
}

.booking-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.booking-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.booking-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.service-card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-card-content {
    padding: 16px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.service-card-content h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 42px;
}

.service-meta {
    font-family: var(--font-alt);
    font-size: 13px;
    color: #71717a;
    margin-bottom: 16px;
}

.price-val {
    font-weight: 700;
    color: #171717;
}

.btn-green-book {
    background: #166534;
    border: 1px solid #166534;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    outline: none;
}

.btn-green-book:hover {
    background: #14532d;
    border-color: #14532d;
}

/* Responsiveness media queries */
@media (max-width: 1024px) {
    .booking-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-header-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hero-video-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .booking-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Become a Vendor Page Custom Styles */
.vendor-how-section {
    padding: 100px 0;
    background: #09090b;
    transition: background 0.4s ease;
}

body.light-mode .vendor-how-section {
    background: #faf9f6;
}

.vendor-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.vendor-feature-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

body.light-mode .vendor-feature-card {
    background: #ffffff;
    border: 1px solid rgba(74, 55, 40, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.vendor-feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

body.light-mode .feature-icon-box {
    background: rgba(74, 55, 40, 0.06);
    color: #4a3728;
}

.vendor-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
    transition: color 0.4s ease;
}

body.light-mode .vendor-feature-card h3 {
    color: #1c1917;
}

.vendor-feature-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    transition: color 0.4s ease;
}

body.light-mode .vendor-feature-card p {
    color: #57534e;
}

.vendor-perks-section {
    padding: 100px 0;
    background: #121214;
    transition: background 0.4s ease;
}

body.light-mode .vendor-perks-section {
    background: #ffffff;
}

.vendor-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.perk-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

body.light-mode .perk-card {
    background: #faf9f6;
    border: 1px solid rgba(74, 55, 40, 0.05);
}

.perk-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.perk-number {
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-mode .perk-number {
    color: #854d0e;
    background: rgba(74, 55, 40, 0.06);
}

.perk-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #ffffff;
    transition: color 0.4s ease;
}

body.light-mode .perk-header h3 {
    color: #1c1917;
}

.perk-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    transition: color 0.4s ease;
}

body.light-mode .perk-card p {
    color: #57534e;
}

/* Responsive constraints for vendor grids */
@media (max-width: 992px) {
    .vendor-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vendor-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vendor-perks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Partner Hero Styles with Background Image */
.partner-hero-section {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('images/Slide 2.png?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 220px 0 120px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.partner-tag {
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 20px;
}

.partner-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.partner-hero-content p {
    font-size: 18px;
    color: #f3f4f6;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .partner-hero-content h1 {
        font-size: 40px;
    }
    .partner-hero-content p {
        font-size: 16px;
    }
}

/* Inspo Gallery Masonry Styles */
.inspo-gallery-section {
    padding: 140px 0 100px 0;
    background: #ffffff;
}

.inspo-masonry-gallery {
    column-count: 4;
    column-gap: 20px;
}

.inspo-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f4f4f5;
    transition: var(--transition-smooth);
}

.inspo-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.inspo-masonry-item:hover img {
    transform: scale(1.04);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.inspo-masonry-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay i {
    color: #ffffff;
    font-size: 24px;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.inspo-masonry-item:hover .item-overlay i {
    transform: scale(1);
}

/* Responsive columns scaling */
@media (max-width: 1024px) {
    .inspo-masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .inspo-masonry-gallery {
        column-count: 2;
        column-gap: 15px;
    }
    .inspo-masonry-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .inspo-masonry-gallery {
        column-count: 1;
    }
}

/* --- Mobile Navigation Contrast & Size Fixes --- */
.header-download-btn {
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .header-download-btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
    
    /* Make the mobile dropdown menu background light matching light-mode layout */
    .nav-links {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    .nav-links a {
        color: #121214 !important;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent-gold) !important;
    }
    
    /* Dark mode override for mobile menu if the page is set to dark-mode */
    body:not(.light-mode) .nav-links {
        background: rgba(18, 18, 20, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    body:not(.light-mode) .nav-links a {
        color: #ffffff !important;
    }
}

/* --- Sticky Sidebar Card Styles --- */
.sticky-sidebar-card {
    position: sticky;
    top: 120px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    z-index: 10;
}

.sticky-sidebar-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.sticky-sidebar-card .sidebar-logo {
    margin-bottom: 24px;
    z-index: 2;
    position: relative;
}

.sticky-sidebar-card .sidebar-logo img {
    height: 45px;
    width: auto;
    margin: 0 auto;
}

.sticky-sidebar-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 600;
    z-index: 2;
    position: relative;
    color: #ffffff;
}

.sticky-sidebar-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    z-index: 2;
    position: relative;
}

/* Light mode overrides for sidebar */
body.light-mode .sticky-sidebar-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .sticky-sidebar-card h3 {
    color: #121214 !important;
}

body.light-mode .sticky-sidebar-card p {
    color: #4a4a4f !important;
}

/* --- Single Post Styles & Customizations --- */
body.light-mode .single-post-hero h1 {
    color: #121214 !important;
}

body.light-mode .blog-list-grid h3 a {
    color: #121214 !important;
}

body.light-mode .share-btn {
    background: rgba(0, 0, 0, 0.03) !important;
    color: #121214 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .share-btn:hover {
    background: var(--accent-gold) !important;
    color: #ffffff !important;
    border-color: var(--accent-gold) !important;
}

.share-btn:hover {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    transform: translateY(-3px);
}

/* Responsive grid overrides */
@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    .sticky-sidebar-card {
        position: relative !important;
        top: 0 !important;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .blog-list-grid {
        grid-template-columns: 1fr !important;
    }
    .single-post-hero h1 {
        font-size: 32px !important;
    }
    .post-thumbnail-wrapper {
        height: 280px !important;
    }
}








