/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B46C1;
    --primary-dark: #553C9A;
    --primary-light: #9F7AEA;
    --secondary-color: #38B2AC;
    --secondary-dark: #2C7A7B;
    --secondary-light: #4FD1C5;
    --accent-color: #F6AD55;
    --accent-dark: #DD6B20;
    --text-color: #2D3748;
    --text-light: #4A5568;
    --background-color: #F7FAFC;
    --white: #FFFFFF;
    --gray-50: #F7FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

/* Header ve Navigasyon */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

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

.logo img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

.quick-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-icon:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
}

.phone-icon i {
    font-size: 1.2rem;
}

.login-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-button:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
}

.hero-section .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.1);
    margin-bottom: 2rem;
}

.hero-video {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.hero-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    cursor: pointer;
}

.hero-video .video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-video .large-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(1);
}

.hero-video .large-play-button:hover {
    transform: scale(1.1);
    background: var(--white);
}

.hero-video .large-play-button i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-left: 5px;
}

.hero-video .video-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}

.hero-video .video-label i {
    color: var(--secondary-color);
}

/* Özel Video Kontrolleri */
.hero-video video::-webkit-media-controls {
    display: none !important;
}

.hero-video .custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video:hover .custom-controls {
    opacity: 1;
}

.hero-video .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.hero-video .progress {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
    width: 0;
    transition: width 0.1s linear;
}

.hero-video .controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.hero-video .left-controls,
.hero-video .right-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-video .control-button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video .control-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.hero-video .control-button i {
    font-size: 1.2rem;
}

.hero-video .control-button.muted i {
    color: var(--secondary-color);
}

.hero-video .time-display {
    color: var(--white);
    font-size: 0.9rem;
    font-family: monospace;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 2rem auto 1rem;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid var(--gray-200);
}

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

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.info-content {
    flex: 1;
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.info-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    background: var(--gray-50);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.stat-text {
    display: block;
    font-size: 0.875rem;
    color: var(--text-color);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

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

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-dark);
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.pricing-header p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1rem;
}

.pricing-features {
    padding: 2rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-features i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.pricing-button {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 2rem 2rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
}

.pricing-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-button {
    background: var(--secondary-color);
}

.pricing-card.featured .pricing-button:hover {
    background: var(--secondary-dark);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.contact-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    border: 1px solid var(--gray-200);
}

.contact-card:hover {
    transform: translateY(-5px);
}

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

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.card-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.card-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.card-content a:hover {
    color: var(--secondary-dark);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

.footer-section ul a {
    color: var(--gray-200);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-200);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--secondary-light);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.contact-info a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
}

.developer p {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
}

.developer-link {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-section {
        height: auto;
    }

    .hero-section .container {
        padding: 120px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .about-image {
        position: static;
    }

    .info-card {
        padding: 1.5rem;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-left {
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links a:hover {
        background: var(--gray-50);
        color: var(--secondary-color);
    }

    .logo img {
        height: 55px;
    }

    .quick-actions {
        gap: 1rem;
    }

    .phone-icon {
        width: 35px;
        height: 35px;
    }

    .phone-icon i {
        font-size: 1rem;
    }

    .login-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Hero Section Mobile */
    .hero-section .container {
        padding: 100px 20px 15px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-video {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-video {
        max-width: 90%;
        margin: 0 auto;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 1.5rem auto 0.5rem;
    }

    /* About Section Mobile */
    .about-section {
        padding: 3rem 1rem;
    }

    .about-content {
        gap: 1rem;
    }

    .info-card {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

    .stat-text {
        font-size: 0.75rem;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .card-icon i {
        font-size: 1.2rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-header {
        padding: 1.5rem;
    }

    .pricing-features {
        padding: 1.5rem;
    }

    .pricing-button {
        margin: 0 1.5rem 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-right {
        padding: 0.75rem;
        gap: 1rem;
    }

    .phone-number {
        padding: 0.5rem 0.75rem;
    }

    .login-button {
        padding: 0.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-card {
        margin: 0 0.5rem;
    }

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

    .info-card {
        flex-direction: row;
    }
}

/* Hamburger Menu */
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    position: relative;
    transition: background 0.2s ease-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.2s ease-out;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links a:hover {
        background: var(--gray-50);
        color: var(--secondary-color);
    }

    .nav-right {
        margin-top: 1rem;
        padding: 1rem;
        background: var(--gray-100);
        width: 100%;
        justify-content: center;
    }
}

.hero-video .right-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-video .volume-control {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-video .volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    margin-left: 0.5rem;
    position: relative;
    display: none;
    transition: width 0.3s ease;
}

.hero-video .volume-control:hover .volume-slider {
    display: block;
}

.hero-video .volume-progress {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
    width: 100%;
    transition: width 0.1s linear;
}

.hero-video .control-button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video .control-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.hero-video .control-button i {
    font-size: 1.2rem;
}

.hero-video .control-button.muted i {
    color: var(--secondary-color);
} 