/* ============================================
   ARGHYA MALLICK - Premium Business Coach Website
   Color Palette: Black, Grey, Champagne Gold
   ============================================ */

/* --- CSS Variables --- */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-grey: #1a1a1a;
    --medium-grey: #2d2d2d;
    --grey: #666666;
    --light-grey: #999999;
    --lighter-grey: #e0e0e0;
    --off-white: #f5f5f5;
    --white: #ffffff;
    --gold: #C8A96E;
    --gold-light: #D4B87A;
    --gold-dark: #B89858;
    --gold-gradient: linear-gradient(135deg, #C8A96E, #D4B87A, #B89858);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.2);
    --shadow-gold: 0 5px 30px rgba(200,169,110,0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--lighter-grey);
    background-color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul { list-style: none; }

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

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

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

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: var(--light-grey);
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: inline-block;
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin-top: 1rem;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 0.95rem;
    max-width: 700px;
    line-height: 1.8;
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

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

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: 1px solid var(--medium-grey);
}

.btn-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 100px;
    margin: 0 auto 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--medium-grey);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    animation: preloaderBar 1.5s ease-in-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes preloaderBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

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

.nav-logo img {
    height: 100px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 65px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lighter-grey);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
    padding-bottom: 0;
}

.hero .container {
    padding-bottom: 0;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
}

.hero-text {
    padding: 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 169, 110, 0.3);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 30px;
    background: rgba(200, 169, 110, 0.05);
}

.hero-badge i {
    font-size: 0.6rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--light-grey);
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.hero-desc {
    font-size: 0.85rem;
    color: var(--light-grey);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-grey);
}

.hero-stat-item h3 {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.hero-stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-grey);
    margin: 5px 0 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
    padding-top: 0;
    margin-bottom: 0;
    margin-top: -40px;
    align-self: end;
}

.hero-image img {
    max-height: 85vh;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    margin-bottom: -2px;
}

.hero-image::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -60px;
    width: 550px;
    height: 550px;
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: -10px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(200, 169, 110, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--light-grey);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* --- Section Spacing --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
}

.section-darker {
    background: var(--dark-grey);
}

.section-black {
    background: var(--black);
}

/* --- About Preview Section (Homepage) --- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.about-preview-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0.5;
}

.about-preview-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0.5;
}

.about-preview-text .lead {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--lighter-grey);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.about-preview-text p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.about-credentials {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(200, 169, 110, 0.05);
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.credential-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.credential-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lighter-grey);
    letter-spacing: 0.5px;
}

/* --- Stats Section --- */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-grey) 100%);
    border-top: 1px solid rgba(200, 169, 110, 0.1);
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(200, 169, 110, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-grey);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    padding: 50px 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 169, 110, 0.3);
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 1.4rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--light-grey);
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

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

/* --- Quote/Philosophy Section --- */
.quote-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: var(--black);
}

.quote-section::before {
    content: '\201C';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 15rem;
    color: rgba(200, 169, 110, 0.06);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--white);
    font-style: italic;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.quote-author {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* --- Testimonials Section --- */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    padding: 50px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(200, 169, 110, 0.15);
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--lighter-grey);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonials-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--medium-grey);
    background: transparent;
    color: var(--lighter-grey);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.testimonials-nav button:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 110, 0.05);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 30px;
    height: 3px;
    background: var(--medium-grey);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots .dot.active {
    background: var(--gold);
    width: 50px;
}

/* --- LinkedIn Featured Section --- */
.linkedin-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.linkedin-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.linkedin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.linkedin-header .section-desc {
    margin-bottom: 0;
}

.linkedin-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #0A66C2;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.linkedin-follow-btn:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(10, 102, 194, 0.3);
}

/* Featured Content Cards (native rendering) */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.featured-card:hover {
    border-color: rgba(200, 169, 110, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--medium-grey);
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.featured-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-grey) 100%);
}

.featured-card-placeholder i {
    font-size: 4rem;
    color: rgba(10, 102, 194, 0.3);
}

.featured-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-card-badge i {
    color: #0A66C2;
    font-size: 0.8rem;
}

.featured-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-card-source {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.featured-card-source i {
    font-size: 0.65rem;
}

.featured-card-body h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.featured-card:hover .featured-card-body h3 {
    color: var(--gold);
}

.featured-card-body p {
    font-size: 0.9rem;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--medium-grey);
    margin-top: auto;
}

