/* ===================================
   NöroAkademi - Teal & Coral Theme
   No Purple - Fresh Ocean Palette
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Ocean Teal */
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;

    /* Secondary Colors - Warm Coral */
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --secondary-light: #fb923c;

    /* Accent Colors */
    --accent-gold: #d97706;
    --accent-rose: #e11d48;
    --accent-sky: #0284c7;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0d9488, #14b8a6);
    --gradient-secondary: linear-gradient(135deg, #f97316, #fb923c);
    --gradient-hero: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #fef3c7 100%);
    --gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    --gradient-cool: linear-gradient(135deg, #ccfbf1 0%, #cffafe 100%);

    /* Text Colors */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;

    /* Background */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-cream: #fffbeb;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(13, 148, 136, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .main {
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 90vh;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    animation: slideInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-info-item i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 24px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 480px;
    animation: slideInRight 1s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(13, 148, 136, 0.25);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45);
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===================================
   Welcome Section
   =================================== */
.welcome-section {
    background: var(--bg-white);
    padding: var(--section-padding);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.welcome-content p {
    margin-bottom: 1.5rem;
}

.welcome-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.welcome-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.welcome-signature p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* ===================================
   Info Cards Section
   =================================== */
.info-cards {
    background: var(--bg-light);
}

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

.info-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

/* ===================================
   Countdown Section
   =================================== */
.countdown-section {
    background: var(--gradient-cool);
    padding: var(--section-padding);
    text-align: center;
}

.countdown-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.countdown-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.countdown-circle svg {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.countdown-circle circle {
    fill: none;
    stroke-width: 8;
}

.countdown-circle circle:first-child {
    stroke: rgba(255, 255, 255, 0.5);
}

.countdown-circle circle.progress {
    stroke: var(--primary);
    stroke-linecap: round;
    stroke-dasharray: 345;
    stroke-dashoffset: 345;
    transition: stroke-dashoffset 1s ease;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.countdown-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    background: var(--gradient-hero);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header h1 {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.breadcrumb i {
    font-size: 0.7rem;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===================================
   Content Section
   =================================== */
.content-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.content-block {
    margin-bottom: 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block h2 i {
    color: var(--primary);
}

.content-block p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Sidebar */
.sidebar-widget {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-row i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2px;
}

.info-row strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-row p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.info-row p a {
    word-break: break-all;
    overflow-wrap: break-word;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-links a {
    padding: 0.8rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: translateX(5px);
}

.quick-links i {
    font-size: 0.8rem;
}

/* ===================================
   Committee Section
   =================================== */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.committee-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.15);
}

.committee-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0fdfa, #ffffff);
}

.committee-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.committee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.committee-role {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.committee-member-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.committee-member-card:hover {
    background: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.member-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-white);
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.member-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.member-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* ===================================
   Pricing Tables
   =================================== */
.pricing-section {
    margin: 2rem 0;
}

.pricing-table {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.pricing-table-header {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.5rem;
    text-align: center;
}

.pricing-table-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-table td {
    color: var(--text-light);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.pricing-notes {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.pricing-notes h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-notes h4 i {
    color: var(--secondary);
}

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

.pricing-notes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.pricing-notes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-notes ul li em {
    color: var(--secondary);
    font-style: italic;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    background: #ecfdf5;
    border-left: 4px solid var(--primary);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.info-box h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.warning-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    background: #fef3c7;
    border-left: 4px solid var(--secondary);
}

.warning-box i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

.warning-box p {
    color: var(--text-dark);
    margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(13, 148, 136, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
    word-break: break-all;
    font-size: 0.9rem;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* Email link wrap fix */
.email-link {
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* CTA Box Text Styling */
.cta-box-text {
    color: white !important;
    font-weight: 700 !important;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-section p,
.footer-section ul li {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-section a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-light);
}

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

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0.7;
}

.footer-bottom-content p {
    margin: 0;
}

.made-with a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

.made-with a:hover {
    color: var(--primary-light);
}

/* ===================================
   Animations
   =================================== */
@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 fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bg-white);
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero .container {
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-info {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        order: -1;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .main-content {
        padding: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .countdown {
        gap: 1.5rem;
    }

    .countdown-circle {
        width: 100px;
        height: 100px;
    }

    .countdown-circle svg {
        width: 100px;
        height: 100px;
    }

    .countdown-number {
        font-size: 2rem;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table table {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .logo-text .main {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .countdown-circle {
        width: 80px;
        height: 80px;
    }

    .countdown-circle svg {
        width: 80px;
        height: 80px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.85rem;
    }

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

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