/*
Theme Name: Best Streaming Shows
Description: A premium WordPress theme for streaming shows and entertainment content. Features modern design with blue and white color scheme, responsive layout, and optimized for performance.
Author: Best Streaming Shows
Version: 1.0
License: GPL v2 or later
Text Domain: best-streaming-shows
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1e40af;
}

h2 {
    font-size: 2rem;
    color: #1e40af;
}

h3 {
    font-size: 1.5rem;
    color: #3b82f6;
}

p {
    margin-bottom: 1rem;
    color: #a3a3a3;
}

a {
    text-decoration: none;
    color: #3b82f6;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    box-shadow: 0 2px 10px rgba(30,64,175,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
}

.nav-logo a {
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-arrow {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 102, 0, 0.8);
    transform: scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    color: #fff;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Featured Shows Section */
.featured-shows {
    padding: 80px 0;
    background-color: #f8fafc;
}

.featured-shows h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.show-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3b82f6;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
}

.show-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.card-content h3 a {
    color: #1e40af;
    text-decoration: none;
}

.card-content h3 a:hover {
    color: #3b82f6;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stars {
    color: #f39c12;
    font-size: 1.1rem;
}

.rating-text {
    color: #7f8c8d;
    font-weight: 500;
}

/* Why Watch Section */
.why-watch {
    padding: 80px 0;
    background: #ffffff;
}

.why-watch h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
    border: 1px solid #3b82f6;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.author {
    font-weight: 600;
    color: #ffffff;
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
    background-color: #f8fafc;
}

.blog-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3b82f6;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h2 {
    margin-bottom: 1rem;
}

.post-content h2 a {
    color: #1e40af;
    text-decoration: none;
}

.post-content h2 a:hover {
    color: #3b82f6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.read-more {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.read-more:hover {
    color: #1e40af;
}

/* Single Post/Page Styles */
.post-content, .page-content {
    padding: 80px 0;
    background: #000;
}

.post-featured-image, .page-featured-image {
    margin-bottom: 2rem;
}

.post-featured-image img, .page-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-body, .page-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.post-tags ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-tags li a {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: none;
}

.post-tags li a:hover {
    background: #ff6600;
    color: #fff;
}