.featured-card-date {
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-card-readmore {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.featured-card:hover .featured-card-readmore {
    gap: 10px;
}

/* Featured Empty State */
.featured-empty {
    padding: 80px 20px;
    text-align: center;
}

.featured-empty-inner {
    max-width: 500px;
    margin: 0 auto;
}

.featured-empty i {
    font-size: 3.5rem;
    color: rgba(10, 102, 194, 0.3);
    margin-bottom: 25px;
}

.featured-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.featured-empty p {
    font-size: 1rem;
    color: var(--light-grey);
    margin-bottom: 30px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-content p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--light-grey);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Blog Preview Section --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-image .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

/* --- Page Heroes (Inner Pages) --- */
.page-hero {
    padding: 180px 0 100px;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(200,169,110,0.03)"/><circle cx="75" cy="75" r="0.5" fill="rgba(200,169,110,0.03)"/><circle cx="50" cy="10" r="0.3" fill="rgba(200,169,110,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.page-hero .section-subtitle {
    margin-bottom: 15px;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
}

.page-hero p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--grey);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

/* --- About Page Styles --- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.about-story-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 25px;
    text-align: center;
    z-index: 2;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--medium-grey);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--gold);
    border: 3px solid var(--dark);
    z-index: 1;
}

.timeline-content {
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    padding: 30px;
    max-width: 400px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 0;
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.credential-card {
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
    transform: translateY(-3px);
}

.credential-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.credential-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.credential-card p {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 0;
}

/* --- Services Page Styles --- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--medium-grey);
}

.service-detail:nth-child(even) .service-detail-content {
    order: -1;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.03);
}

.service-detail-content .service-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(200, 169, 110, 0.1);
    font-weight: 700;
    line-height: 1;
    margin-bottom: -15px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1rem;
    color: var(--light-grey);
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-features {
    margin: 25px 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--lighter-grey);
}

.service-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 55px;
    right: -15px;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 0;
}

/* --- Testimonials Page Styles --- */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-full-card {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.testimonial-full-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
}

.testimonial-full-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(200, 169, 110, 0.1);
    position: absolute;
    top: 10px;
    right: 30px;
    line-height: 1;
}

.testimonial-full-card .testimonial-stars {
    text-align: left;
    margin-bottom: 20px;
}

.testimonial-full-card .testimonial-text {
    text-align: left;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.testimonial-full-card .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info .testimonial-author {
    margin-bottom: 3px;
}

/* --- Blog Page Styles --- */
.blog-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-featured .blog-card-image {
    height: 100%;
    min-height: 350px;
}

.blog-featured .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.blog-featured .blog-card h3 {
    font-size: 1.5rem;
}

.blog-sidebar {
    margin-top: 60px;
}

.blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    justify-content: center;
}

.blog-category-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--medium-grey);
    color: var(--lighter-grey);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.blog-category-btn:hover,
.blog-category-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 110, 0.05);
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
}

.contact-info-card i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 3px;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 0;
}

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

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--medium-grey);
    color: var(--lighter-grey);
    transition: var(--transition);
    font-size: 1rem;
}

.contact-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 110, 0.05);
}

/* Contact Form */
.contact-form {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    padding: 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-grey);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.1);
}

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

.form-group select option {
    background: var(--dark-grey);
}

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

.form-submit {
    width: 100%;
    padding: 12px;
    background: var(--gold-gradient);
    border: none;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Book a Call Section */
.book-section {
    background: var(--dark);
    border-top: 1px solid rgba(200, 169, 110, 0.1);
}

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

.book-content h2 {
    margin-bottom: 20px;
}

.book-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.book-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.book-feature {
    text-align: center;
    padding: 20px;
}

.book-feature i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.book-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.book-feature p {
    font-size: 0.85rem;
    color: var(--light-grey);
    margin: 0;
}

/* --- Media/Logo Bar --- */
.media-bar {
    padding: 50px 0;
    background: var(--dark-grey);
    border-top: 1px solid var(--medium-grey);
    border-bottom: 1px solid var(--medium-grey);
}

.media-bar-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey);
    margin-bottom: 30px;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-grey), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-grey), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marqueeScroll 20s linear infinite;
    padding: 0 30px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 0.9;
}

.logo-item span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--lighter-grey);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 169, 110, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--medium-grey);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--medium-grey);
    color: var(--light-grey);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 110, 0.05);
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--light-grey);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 18px;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--medium-grey);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--grey);
    margin: 0;
}

.footer-credits {
    font-style: italic;
}

/* --- Admin Styles --- */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.admin-login-box {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    padding: 50px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.admin-login-box img {
    height: 60px;
    margin: 0 auto 30px;
}

.admin-login-box h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.admin-dashboard {
    min-height: 100vh;
    background: var(--black);
    padding-top: 30px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--medium-grey);
}

.admin-header h1 {
    font-size: 1.5rem;
}

.admin-card {
    background: var(--dark);
    border: 1px solid var(--medium-grey);
    padding: 30px;
    margin-bottom: 20px;
}

