/* ===================================
   CSS Variables
   =================================== */
:root {
    --color-black: #0a0a0a;
    --color-gold: #D4AF37;
    --color-white: #ffffff;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-dark-gray: #1a1a1a;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-smooth: 0.3s ease;
    --transition-fast: 0.15s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold-text {
    color: var(--color-gold);
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--color-gold);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ===================================
   Custom Cursor
   =================================== */
.custom-cursor {
    display: none !important;
}

.custom-cursor.active {
    opacity: 1;
}

.custom-cursor.hover {
    transform: scale(1.5);
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.logo-icon {
    color: var(--color-gold);
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    position: relative;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-smooth);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.close-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--color-gold);
    position: absolute;
    transition: var(--transition-smooth);
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.mobile-nav a:hover {
    color: var(--color-gold);
    transform: translateX(10px);
}

/* ===================================
   Buttons
   =================================== */
.cta-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), #b8941f);
    color: var(--color-black);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cta-btn-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero .cta-btn {
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    max-width: 1000px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-serif);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 6rem 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section h2 {
    margin-bottom: 3rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ===================================
   About Section
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-dark-gray);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background-color: var(--color-dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    background-color: var(--color-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.service-card i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
}

/* ===================================
   Marquee
   =================================== */
.marquee {
    background-color: var(--color-gold);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    white-space: nowrap;
    color: var(--color-black);
    font-weight: 600;
    font-size: 1.25rem;
    padding-right: 2rem;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   Team Section
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Team Section - About Style Layout */
.team .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-image-wrapper {
    width: 100%;
}

.team-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.team-content {
    padding: 2rem 0;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-content .team-title {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.team-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-content .team-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.team-content .team-social a {
    width: 45px;
    height: 45px;
    background-color: var(--color-dark-gray);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.team-content .team-social a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .team .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


.team-image:hover img {
    transform: scale(1.1);
}

.team-image:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--color-black);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.team-social a:hover {
    background-color: var(--color-white);
    transform: translateY(-3px);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--color-gold);
    font-size: 0.875rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background-color: var(--color-dark-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background-color: var(--color-black);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--color-gold);
    font-size: 0.875rem;
}

/* ===================================
   Blog Section
   =================================== */
/* ===================================
   Blog Section
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #D4AF37;
    color: #0a0a0a;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
    
    /* Truncate after 2 lines */
   /* Truncate after 2 lines */
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: calc(1.25rem * 1.4 * 2);
}

.blog-card:hover .blog-content h3 {
    color: #D4AF37;
}

.blog-content p,
.blog-content .blog-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    
    /* Truncate after 3 lines */
   display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    min-height: calc(0.95rem * 1.6 * 3);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #D4AF37;
    font-size: 0.85rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 0.75rem;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-link i {
    transform: translateX(5px);
}

/* Blog Hero Section */
.blog-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%),
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1200') center/cover;
    position: relative;
    overflow: hidden;
}

/* Blog Search Section */
.blog-search-section {
    padding: 3rem 0 1rem;
    background: #0a0a0a;
}

.blog-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

#blog-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#blog-search-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

#blog-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.blog-search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.blog-search-btn i {
    font-size: 1rem;
}

.no-results-message {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
    display: none;
}