.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous, .nav-next {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.nav-previous:hover, .nav-next:hover {
    background: #e9ecef;
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #2c3e50;
}

.nav-next {
    text-align: right;
}

/* Archive and Search Styles */
.archive-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.search-results {
    margin-bottom: 2rem;
}

.search-results p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.no-results, .no-posts {
    text-align: center;
    padding: 3rem 0;
}

.no-results h2, .no-posts h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.search-form-container {
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.suggestions {
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.suggestions h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.suggestions ul {
    list-style: disc;
    margin-left: 2rem;
}

.suggestions li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

/* Search Form Styles */
.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    border-color: #3498db;
}

.search-submit {
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: linear-gradient(45deg, #e55a00, #cc4d00);
}

/* Comments Styles */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.comments-title {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment-author {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.comment-content {
    line-height: 1.6;
}

.comment-respond {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment-reply-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.comment-form {
    display: grid;
    gap: 1rem;
}

.comment-form p {
    margin-bottom: 0;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit input[type="submit"] {
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background: linear-gradient(45deg, #e55a00, #cc4d00);
    transform: translateY(-2px);
}

/* Widget Area */
.widget-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.widget-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #ff6600;
}

/* Pagination */
.navigation.pagination {
    margin-top: 3rem;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #ff6600;
    color: #fff;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
} 

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #9b59b6;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team {
    padding: 80px 0;
    
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.2);
    border: 1px solid #9b59b6;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.position {
    color: #9b59b6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.achievements {
    padding: 80px 0;
    background: #666666;
    color: #fff;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #2c2c2c;
    border-radius: 10px;
    border: 1px solid #9b59b6;
}

.contact-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.contact-form {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
    border: 1px solid #9b59b6;
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.faq {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.2);
    border: 1px solid #9b59b6;
}

.faq-item h3 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.map-section {
    padding: 80px 0;
    background: #000;
}

.map-container {
    background: #2c2c2c;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #9b59b6;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.map-content h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.showroom-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.showroom-hours h4 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
    border: 1px solid #9b59b6;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-text h2 {
    color: #9b59b6;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-text h3 {
    color: #ff6600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #9b59b6;
}

/* Footer */
.footer {
    background: #1e40af;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 3px solid #3b82f6;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6600, #9b59b6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e55a00, #8e44ad);
}

/* Selection Color */
::selection {
    background: #9b59b6;
    color: #fff;
}

::-moz-selection {
    background: #9b59b6;
    color: #fff;
}

/* Enhanced Text Shadows and Depth */
.featured-systems h2,
.why-choose h2,
.testimonials h2,
.blog-posts h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.featured-systems h2::after,
.why-choose h2::after,
.testimonials h2::after,
.blog-posts h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6600, #9b59b6);
    border-radius: 2px;
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Card Grid Layout */
.systems-grid,
.features-grid,
.testimonials-grid {
    gap: 3rem;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Focus States */
*:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

button:focus,
.cta-button:focus {
    outline: 2px solid #9b59b6;
    outline-offset: 3px;
}

/* Enhanced Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #9b59b6;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1,
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .hero p,
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .slider-nav {
        bottom: 20px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .systems-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-text {
        padding: 2rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1,
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-field {
        border-radius: 8px 8px 0 0;
    }
    
    .search-submit {
        border-radius: 0 0 8px 8px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Card Hover Effects */
.system-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(155, 89, 182, 0.3);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(155, 89, 182, 0.2);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(155, 89, 182, 0.2);
}

/* Gradient Text Effects */
.gradient-text {
    background: linear-gradient(135deg, #ff6600 0%, #9b59b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Button Styles */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Glowing Border Effect */
.glow-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a) padding-box,
                linear-gradient(135deg, #ff6600, #9b59b6) border-box;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(44, 44, 44, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 89, 182, 0.3);
}

/* Enhanced Testimonial Cards */
.testimonial {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6600, #9b59b6);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial:hover::before {
    opacity: 1;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Activation Page Styles */
.activation-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 2rem;
}

.activation-card {
    
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
    border: 2px solid #9b59b6;
}

.activation-title {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.activation-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.code-input-container {
    position: relative;
    margin-bottom: 2rem;
}

.code-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.code-input:focus {
    border-color: #ff6600;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #6c757d;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 2rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.divider {
    margin: 2rem 0;
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.star-icon {
    background: #fff;
    padding: 0 1rem;
    color: #f39c12;
    font-size: 1.2rem;
}

.call-section {
    text-align: center;
}

.phone-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.call-title {
    color: #ff6600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.call-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.call-btn {
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
}

.secondary-call-btn {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.2);
}

.secondary-call-btn:hover,
.secondary-call-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(155, 89, 182, 0.3);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.secondary-call-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.minimal-footer {
    background: #1a1a1a;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #9b59b6;
}

.minimal-footer a {
    color: #6c757d;
    text-decoration: none;
}

.minimal-footer a:hover {
    color: #ff6600;
}

/* Success Page Styles */
.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 2rem;
}

.success-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
    border: 2px solid #3886fc;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #9b59b6, #ff6600);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-title {
    color: #ff6600;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.next-step {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.primary-call-btn {
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.primary-call-btn:hover,
.primary-call-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.primary-call-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.call-instruction {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.divider {
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9b59b6, transparent);
}

.star-icon {
    
    padding: 0 1rem;
    color: #ff6600;
    font-size: 1.5rem;
}

.secondary-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(155, 89, 182, 0.3);
}

.secondary-title {
    color: #ff6600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-steps-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps-list li {
    padding: 0.5rem 0;
    color: #ddd;
    font-size: 1rem;
}

.home-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6600, #e55a00);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
    color: #fff;
}

/* Mobile Responsiveness for Call Buttons */
@media (max-width: 768px) {
    .primary-call-btn,
    .secondary-call-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }
    
    .success-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 