/**
 * Personal Branding Website - Srilekha Kaluvakunta
 * Custom Stylesheet
 * Author Website Design
 */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Root Styles
   2. Global Styles & Resets
   3. Typography
   4. Buttons
   5. Navigation
   6. Hero Section
   7. Book Sections
   8. About Section
   9. Videos Section
   10. Awards Section
   11. Gallery Section
   12. Social Section
   13. Contact Section
   14. Footer
   15. Modals
   16. Animations & Transitions
   17. Responsive Design
   ============================================ */

/* ============================================
   1. CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    /* Primary Colors - Deep Purple/Plum */
    --primary-color: #5D3A6F;
    --primary-dark: #42285A;
    --primary-light: #7B4F94;
    
    /* Secondary Colors - Metallic Gold/Warm Accents */
    --secondary-color: #D4AF37;
    --secondary-dark: #d39c10;
    --secondary-light: #efcb03;
    --gold-shine: #fbe89c;
    --gold-deep: #996515;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Accent Colors */
    --accent-rose: #D4A5A5;
    --accent-teal: #5D8A8F;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F5F2;
    --bg-dark: #2C2C2C;
    
    /* Text Colors */
    --text-primary: #2C2C2C;
    --text-secondary: #6C757D;
    --text-light: #FFFFFF;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Fonts */
    --font-primary: "Poppins", sans-serif, Arial;
    --font-secondary: "Crimson Text", serif;
    --font-secondary: "Playfair", serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ============================================
   2. GLOBAL STYLES & RESETS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Section Titles */
.section-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-deep), var(--secondary-color), var(--gold-shine));
    margin: 0 auto 1.5rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

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

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

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--secondary-light);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-fast);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #F8F5F2 0%, #EDE7E3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(93, 58, 111, 0.1), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-color);
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    color: #EDE7E3;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img-wrapper {
    position: relative;
    
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 2;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.2;
    }
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    /* overflow: hidden; */
    box-shadow: var(--shadow-lg);
    
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

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

/* ============================================
   7. BOOK SECTIONS
   ============================================ */
.book-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.book-section-alt {
    background: var(--bg-secondary);
}

.book-cover-wrapper {
    position: relative;
    /* max-width: 400px; */
    width: 100%;
    margin: 0 auto;
}

.book-cover {
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-lg); */
    transition: var(--transition-medium);
}

.book-cover:hover {
    transform: translateY(-10px) scale(1.02);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

.book-content {
    padding: 2rem;
}

.book-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light), var(--gold-shine));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.book-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

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

.book-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.meta-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

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

/* ============================================
   8. ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-secondary);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding: 2rem;
}

.about-subtitle {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   9. VIDEOS SECTION
   ============================================ */
.videos-section {
    background: var(--bg-primary);
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--dark-gray);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2;
}

.play-button:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.play-button svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
    fill: var(--primary-color);
    margin-left: 4px;
}

.play-button:hover svg {
    stroke: var(--white);
    fill: var(--white);
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.video-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   10. AWARDS SECTION
   ============================================ */
.awards-section {
    background: var(--bg-secondary);
}

.award-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.award-card:hover .award-icon {
    transform: rotate(360deg);
}

.award-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.award-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.award-organization {
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* ============================================
   11. GALLERY SECTION
   ============================================ */
.media-section {
    background: var(--bg-primary);
}

/* Media Carousel Styles */
.media-carousel {
    padding: 0 15px;
}

.media-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    margin: 0 15px;
    height: auto;
}

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

.media-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--light-gray);
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.media-card:hover .media-image img {
    transform: scale(1.1);
}

.media-content {
    padding: 2rem;
}

.media-channel {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    min-height: 60px;
    line-height: 1.4;
}

.media-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 75px;
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.media-link:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    gap: 12px;
}

.media-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    transition: var(--transition-fast);
}

.media-link:hover svg {
    stroke: var(--secondary-color);
}

/* Slick Carousel Customization for Media Section */
.media-carousel .slick-dots {
    bottom: -50px;
}

.media-carousel .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.media-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary-color);
}

.media-carousel .slick-prev,
.media-carousel .slick-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition-fast);
}

.media-carousel .slick-prev:hover,
.media-carousel .slick-next:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    border-color: var(--secondary-light);
}

.media-carousel .slick-prev {
    left: -60px;
}

.media-carousel .slick-next {
    right: -60px;
}

.media-carousel .slick-prev:before,
.media-carousel .slick-next:before {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 1;
}

.media-carousel .slick-prev:hover:before,
.media-carousel .slick-next:hover:before {
    color: var(--white);
}

.gallery-section {
    background: var(--bg-primary);
}

.gallery-grid {
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 58, 111, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

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

.gallery-overlay svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

/* ============================================
   12. SOCIAL SECTION
   ============================================ */
.social-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 80px 0;
}

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

.social-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.social-section .title-underline {
    background: linear-gradient(90deg, var(--gold-deep), var(--secondary-color), var(--gold-shine));
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.6);
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    border-color: var(--secondary-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.social-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

/* ============================================
   13. CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--bg-secondary);
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-details a:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 58, 111, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ============================================
   14. FOOTER
   ============================================ */
.main-footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-link:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

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

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   15. MODALS
   ============================================ */

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.gallery-modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition-fast);
}

.gallery-modal-close:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: linear-gradient(135deg, var(--gold-deep), var(--secondary-color), var(--secondary-light));
    border-color: var(--secondary-light);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.gallery-prev svg,
.gallery-next svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

/* ============================================
   16. ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* WOW.js Animation Adjustments */
.wow {
    visibility: hidden;
}

/* ============================================
   17. RESPONSIVE DESIGN
   ============================================ */

/* Tablets and Below (992px) */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-fast);
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .book-content {
        margin-top: 2rem;
    }
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .book-buttons {
        flex-direction: column;
    }
    
    .book-buttons .btn-primary,
    .book-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .about-stats {
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .book-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .gallery-modal-nav {
        padding: 0 10px;
    }
    
    .media-title {
        min-height: auto;
    }
    
    .media-description {
        min-height: auto;
    }
    
    .media-carousel .slick-prev,
    .media-carousel .slick-next {
        display: none !important;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .main-nav,
    .scroll-indicator,
    .video-modal,
    .gallery-modal {
        display: none;
    }
}