@charset "UTF-8";

/* =========================================================================
   BASE RESET & VARIABLES
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors extracted from SKK Logo */
    --primary-color: #5A1846;
    /* Deep Purple */
    --primary-light: #7a2662;
    --primary-dark: #370d2a;

    --secondary-color: #f25e22;
    /* Vibrant Orange */
    --secondary-light: #f7a01b;
    /* Amber */

    --accent-color: #3eb4a8;
    /* Teal / Cyan */

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-purple: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-mixed: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

    /* Neutrals */
    --text-main: #2b2b2b;
    --text-muted: #6b7280;
    --bg-light: #fdfbfd;
    --bg-gray: #f5f3f5;
    --white: #ffffff;

    /* Design Tokens */
    --shadow-sm: 0 4px 10px rgba(90, 24, 70, 0.05);
    --shadow-md: 0 10px 25px rgba(90, 24, 70, 0.08);
    --shadow-lg: 0 20px 40px rgba(90, 24, 70, 0.12);
    --shadow-glow: 0 10px 20px rgba(242, 94, 34, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* =========================================================================
   UTILITIES & BUTTONS
   ========================================================================= */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(242, 94, 34, 0.3);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

section {
    padding: 6rem 0;
}

/* =========================================================================
   NAVIGATION (GLASSMORPHISM)
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scroll JS class added automatically by original script */
.navbar[style*="blur(10px)"] {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-logo h2 {
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-logo img.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-orange);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    background: radial-gradient(circle at top left, rgba(62, 180, 168, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(242, 94, 34, 0.05) 0%, transparent 40%);
}

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

.hero-content {
    display: flex;
    align-items: center;

    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.role {
    background: rgba(90, 24, 70, 0.06);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(90, 24, 70, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.image-placeholder {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: flex-end;
    background: none;
    border: none;
}

.profile-image {
    width: 100%;
    max-height: 470px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(90, 24, 70, 0.25);
    border: 4px solid var(--white);
    transition: var(--transition);
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(90, 24, 70, 0.35);
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.qualifications {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.qualifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-purple);
}

.qualifications h3 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.qual-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
}

.qual-list li:last-child {
    border-bottom: none;
}

.qual-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    background: rgba(242, 94, 34, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.qual-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.services {
    background: var(--bg-gray);
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(90, 24, 70, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform: rotate(45deg);
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(90, 24, 70, 0.2);
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.05);
    background: var(--gradient-orange);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    transform: rotate(-45deg);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: rotate(0deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
}

/* =========================================================================
   PUBLICATIONS SECTION
   ========================================================================= */
.publications {
    background-color: var(--white);
}

.publications-content {
    max-width: 900px;
    margin: 0 auto;
}

.pub-category {
    margin-bottom: 3rem;
}

.pub-category h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.publication-item {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.publication-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--secondary-color);
}

.publication-item h4 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.publication-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================================================
   INSPIRATION SECTION
   ========================================================================= */
.inspiration {
    background: var(--primary-color);
    background-image: var(--gradient-purple);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.inspiration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.inspiration .section-title {
    color: var(--white);
}

.inspiration .section-title::after {
    background: var(--gradient-orange);
}

.featured-quote {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.featured-quote blockquote {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.featured-quote blockquote::before {
    content: '"';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    top: -30px;
    left: -40px;
    z-index: -1;
}

.featured-quote cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-light);
}

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

.inspiration-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.inspiration-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.inspiration-item h4 {
    color: var(--secondary-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.inspiration-cta {
    text-align: center;
    background: var(--white);
    color: var(--text-main);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.inspiration-cta h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.inspiration-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #eef2f6;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    transition: var(--transition);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials {
    background-color: var(--bg-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
}

.testimonial-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.testimonial-card:nth-child(3) {
    border-top-color: var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    margin-bottom: 1.5rem;
    color: #ffc107;
    /* Standard star gold */
    font-size: 0.9rem;
}

.stars i {
    margin-right: 3px;
}

.testimonial-card blockquote {
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    width: 55px;
    height: 55px;
    background: rgba(90, 24, 70, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.contact-method:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.contact-method p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-gray);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eef2f6;
    background-color: #fafbfc;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(90, 24, 70, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* =========================================================================
   MEDIA SECTION
   ========================================================================= */
.media {
    background-color: var(--bg-light);
}

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: var(--bg-gray);
    border: 1px solid rgba(0,0,0,0.05);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Cards */
.media-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-card {
    grid-column: 1 / -1; /* Make the video span full width or let it be regular width */
}

@media (min-width: 768px) {
    .video-card .video-container {
        padding-bottom: 50%; /* slightly less tall for full width */
    }
}

.article-card {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.media-icon {
    width: 60px;
    height: 60px;
    background: rgba(90, 24, 70, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media-info h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.media-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.media-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.media-link:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

/* =========================================================================
   PUBLICATIONS UPDATES
   ========================================================================= */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.book-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(90, 24, 70, 0.1);
}

.book-cover {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: top;
    mix-blend-mode: multiply;
    border-bottom: 4px solid var(--primary-color);
}

.book-info {
    padding: 1.5rem;
    flex: 1;
}

.book-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.youtube-category .youtube-cta-card {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.youtube-cta-card .yt-icon {
    font-size: 3.5rem;
    color: #ff0000;
    background: var(--white);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.youtube-cta-card h4 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.youtube-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.yt-btn {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    padding: 12px 28px !important;
}

.yt-btn:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px) !important;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

/* Facebook Embed Responsiveness */
#social-widget-placeholder iframe {
    max-width: 100%;
    width: 100vw !important;
}

@media (max-width: 1150px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        border-top: 1px solid #eee;
    }

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

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-logo h2 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

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

    .youtube-category .youtube-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

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

    .nav-logo h2 {
        font-size: 0.85rem;
        white-space: normal;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .hero-image::before {
        border-radius: 20px;
        animation: none;
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
}