/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #944bbb;
    --primary-rgb: 148, 75, 187;
    --primary-dark: #531cb3;
    --secondary-color: #f5b841;
    --dark-color: #14110f;
    --light-color: #edf7f6;
    --text-color: #14110f;
    --light-text: #edf7f6;
    --medium-text: #666;
    --dark-text: #14110f;
    --link-color: #944bbb;
    --link-hover: #531cb3;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

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

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

ul {
    list-style: none;
}

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

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 50px;
}

.logo a {
    color: var(--dark-text);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.logo a:hover {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
    margin-right: 5px;
}

.main-nav a {
    display: block;
    padding: 8px 15px;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav > ul > li > a:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
}

.main-nav li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown li {
    margin: 0;
    width: 100%;
}

.main-nav .dropdown a {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0;
    color: var(--medium-text);
    transition: all 0.2s ease;
}

.main-nav .dropdown a:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
    padding-left: 25px;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-actions {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.login-button,
.signup-button {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-button {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--border-color);
    margin-right: 10px;
}

.signup-button {
    color: var(--light-color);
    background-color: var(--primary-color);
}

.login-button:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-color: var(--primary-color);
}

.signup-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    color: #444;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
    border: 2px solid #3498db;
}

.user-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-menu-toggle:hover {
    background-color: #f5f5f5;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    margin: 5px 0 0;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown li {
    margin: 0;
    width: 100%;
}

.user-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--medium-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.user-dropdown a:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
    padding-left: 25px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.off-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.off-canvas.active {
    transform: translateX(0);
}

.off-canvas-wrapper {
    padding: 30px 0;
    height: 100%;
    overflow-y: auto;
}

.off-canvas-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.off-canvas-menu li {
    margin-bottom: 5px;
}

.off-canvas-menu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.off-canvas-menu .user-avatar-mini {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.off-canvas-menu a:hover {
    background-color: rgba(53, 81, 181, 0.1);
    border-left-color: #3498db;
    color: var(--primary-color);
}

.menu-item-has-children {
    position: relative;
}

.menu-expand {
    position: absolute;
    right: 25px;
    top: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-expand::before {
    content: '+';
    font-size: 18px;
    font-weight: 500;
    color: var(--medium-text);
}

.menu-item-has-children.active .menu-expand::before {
    content: '-';
}

.sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 20px;
}

.sub-menu a {
    padding: 10px 25px;
    font-size: 14px;
    color: var(--medium-text);
}

.off-canvas-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--medium-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.off-canvas-close:hover {
    color: var(--primary-color);
}

.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .user-actions {
        margin-right: 25px;
    }
}

@media (max-width: 768px) {
    .user-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .site-header {
        padding: 12px 0;
    }
}

/* Hero Section */
.hero-section,
.what-i-do-section,
.newsletter-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--light-color);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.hero-section {
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-text {
    flex: 1;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.welcome-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--secondary-color);
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    position: relative;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title strong {
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.8;
}

.features-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(63, 81, 181, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-color);
}

.feature-description {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cta-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    margin-right: 25px;
    font-size: 36px;
    position: relative;
}

.cta-icon::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 64, 129, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-text {
    font-size: 16px;
    font-weight: 500;
}

/* What I Do Section */
.what-i-do-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
}

.services-list {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.services-list p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    padding-left: 35px;
}

.services-list p:last-child {
    margin-bottom: 0;
}

.services-list p a {
    font-weight: 500;
}

/* Free Resources Section */
.free-resources-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 22px;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.25);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.blog-post-title {
    padding: 25px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.blog-post:hover .blog-post-title {
    background-color: rgba(63, 81, 181, 0.05);
}

.all-posts-link {
    text-align: center;
}

.all-posts-link a {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(255, 64, 129, 0.2);
    transition: all 0.3s ease;
}

.all-posts-link a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255, 64, 129, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.03;
    pointer-events: none;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.1);
    outline: none;
}