.admin-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-grey);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-grey);
    font-size: 0.9rem;
}

.admin-table th {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-table td {
    color: var(--lighter-grey);
}

.admin-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-btn-primary {
    background: var(--gold);
    color: var(--black);
}

.admin-btn-primary:hover {
    background: var(--gold-light);
}

.admin-btn-danger {
    background: #dc3545;
    color: var(--white);
}

.admin-btn-danger:hover {
    background: #c82333;
}

.admin-btn-sm {
    padding: 5px 12px;
    font-size: 0.7rem;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Gold line animation */
.gold-line {
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 1s ease;
}

.gold-line.animated {
    width: 60px;
}

/* --- Responsive Design --- */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-image img {
        max-height: 65vh;
    }

    .hero-image::before {
        width: 400px;
        height: 400px;
    }

    .hero-image::after {
        width: 320px;
        height: 320px;
    }

    .about-preview,
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview-image img,
    .about-story-image img {
        max-height: 450px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

    .blog-grid,
    .blog-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item::before {
        left: 15px;
    }

    .service-detail {
        gap: 40px;
    }

    .service-detail-image img {
        height: 300px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--medium-grey);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo img {
        height: 70px;
    }

    .navbar.scrolled .nav-logo img {
        height: 50px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 0;
        gap: 30px;
    }

    .hero-text {
        padding: 10px 0;
    }

    .hero-desc {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-image img {
        max-height: 45vh;
    }

    .hero-image::before,
    .hero-image::after {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    /* Sections */
    .services-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-item {
        padding: 20px 15px;
    }

    /* Featured / LinkedIn */
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card-image {
        height: 200px;
    }

    .linkedin-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    /* Blog */
    .blog-grid,
    .blog-full-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 180px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Services Detail */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .service-detail:nth-child(even) .service-detail-content {
        order: 0;
    }

    .service-detail-image img {
        height: 250px;
    }

    .service-detail-content .service-number {
        font-size: 2.5rem;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-logo {
        height: 80px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Book */
    .book-features {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Pages */
    .page-hero {
        padding: 120px 0 60px;
    }

    /* Quote */
    .quote-section {
        padding: 60px 0;
    }

    .quote-section::before {
        font-size: 8rem;
    }

    /* Media bar */
    .media-bar {
        padding: 35px 0;
    }

    .logo-item img {
        height: 30px;
    }

    /* About */
    .about-preview-image::before,
    .about-preview-image::after {
        display: none;
    }

    .about-credentials {
        justify-content: center;
    }

    .experience-badge {
        right: 10px !important;
        bottom: 10px !important;
        padding: 18px !important;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    /* Timeline */
    .timeline-content {
        padding: 20px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

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

    .hero-desc {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 7px 16px;
        letter-spacing: 1.2px;
    }

    .hero-image img {
        max-height: 38vh;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stat-item h3 {
        font-size: 1.3rem;
    }

    .hero-stat-item p {
        font-size: 0.65rem;
    }

    /* Buttons */
    .btn {
        padding: 9px 18px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        gap: 10px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item::after {
        display: none;
    }

    /* Typography */
    h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .quote-section::before {
        font-size: 5rem;
    }

    /* Services */
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Blog */
    .blog-card-image {
        height: 160px;
    }

    .blog-card-content {
        padding: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-full-card {
        padding: 25px;
    }

    /* Contact */
    .contact-form {
        padding: 20px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-logo {
        height: 60px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .contact-social a {
        width: 38px;
        height: 38px;
    }

    /* Media bar */
    .media-bar-title {
        font-size: 0.65rem;
    }

    .logo-item img {
        height: 25px;
    }

    .marquee-content {
        gap: 40px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 40px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    /* About */
    .about-credentials {
        flex-direction: column;
    }

    .credential-item {
        padding: 10px 15px;
    }

    /* Featured */
    .featured-card-body {
        padding: 20px;
    }

    .featured-card-image {
        height: 170px;
    }

    /* Page Hero */
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    /* Process */
    .process-step {
        padding: 25px 15px;
    }

    /* Back to top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 0.8rem;
    }

    /* Nav */
    .nav-logo img {
        height: 55px;
    }

    .navbar.scrolled .nav-logo img {
        height: 40px;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-stat-item h3 {
        font-size: 1.1rem;
    }

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

    .btn {
        padding: 8px 16px;
        font-size: 0.65rem;
        width: 100%;
        justify-content: center;
    }

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

    .nav-logo img {
        height: 45px;
    }

    .footer-logo {
        height: 50px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .quote-text {
        font-size: 0.9rem;
    }
}

/* --- Smooth Reveal Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* --- Utility Classes --- */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Selection color */
::selection {
    background: rgba(200, 169, 110, 0.3);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-grey);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
