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

:root {
    --primary: #0A1F44;
    --accent: #D4AF37;
    --bg: #F5F7FA;
    --text: #222222;
    --white: #ffffff;
    --shadow: rgba(10, 31, 68, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Top Header */
.top-header {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: white;
    padding: 0.8rem 0;
    font-size: 0.9rem;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    color: white;
    border: 2px solid white;
}

.social-icons a:nth-child(1) {
    background: #3b5998;
}

.social-icons a:nth-child(2) {
    background: #1da1f2;
}

.social-icons a:nth-child(3) {
    background: #0077b5;
}

.social-icons a:nth-child(4) {
    background: #ff0000;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.8);
}

.top-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
}

/* Header */
.header {
    background: transparent;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}

.header .container {
    display: block;
    max-width: 1400px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFA500;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFA500;
}

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

.btn-cta {
    background: #0099ff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta::before {
    content: '📞';
    font-size: 1.1rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
    background: #0088ee;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f7);
    padding: 60px 0 80px;
    color: var(--text);
    margin-top: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

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

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.info-item .label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.info-item .value {
    font-size: 1.1rem;
    color: var(--accent);
}

.about-text {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Books Grid */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.book-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.book-cover {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.book-info {
    padding: 2rem;
}

.book-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.book-author {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.book-description {
    margin-bottom: 1.5rem;
    color: #666;
}

.book-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* Quote Section */
.quote-section {
    background: var(--primary);
    padding: 80px 0;
    color: var(--white);
}

.quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote p {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.quote cite {
    font-size: 1.2rem;
    color: var(--accent);
    font-style: normal;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a6b 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Detail */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-image .image-placeholder.large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-bio {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-bio h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bio-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    padding: 0.8rem;
    background: var(--bg);
    border-radius: 5px;
}

.info-row strong {
    color: var(--primary);
    margin-right: 0.5rem;
}

.bio-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.bio-content h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.bio-content h3:first-child {
    margin-top: 0;
}

.bio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Book Note */
.book-note {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-top: 3rem;
}

.book-note h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Mirror Writing */
.mirror-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.mirror-content h2,
.mirror-content h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.mirror-content h2:first-child {
    margin-top: 0;
}

.mirror-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.2);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--accent);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    width: calc(50% - 40px);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Recognition Section */
.recognition-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.recognition-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.recognition-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Media Grid */
.media-intro {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 3rem;
    text-align: center;
}

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

.media-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.2);
}

.media-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.media-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.media-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Videos */
.videos-intro {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 3rem;
    text-align: center;
}

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

.video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.2);
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    cursor: pointer;
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-card h3 {
    padding: 1rem;
    color: var(--primary);
}

.video-card p {
    padding: 0 1rem 1.5rem;
    color: #666;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    color: #666;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--accent);
}

.services-list {
    list-style: none;
    text-align: left;
}

.services-list li {
    padding: 0.5rem 0;
    color: #666;
}

.services-list li::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #0d1520 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-underline {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.footer-logo h3 {
    color: #FFA500;
    font-size: 1.8rem;
}

.footer-col p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.footer-social .social-icon:nth-child(1):hover {
    background: #3b5998;
    transform: translateY(-5px);
}

.footer-social .social-icon:nth-child(2):hover {
    background: #1da1f2;
    transform: translateY(-5px);
}

.footer-social .social-icon:nth-child(3):hover {
    background: #0077b5;
    transform: translateY(-5px);
}

.footer-social .social-icon:nth-child(4):hover {
    background: #ff0000;
    transform: translateY(-5px);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-col ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #00d4ff;
    padding-left: 25px;
}

.footer-col ul li a:hover::before {
    left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(0,212,255,0.1);
    transform: translateX(5px);
}

.contact-item .icon {
    font-size: 1.3rem;
    color: #00d4ff;
}

.contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #00d4ff;
}

.contact-item span {
    color: rgba(255,255,255,0.85);
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s;
}

.footer-bottom a:hover {
    color: #00ffff;
    transform: translateY(-2px);
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.call-btn {
    background: #0099ff;
}

.whatsapp-btn {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

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

/* Responsive */
@media (max-width: 968px) {
    .top-header-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin: 0 10px;
    }
    
    .nav {
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content,
    .about-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-image img {
        height: 350px;
    }

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

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

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

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .books-grid,
    .tools-grid,
    .gallery-grid,
    .media-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 30px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        height: 300px;
    }

    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .quote p {
        font-size: 1.3rem;
    }
    
    .navbar {
        border-radius: 25px;
        padding: 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .btn-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .top-header {
        font-size: 0.85rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}