.form-group input.error {
    border-color: var(--danger-color);
    background-color: rgba(244, 67, 54, 0.03);
}

.error-message {
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Password Strength Indicators */
.password-strength {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
}

.password-strength.weak {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
}

.password-strength.medium {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--warning-color);
}

.password-strength.strong {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(63, 81, 181, 0.2);
}

.submit-button:hover {
    background-color: #303f9f;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(63, 81, 181, 0.3);
}

/* Footer */
.site-footer {
    background-color: #262834;
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-text {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.social-links {
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #262834;
    color: #fff;
    z-index: 1000;
    padding: 20px;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-notice-hidden {
    display: none !important;
}

.cookie-notice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 20px;
}

#cn-notice-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#cn-notice-buttons {
    display: flex;
    gap: 15px;
}

.cn-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cn-button:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

.cn-close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cn-close-icon:hover {
    color: #fff;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .main-nav, .user-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        margin-bottom: 40px;
    }

    .features-row {
        flex-direction: column;
    }

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

    .what-i-do-section {
        background: var(--light-color);
    }
}

@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-links {
        gap: 15px;
    }

    .modal-content {
        max-width: 90%;
    }

    .section-title {
        font-size: 28px;
    }

    .newsletter-form {
        padding: 30px 20px;
    }

    .cookie-notice-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--danger-color);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.modal-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.modal-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.modal-form input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.1);
    outline: none;
}

.modal-form .form-submit {
    margin-top: 30px;
}

.modal-form .form-submit button {
    width: 100%;
}

.modal-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.modal-footer a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-footer a:hover {
    color: var(--secondary-color);
}

/* Animation Classes */
.fade-in, .slide-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in {
    transform: scale(0.95);
}

.slide-up {
    transform: translateY(30px);
}

.fade-in.show, .slide-up.show {
    opacity: 1;
    transform: none;
}

/* Hero bölümü için düğmeler */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 8px 15px rgba(63, 81, 181, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(63, 81, 181, 0.3);
}

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

.btn-outline:hover {
    background-color: rgba(63, 81, 181, 0.1);
    transform: translateY(-3px);
}

/* Bildirimler */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 350px;
    animation: slideIn 0.4s ease forwards;
    transition: opacity 0.3s ease;
}

.notification.success {
    background-color: #e7f9f0;
    border-left: 4px solid #06c270;
    color: #055a34;
}

.notification.error {
    background-color: #ffeef0;
    border-left: 4px solid #ff3860;
    color: #94142e;
}

.notification.info {
    background-color: #e7f1fc;
    border-left: 4px solid #3273dc;
    color: #1e3b66;
}

.notification p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.notification.fade-out {
    opacity: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Sayfa yukarı çıkış butonu */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: #303f9f;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top .arrow-up {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
}

/* Resim yükleme animasyonu */
.hero-image img {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* Icon Fonts */
@font-face {
    font-family: 'recepweb-icons';
    src: url('../fonts/recepweb-icons.eot');
    src: url('../fonts/recepweb-icons.eot?#iefix') format('embedded-opentype'),
         url('../fonts/recepweb-icons.woff') format('woff'),
         url('../fonts/recepweb-icons.ttf') format('truetype'),
         url('../fonts/recepweb-icons.svg#recepweb-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'recepweb-icons';
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before { content: '\e900'; }
.icon-facebook:before { content: '\e901'; }
.icon-twitter:before { content: '\e902'; }
.icon-linkedin:before { content: '\e903'; }
.icon-youtube:before { content: '\e904'; }
.icon-telegram:before { content: '\e905'; }
.icon-envelope:before { content: '\e906'; }
.icon-user:before { content: '\e907'; }

/* İletişim Sayfası Stilleri */
.contact-main-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container,
.contact-info-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover,
.contact-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.info-items {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.info-content p {
    font-size: 16px;
    color: var(--medium-text);
    line-height: 1.6;
}

.info-content a {
    color: var(--medium-text);
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-contact {
    margin-top: 30px;
}

.social-contact h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

.social-contact .social-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-contact .social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* İletişim Formu Özel Stilleri */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark-text);
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    outline: none;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='none'%3E%3Cpath fill='%23333' d='M6 6 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
    font-size: 15px;
}

.contact-form .form-check {
    margin: 20px 0;
}

.contact-form .form-check label {
    display: inline;
    margin-left: 8px;
    font-weight: 400;
}

.contact-form .submit-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.contact-form .submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

.contact-form .submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(var(--primary-rgb), 0.3);
}

/* Map Section Styles */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 450px;
}

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

/* Mobile Responsiveness for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-main-section,
    .map-section {
        padding: 40px 0;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 20px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .info-item {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* FAQ Bölümü Stilleri */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(var(--primary-rgb), 0.03);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    padding-right: 30px;
    flex: 1;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--primary-color);
    color: #fff;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-text);
    margin: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-answer-inner {
        padding: 0 20px 16px;
    }
}

