/* Main CSS file for Podrezov Investigation Website */
/* Based on bihus.info style */

/* Global Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --gray-color: #a8a8a8;
    --success-color: #2a9d8f;
    --warning-color: #e9c46a;
    --danger-color: #e76f51;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --focus-outline: 3px solid var(--primary-color);
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

section {
    padding: 80px 0;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ff0000;
        --secondary-color: #000000;
        --accent-color: #0000ff;
        --light-color: #ffffff;
        --dark-color: #000000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile menu improvements */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    color: var(--dark-color);
}

.mobile-menu-toggle:focus {
    outline: var(--focus-outline);
}

.mobile-menu-toggle[aria-expanded="true"] {
    color: var(--primary-color);
}

/* Form accessibility */
.form-group input:focus,
.form-group textarea:focus {
    outline: var(--focus-outline);
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--danger-color);
}

.error-label {
    color: var(--danger-color);
}

/* Loading states */
[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

[loading="lazy"].loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .skip-link,
    .mobile-menu-toggle,
    .cta,
    footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    img {
        max-width: 100% !important;
    }
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

/* Intro Section */
.intro {
    background-color: white;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Key Facts Section */
.key-facts {
    background-color: #f8f9fa;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.fact-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-10px);
}

.fact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Sections Preview */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.section-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: block;
    color: var(--dark-color);
}

.section-card:hover {
    transform: translateY(-10px);
    color: var(--dark-color);
}

.section-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Quote Section */
.quote {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

blockquote p {
    margin-bottom: 1rem;
}

blockquote cite {
    font-style: normal;
    font-weight: 700;
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
}

.page-header .subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

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

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 8px;
    color: white;
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    color: white;
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.social-card.facebook {
    background-color: #3b5998;
}

.social-card.twitter {
    background-color: #1da1f2;
}

.social-card.youtube {
    background-color: #ff0000;
}

.social-card.telegram {
    background-color: #0088cc;
}

/* Timeline Page Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.timeline-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Document Comparison Styles */
.document-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.document-original,
.document-fake {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.document-label {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
}

.document-label.original {
    background-color: var(--success-color);
}

.document-label.fake {
    background-color: var(--danger-color);
}

.document-image {
    margin-bottom: 20px;
    position: relative;
}

.document-image img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eee;
}

.highlight-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(230, 57, 70, 0.7);
    border-radius: 50%;
    cursor: pointer;
}

.highlight-tooltip {
    position: absolute;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    width: 200px;
    z-index: 10;
    display: none;
}

.highlight-point:hover .highlight-tooltip {
    display: block;
}

/* Participants Network Styles */
.network-visualization {
    width: 100%;
    height: 600px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 50px;
}

.participant-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.participant-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.participant-card:hover {
    transform: translateY(-10px);
}

.participant-image {
    height: 200px;
    overflow: hidden;
}

.participant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.participant-card:hover .participant-image img {
    transform: scale(1.1);
}

.participant-info {
    padding: 20px;
}

.participant-role {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .timeline-item.right::after {
        left: 18px;
    }

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

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .facts-grid,
    .sections-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: white;
        padding: 20px;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-active nav ul {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-active nav ul li {
        margin: 15px 0;
    }

    .mobile-menu-active nav ul li a {
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
    }
    
    .document-comparison {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .social-icons {
        justify-content: center;
    }

    .hero {
        padding: 60px 0;
    }

    .section {
        padding: 40px 0;
    }

    .fact-card,
    .section-card {
        padding: 20px;
    }

    .video-container {
        margin: 0 -20px;
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 30px 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero .subtitle {
        font-size: 1rem;
    }
    
    .fact-card, 
    .section-card {
        padding: 15px;
    }

    .fact-icon,
    .section-icon {
        font-size: 2rem;
    }

    blockquote {
        font-size: 1.2rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-links ul li {
        margin: 0;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }

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

/* Touch device optimizations */
@media (hover: none) {
    .fact-card:hover,
    .section-card:hover,
    .contact-card:hover,
    .participant-card:hover {
        transform: none;
    }

    .social-icons a:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 992px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }

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

    .mobile-menu-active nav ul {
        height: auto;
        max-height: 80vh;
    }

    .facts-grid,
    .sections-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* High-DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero:before {
        background-image: url('../images/hero-bg@2x.jpg');
    }
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.expertise-section,
.values-section,
.team-section {
    margin-bottom: 60px;
}

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

.expertise-card,
.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.expertise-card:hover,
.value-card:hover {
    transform: translateY(-10px);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-card h3,
.value-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.team-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Responsive styles for About page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 0;
    }

    .expertise-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .about-image {
        height: 300px;
    }

    .expertise-card,
    .value-card {
        padding: 20px;
    }

    .team-info {
        padding: 15px;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 30px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.next-steps li:hover {
    transform: translateX(10px);
    background-color: #e9ecef;
}

.next-steps li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.contact-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: white;
    border-radius: 8px;
    color: var(--dark-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.contact-method:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.contact-method i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

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

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive styles for Thank You page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 20px;
    }

    .thank-you-icon {
        font-size: 4rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .action-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .thank-you-section {
        padding: 40px 0;
    }

    .thank-you-content {
        padding: 30px 15px;
    }

    .thank-you-icon {
        font-size: 3rem;
    }

    .next-steps li {
        padding: 15px;
    }

    .next-steps li i {
        font-size: 1.2rem;
        margin-right: 15px;
    }
}