.blog-category-filter {
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.blog-category-filter:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.blog-category-filter option {
    background: #1a1a1a;
    color: #fff;
}

.blog-filter-wrapper {
    max-width: 700px;
    margin: 1.5rem auto 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.blog-filter-wrapper label {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.1rem;
}

.no-results-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results-message p {
    font-size: 1.1rem;
}

/* No Results Message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.no-results i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .blog-search-wrapper {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.03) 2px,
        rgba(212, 175, 55, 0.03) 4px
    );
    pointer-events: none;
}

/* Blog Search & Filter Section */
.blog-search-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.blog-search-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.search-box input:focus {
    outline: none;
}

.search-box i {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0 1.5rem;
    min-width: 250px;
    transition: all 0.3s ease;
}

.filter-box:focus-within {
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.filter-box select:focus {
    outline: none;
}

.filter-box i {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.filter-box select {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-box select option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

.filter-box::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #D4AF37;
    pointer-events: none;
    margin-left: 0.5rem;
}

/* Blog List Section */
.blog-list-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-search-wrapper {
        flex-direction: column;
    }
    
    .search-box,
    .filter-box {
        min-width: 100%;
    }
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero .badge {
    margin-bottom: 1.5rem;
}

.blog-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.blog-hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.blog-page-section {
    padding: 6rem 0 8rem;
    background: #0a0a0a;
}

/* Responsive Blog Grid */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-hero {
        padding: 10rem 0 4rem;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .blog-content p,
    .blog-content .blog-excerpt {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}



.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-link {
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    gap: 1rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background-color: var(--color-dark-gray);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    background-color: var(--color-black);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--color-gold);
}

.accordion-header i {
    color: var(--color-gold);
    transition: transform var(--transition-smooth);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 2rem 1.5rem 2rem;
    line-height: 1.8;
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.5rem;
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
    display: block;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
    display: block;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--color-dark-gray);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--color-black);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a {
    color: var(--color-gold);
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* ===================================
   Fixed Elements
   =================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.scroll-top-btn {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-gray);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition-smooth);
}


/* ===================================
   Responsive Design
   =================================== */

/* 1200px Breakpoint */
@media (max-width: 1200px) {
    .hero h1 { font-size: 4rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 1024px Breakpoint */
@media (max-width: 1024px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .header-phone span { display: none; }
    
    .hero h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px Breakpoint */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .stat-number { font-size: 2.5rem; }
    
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .cta-section h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    
    .cookie-content { flex-direction: column; text-align: center; }
}

/* 480px Breakpoint */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    section { padding: 4rem 0; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 { font-size: 2rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
    
    .header { padding: 1rem; }
    .logo { font-size: 1.25rem; }
    .logo-icon { font-size: 1.5rem; }
    
    .cta-btn, .cta-btn-outline { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
    
    .mobile-nav a { font-size: 1.5rem; }
    
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; bottom: 1rem; right: 1rem; }
    .scroll-top-btn { width: 45px; height: 45px; bottom: 5rem; right: 1rem; }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 2rem;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Touch Target Sizes (Minimum 44x44px) */
@media (pointer: coarse) {
    .nav a,
    .mobile-nav a,
    .accordion-header,
    .team-social a,
    .footer-social a,
    button,
    input[type="checkbox"] {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .mobile-menu,
    .custom-cursor,
    .whatsapp-btn,
    .scroll-top-btn,
    .cookie-banner,
    #preloader {
        display: none !important;
    }
    
    body {
        background-color: white;
        color: black;
    }
}

/* ===================================
   Live Chat Widget
   =================================== */
.live-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold), #b8941f);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    cursor: pointer;
    border: none;
}

.live-chat-btn:hover {
    transform: scale(1.1);
}

.live-chat-widget {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 380px;
    max-height: 600px;
    background-color: var(--color-dark-gray);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--color-gold), #b8941f);
    color: var(--color-black);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.end-session-btn {
    background: rgba(100, 100, 100, 0.15);
    border: 1px solid rgba(150, 150, 150, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.end-session-btn i {
    font-size: 0.85rem;
}

.end-session-btn span {
    font-size: 0.7rem;
}

.end-session-btn:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
    color: rgba(220, 53, 69, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.close-chat-btn {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: var(--color-black);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.close-chat-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 0.875rem 1.125rem;
    border-radius: 10px;
    max-width: 80%;
    animation: fadeInUp 0.3s ease;
}

.bot-message {
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-gold);
    align-self: flex-start;
}

.user-message {
    background-color: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-self: flex-end;
    position: relative;
}

.message-sender {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: right;
}

/* Removed .user-info-message styles - user name now displays above each message */

.chat-message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.read-receipt {
    display: none;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.chat-form {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.chat-form input,
.chat-form textarea {
    padding: 0.75rem 1rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.chat-form input:focus,
.chat-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.chat-form button {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.95rem;
}

/* ===================================
   Blog Article Styles
   =================================== */
.blog-article {
    padding: 8rem 0 4rem;
    background-color: var(--color-black);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.back-btn:hover {
    gap: 0.75rem;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info div {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-gold);
}

.article-date,
.article-reading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 15px;
    text-align: center;
}

.article-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ===================================
   Team Grid Update (Single Column)
   =================================== */
.team-grid {
    display: flex;
    justify-content: center;
}

.team-grid .team-card {
    max-width: 350px;
}

/* ===================================
   Contact Grid Update (Single Column)
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Responsive Updates
   =================================== */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 5rem;
    }
    
    .live-chat-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-content .lead {
        font-size: 1.125rem;
    }
    
    .article-content h2 {
        font-size: 1.75rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
}

/* Mobile adjustments for end session button */
@media (max-width: 400px) {
    .end-session-btn span {
        display: none;
    }
    
    .end-session-btn {
        padding: 0.35rem 0.6rem;
    }
    
    .end-session-btn i {
        font-size: 0.85rem;
    }
}

/* Blog Hero Section */
.blog-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)),
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1200') center/cover;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-page-section {
    padding: 4rem 0 6rem;
}

/* Team Section - About Style Layout */
.team .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-image-wrapper {
    width: 100%;
}

.team-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.team-content {
    padding: 2rem 0;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-content .team-title {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.team-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-content .team-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.team-content .team-social a {
    width: 45px;
    height: 45px;
    background-color: var(--color-dark-gray);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.team-content .team-social a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .team .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
}