/* E-Kitaplar Sayfası Stilleri */
.ebooks-section {
    padding: 60px 0;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ebook-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ebook-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ebook-image {
    position: relative;
    overflow: hidden;
}

.ebook-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.ebook-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ebook-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.ebook-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 20px;
}

.ebook-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.ebook-features li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--medium-text);
}

.ebook-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.ebook-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ebook-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.ebook-actions .btn {
    padding: 10px 20px;
}

/* Bundle Section */
.bundle-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.bundle-box {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.bundle-content {
    padding: 40px;
    flex: 2;
}

.bundle-image {
    flex: 1;
    min-height: 400px;
    background-color: #f6f6f6;
    position: relative;
}

.bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.bundle-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.bundle-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 25px;
}

.bundle-includes {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    column-count: 2;
    column-gap: 30px;
}

.bundle-includes li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--medium-text);
    break-inside: avoid;
}

.bundle-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.bundle-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.price-comparison {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 16px;
    color: var(--medium-text);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.save-text {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 100px;
}

.bundle-button {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .bundle-box {
        flex-direction: column-reverse;
    }
    
    .bundle-image {
        min-height: 300px;
    }
    
    .bundle-includes {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .ebooks-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .ebook-card {
        max-width: 100%;
    }
    
    .bundle-content {
        padding: 30px 20px;
    }
}

/* Eğitim Sayfası Stilleri */
.hero-video {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-video img,
.hero-video video {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
    border-radius: 15px;
}

.hero-video::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
    transition: all 0.3s ease;
}

.hero-video:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.5);
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
}

