/* Additional styles for new pages */

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text h3 {
    color: #4ecdc4;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.about-text ul {
    list-style: none;
    margin: 1rem 0;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #444;
}

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

.value-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.team-section,
.contact-info {
    margin: 4rem 0;
}

.contact-info h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

/* Blog Page Styles */
.blog-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-post {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post.featured .post-image img {
    height: 300px;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: #ccc;
}

.post-category {
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: bold;
}

.post-content h2,
.post-content h3 {
    margin-bottom: 1rem;
}

.post-content h2 a,
.post-content h3 a {
    color: #ffd700;
    text-decoration: none;
}

.read-more {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    color: #ffd700;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #444;
}

.sidebar-widget h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.category-list,
.recent-posts {
    list-style: none;
}

.category-list li,
.recent-posts li {
    margin-bottom: 0.8rem;
}

.category-list a,
.recent-posts a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list a:hover,
.recent-posts a:hover {
    color: #ffd700;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: #2d2d2d;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form button {
    width: 100%;
}

/* FAQ Page Styles */
.faq-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #444;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: #ccc;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    border-radius: 15px;
}

.faq-contact h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Pages Styles */
.legal-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #ffd700;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-text h3 {
    color: #4ecdc4;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Services Page Styles */
.services-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

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

.service-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #ccc;
    position: relative;
    padding-left: 1rem;
}

.service-card li:before {
    content: "✓";
    color: #4ecdc4;
    position: absolute;
    left: 0;
}

.service-features {
    margin: 4rem 0;
}

.service-features h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.feature-item h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.service-disclaimer {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    border-left: 4px solid #ff6b6b;
}

.service-disclaimer h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.service-disclaimer h3 {
    color: #ffd700;
    margin: 1.5rem 0 1rem;
}

.disclaimer-content ul {
    margin: 1rem 0 1rem 2rem;
}

.disclaimer-content li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-section {
    text-align: center;
    margin-top: 4rem;
}

.contact-section h2 {
    color: #ffd700;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.contact-method h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

/* Active navigation link */
.nav-link.active {
    color: #ffd700 !important;
    font-weight: bold;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}