.content-box {
    display: flex;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.content-icon {
    width: 80px;
    background-color: rgba(var(--primary-rgb), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.content-details {
    padding: 25px;
    flex-grow: 1;
}

.content-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.content-details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 15px;
}

.toggle-content {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.toggle-content::after {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: var(--primary-color) transparent transparent transparent;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.toggle-content.active::after {
    transform: rotate(180deg);
}

.hidden-content {
    display: none;
    padding-top: 15px;
}

.hidden-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hidden-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--medium-text);
    line-height: 1.5;
}

.hidden-content li::before {
    content: '•';
    position: absolute;
    left: 5px;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* Pricing Box Styles */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pricing-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.pricing-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--medium-text);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.pricing-price {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.pricing-price .old-price {
    font-size: 18px;
    color: var(--medium-text);
    text-decoration: line-through;
    margin-bottom: 10px;
    display: block;
}

.pricing-price .current-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.pricing-price .price-note {
    font-size: 14px;
    color: var(--medium-text);
    display: block;
}

.pricing-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.pricing-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.4);
}

.cta-contact {
    text-align: center;
    margin-top: 40px;
}

.cta-contact p {
    font-size: 16px;
    color: var(--medium-text);
    margin-bottom: 15px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button::before {
    content: '\f232';
    font-family: 'Font Awesome 5 Brands';
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .content-box {
        flex-direction: column;
    }
    
    .content-icon {
        width: 100%;
        height: 70px;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-video::after {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .content-section,
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-title {
        font-size: 22px;
    }
    
    .pricing-features li {
        font-size: 15px;
    }
    
    .pricing-price .current-price {
        font-size: 32px;
    }
}

/* Dijital Performans Uzmanı Sayfası Stilleri */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text {
    flex: 1;
}

.expertise-list {
    margin-top: 20px;
    padding-left: 5px;
}

.expertise-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    margin-top: auto;
    padding-left: 5px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.results-section {
    padding: 80px 0;
    background-color: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-percentage {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.result-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonials-slider {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox için */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari için */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 320px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: -15px;
    top: -20px;
    color: rgba(var(--primary-rgb), 0.1);
    font-family: serif;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.testimonial-author p {
    font-size: 14px;
    color: #888;
}

.process-section {
    padding: 80px 0;
    background-color: #fff;
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cta-section {
    padding: 50px 0 80px;
    background-color: var(--light-color);
}

.cta-box {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.2);
}

.cta-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-box .btn {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

.cta-box .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .cta-box {
        padding: 30px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Courses Page Styles */
.courses-container {
    background-color: #f9fafb;
}

.courses-hero {
    background: linear-gradient(135deg, #0066cc, #004d99);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.courses-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.courses-hero h1 span {
    color: #4cd964;
}

.courses-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.courses-filters {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filters-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-input {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.search-input input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-input button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #0066cc;
    font-size: 16px;
    cursor: pointer;
}

.filter-select select {
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    min-width: 180px;
    color: #333;
    transition: all 0.3s ease;
}

.filter-select select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.courses-grid-section {
    padding: 40px 0 70px;
}

.search-results {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.course-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.course-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.course-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.course-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 7px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
}

.course-actions {
    display: flex;
    gap: 10px;
}

.course-actions .btn {
    flex: 1;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.pagination-link.active {
    background-color: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.pagination-link.prev,
.pagination-link.next {
    padding: 10px 20px;
}

.pagination-numbers {
    display: flex;
}

.no-courses {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.no-courses i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-courses h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.no-courses p {
    color: #666;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us {
    padding: 70px 0;
    background-color: #fff;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.course-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0066cc, #004080);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: #4cd964;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .filters-form {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .search-input {
        width: 100%;
        max-width: none;
    }
    
    .filter-select select {
        width: 100%;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-hero h1 {
        font-size: 28px;
    }
    
    .courses-hero p {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Course Details Page Styles */
.course-details-container {
    background-color: #f9fafb;
}

.course-header {
    padding: 60px 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.course-header-content {
    display: flex;
    gap: 40px;
}

.course-info {
    flex: 1;
}

.course-info h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.course-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-enrolled {
    display: inline-flex;
    align-items: center;
    background-color: #e6f7ef;
    color: #28a745;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.course-enrolled i {
    margin-right: 8px;
    font-size: 18px;
}

.course-actions {
    display: flex;
    gap: 15px;
}

.course-image-price {
    width: 40%;
}

.course-detail-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.course-price-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-header {
    background-color: #0066cc;
    color: #fff;
    padding: 15px 20px;
}

.price-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.price-content {
    padding: 20px;
}

.discount-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.discount-badge {
    background-color: #ff6b6b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.discount-text {
    margin-left: 8px;
    color: #666;
    font-size: 14px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.price .current-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.course-features li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li i {
    color: #0066cc;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.course-features li strong {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.course-content-section {
    padding: 60px 0;
}

.course-content-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
}

.content-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.content-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.content-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.what-you-learn {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.what-you-learn h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.learn-list li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: #555;
}

.learn-list li i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 14px;
}

.course-curriculum {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.curriculum-item {
    border-bottom: 1px solid #eee;
}

.curriculum-item:last-child {
    border-bottom: none;
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.curriculum-header:hover {
    background-color: #f0f0f0;
}

.curriculum-header.active {
    background-color: #0066cc;
    color: #fff;
}

.curriculum-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.curriculum-header h3 i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.curriculum-header.active h3 i {
    transform: rotate(180deg);
}

.module-info {
    font-size: 14px;
    color: #666;
}

.curriculum-header.active .module-info {
    color: #fff;
}

.curriculum-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lessons-list {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
}

.lessons-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

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

.lessons-list li i {
    margin-right: 10px;
    color: #0066cc;
}

.lessons-list li .fa-lock {
    color: #aaa;
}

.instructor-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.instructor-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0066cc;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-details {
    flex: 1;
}

.instructor-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.instructor-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.instructor-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.sidebar-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}

.sidebar-list li i {
    color: #0066cc;
    margin-right: 10px;
    margin-top: 3px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

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

.features-list li i {
    color: #0066cc;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.features-list li strong {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.reviews-section {
    padding: 60px 0;
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.rating {
    color: #ffb400;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.other-courses-section {
    padding: 60px 0;
    background-color: #f9fafb;
}

.other-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .course-header-content {
        flex-direction: column;
    }
    
    .course-image-price {
        width: 100%;
        max-width: 450px;
    }
    
    .course-content-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learn-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .course-info h1 {
        font-size: 28px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .other-courses-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .instructor-image {
        margin-bottom: 15px;
    }
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.error-message {
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Header Styling - Modern Tasarım */
.site-header {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
}

.header-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

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

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 40px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-item {
    position: relative;
    margin-right: 5px;
}

.main-nav .nav-item a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-nav .nav-item a i {
    margin-right: 5px;
    font-size: 16px;
}

.main-nav .nav-item a:hover,
.main-nav .nav-item.active a {
    color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
}

.main-nav .dropdown-hover:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.main-nav .dropdown li {
    list-style: none;
}

.main-nav .dropdown a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: var(--dark-color);
    border-left: 3px solid transparent;
}

.main-nav .dropdown a:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    margin-right: 15px;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-box input {
    width: 180px;
    padding: 8px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-box input:focus {
    width: 220px;
    border-color: var(--primary-color);
    outline: none;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.search-box button:hover {
    color: var(--primary-color);
}

.user-actions {
    display: flex;
    align-items: center;
}

.login-button,
.signup-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.login-button i,
.signup-button i {
    margin-right: 5px;
}

.login-button {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.login-button:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
}

.signup-button {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.signup-button:hover {
    background-color: var(--primary-dark);
}

.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    background-color: rgba(var(--primary-rgb), 0.05);
}

.user-menu-toggle:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.user-menu .user-avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.user-menu .user-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    margin-right: 5px;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown li {
    list-style: none;
}

.user-dropdown a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.user-dropdown a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.user-dropdown a:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hamburger menüsü */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    margin-left: 15px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Medya sorguları - Her zaman en sonda toplanır */
@media (max-width: 1199px) {
    .header-container {
        max-width: 960px;
    }
    
    .logo {
        margin-right: 20px;
    }
    
    .main-nav .nav-item a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .search-box input {
        width: 160px;
    }
    
    .search-box input:focus {
        width: 180px;
    }
}

@media (max-width: 991px) {
    .header-container {
        max-width: 720px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .user-name {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .site-header {
        padding: 10px 0;
    }
    
    .login-button,
    .signup-button {
        font-size: 0;
        padding: 8px;
    }
    
    .login-button i,
    .signup-button i {
        margin-right: 0;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header-container {
        max-width: 540px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .user-avatar-mini {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {
    .header-container {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Logo stilleri */
.header-logo {
    max-height: 50px;
    width: auto;
    transition: all 0.3s;
}

.site-header.scrolled .header-logo {
    max-height: 40px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
}