/*
Theme Name: Ifascon
Theme URI: https://example.com/ifascon
Author: Your Name
Author URI: https://example.com
Description: Custom WordPress theme for Ifascon 2026
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ===== CSS Variables ===== */
:root {
    --primary: #063890;
    --primary-light: #2a5bb8;
    --secondary: #db1919;
    --secondary-light: #ff5252;
    --accent: #00a8cc;
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --text-gray: #64748b;
    --border-light: #e2e8f0;
    --border-dark: #334155;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.home h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 2px;
}

#about h2:after {
    right: unset;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Button Styles ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(219, 25, 25, 0.3);
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(6, 56, 144, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== Header Styles ===== */
header {
    background-color: var(--light-card);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: auto;
    width: 220px;
    position: relative;
}

.logo-img img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a.active {
    color: var(--secondary);
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.nav-links a:after,
.nav-links li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links li.current-menu-item a:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===== Home Page Styles ===== */

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e6f0ff 100%);
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-gray);
}

.date-venue {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 40px;
    margin: 0 auto 60px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.date-venue:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.date-venue h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.05), rgba(6, 56, 144, 0.02));
    border: 1px solid var(--border-light);
    min-width: 200px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.1), rgba(6, 56, 144, 0.05));
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
    text-align: center;
}

.info-text p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Details Section */
.details {
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
    padding: 80px 0;
}

.details h2,
.details h3,
.details h4 {
    color: var(--text-light);
}

.details p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.details-text {
    flex: 1;
    min-width: 300px;
}

.details-highlights {
    flex: 1;
    min-width: 300px;
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-dark);
}

.details-highlights h3 {
    color: var(--accent);
    margin-bottom: 30px;
    text-align: center;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    background-color: rgba(6, 56, 144, 0.2);
    transform: translateX(10px);
}

.highlight-item i {
    color: var(--secondary);
    margin-top: 5px;
    font-size: 1.5rem;
}

/* Speakers Section */
.speakers {
    background-color: var(--light-bg);
    position: relative;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    display: inline-block;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.speaker-card {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.speaker-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.speaker-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.speaker-location {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speaker-location:before {
    content: '📍';
}

/* Program Section */
.program {
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
    padding: 80px 0;
}

.program h2,
.program h3 {
    color: var(--text-light);
}

.program p {
    color: #cbd5e1;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.program-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.program-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.program-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.program-card h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e6f0ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#registration.cta {
    padding: 80px 0;
}

.cta h2 {
    color: var(--primary);
}

.cta p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Inner Pages Common Styles ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.9), rgba(6, 56, 144, 0.7)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 100px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: var(--accent);
}

/* About Page */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-sidebar {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.about-sidebar h3 {
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.sidebar-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Program Page */
.program-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-radius: 8px 8px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(6, 56, 144, 0.05);
}

.tab-btn.active {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-schedule {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.day-schedule h3 {
    color: var(--secondary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.schedule-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.schedule-time {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.1), rgba(6, 56, 144, 0.05));
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.schedule-time h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.schedule-details {
    flex: 3;
    min-width: 300px;
}

.schedule-details h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.speaker-tag {
    display: inline-block;
    background-color: rgba(219, 25, 25, 0.1);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Registration Page */
.registration-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.registration-form {
    flex: 2;
    min-width: 300px;
}

.registration-sidebar {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

button {
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 56, 144, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.fee-card {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
    text-align: center;
}

.fee-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.fee-period {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.fee-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.fee-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
}

.fee-features li:last-child {
    border-bottom: none;
}

.fee-features li i {
    color: var(--accent);
    margin-right: 10px;
}

/* ===== Refund Policy Page Styles ===== */

.refund-header {
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.9), rgba(6, 56, 144, 0.7));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.refund-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.refund-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.refund-policy {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.refund-intro {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-light);
}

.intro-text {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-section {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.policy-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.policy-section h2 {
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
    font-size: 1.8rem;
}

.policy-section h2:after {
    display: none;
}

.section-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    font-weight: 700;
}

.policy-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sub-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.sub-section h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sub-section h3 .section-number {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 0.9rem;
    margin-right: 15px;
}

.important-note {
    background-color: rgba(219, 25, 25, 0.05);
    border-left: 4px solid var(--secondary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.important-note p {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.important-note i {
    color: var(--secondary);
    margin-top: 5px;
    font-size: 1.2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: rgba(6, 56, 144, 0.03);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-gray);
    margin-bottom: 5px;
    font-size: 1rem;
}

.quick-actions {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.quick-actions h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    background-color: white;
    color: var(--primary);
    min-width: 200px;
}

.action-buttons .btn:hover {
    background-color: var(--secondary);
    color: white;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
}

.action-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #b31414, #ff3333);
}

/* ===== Footer Styles ===== */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border-dark);
    position: relative;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--accent);
}

.copyright {
    color: rgba(203, 213, 225, 0.5);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

.copyright a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== Privacy Policy Page Styles ===== */

.privacy-header {
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.9), rgba(6, 56, 144, 0.7));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.privacy-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.privacy-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.policy-intro {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-light);
}

.policy-intro .intro-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Policy List Styling */
.policy-list {
    list-style: none;
    margin: 25px 0 30px 0;
    padding-left: 0;
}

.policy-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1.2rem;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.05), rgba(6, 56, 144, 0.02));
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0 40px;
    box-shadow: var(--shadow);
}

.contact-box h3 {
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
}

.contact-box h3 i {
    color: var(--accent);
    font-size: 1.8rem;
}

.contact-details {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border-light);
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details p strong {
    color: var(--primary);
    min-width: 100px;
}

/* Last Updated */
.last-updated {
    background-color: var(--light-card);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    margin-top: 40px;
}

.last-updated p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.last-updated i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===== About Page Styles ===== */

.about-header {
    background: linear-gradient(135deg, rgba(6, 56, 144, 0.9), rgba(6, 56, 144, 0.7));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.about-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-content-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 25px;
}

.about-text h3 {
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

/* Mission List */
.mission-list {
    list-style: none;
    margin: 25px 0 30px;
    padding-left: 0;
}

.mission-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Scientific Grid */
.scientific-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0 40px;
}

.scientific-item {
    background-color: var(--light-card);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.scientific-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.scientific-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.scientific-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.scientific-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background-color: var(--light-card);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* About Sidebar */
.about-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-card {
    background-color: var(--light-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.sidebar-card h3 i {
    color: var(--accent);
}

.sidebar-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.sidebar-item p {
    color: var(--text-gray);
    margin-bottom: 5px;
    font-size: 1rem;
}

.sidebar-item .note {
    color: var(--accent);
    font-size: 0.9rem;
    font-style: italic;
}

.sidebar-item .price {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 600;
}

.quick-links a:hover {
    background-color: rgba(6, 56, 144, 0.05);
    color: var(--secondary);
    transform: translateX(5px);
}

.quick-links a i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Dates List */
.dates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(6, 56, 144, 0.03);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.date-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.date-info h5 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.date-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Organizing Committee */
.organizing-committee {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
}

.organizing-committee h2,
.organizing-committee h3,
.organizing-committee h4 {
    color: var(--text-light);
}

.organizing-committee p {
    color: #cbd5e1;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.committee-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.committee-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.committee-img i {
    font-size: 3rem;
    color: white;
}

.committee-card h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.committee-card p {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.committee-card .designation {
    color: var(--accent);
    font-size: 0.9rem;
    font-style: italic;
}

/* Countdown Timer Styles */
.countdown-container {
    margin: 40px auto 60px;
    max-width: 800px;
}

.countdown-title {
    text-align: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    padding: 25px 20px;
    min-width: 120px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(6, 56, 144, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.countdown-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(6, 56, 144, 0.4);
}

.countdown-value {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-separator {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 5px;
}

/* Countdown Completion Message */
.countdown-complete {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.countdown-complete h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.countdown-complete p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Responsive Countdown */
@media (max-width: 768px) {
    .countdown-item {
        min-width: 90px;
        padding: 20px 15px;
    }

    .countdown-value {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-timer {
        gap: 10px;
    }
}

/* Add this to ensure proper spacing */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-header {
        padding: 150px 0 80px;
    }

    .about-header h1 {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-sidebar {
        width: 100%;
    }

    .scientific-grid,
    .benefits-grid,
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 130px 0 60px;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-header p {
        font-size: 1.1rem;
    }

    .scientific-grid,
    .benefits-grid,
    .committee-grid {
        grid-template-columns: 1fr;
    }

    .date-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .date-badge {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .mission-list li {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .quick-links a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Print Styles for Privacy Policy */
@media print {
    .privacy-policy {
        padding: 50px 0;
    }

    .contact-box {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .policy-list li {
        page-break-inside: avoid;
    }
}

/* Responsive Design for Privacy Policy */
@media (max-width: 992px) {
    .privacy-header {
        padding: 150px 0 80px;
    }

    .privacy-header h1 {
        font-size: 3rem;
    }

    .contact-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .privacy-header {
        padding: 130px 0 60px;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }

    .privacy-header p {
        font-size: 1.1rem;
    }

    .policy-intro {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }

    .policy-list li {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .contact-box h3 {
        font-size: 1.4rem;
    }

    .contact-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contact-details p strong {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .privacy-header h1 {
        font-size: 2rem;
    }

    .policy-intro .intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-list li {
        font-size: 1rem;
    }

    .last-updated p {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1100px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    header {
        padding: 10px 0;
    }

    .header-container {
        gap: 20px;
        padding: 20px 0;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo-img {
        width: 180px;
    }


    .details-content,
    .info-grid {
        flex-direction: column;
    }

    .about-content,
    .registration-content {
        flex-direction: column;
    }

    .about-sidebar,
    .registration-sidebar {
        width: 100%;
    }

    .page-header,
    .refund-header {
        padding: 150px 0 80px;
    }

    .policy-section {
        padding: 40px 30px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo-main {
        font-size: 1.6rem;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-card);
        padding: 20px;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }


    .hero h1 {
        font-size: 2rem;
    }

    .date-venue {
        padding: 30px 20px;
    }

    .info-item {
        min-width: 100%;
    }

    .program-grid,
    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-header,
    .refund-header {
        padding: 130px 0 60px;
    }

    .page-header h1,
    .refund-header h1 {
        font-size: 2.5rem;
    }

    .form-container,
    .day-schedule {
        padding: 30px 20px;
    }

    .schedule-item {
        flex-direction: column;
    }

    .schedule-time,
    .schedule-details {
        width: 100%;
    }

    .policy-section {
        padding: 30px 20px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .section-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin-right: 10px;
    }

    .sub-section h3 .section-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .page-header h1,
    .refund-header h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .sub-section h3 {
        font-size: 1.2rem;
    }

    .quick-actions {
        padding: 40px 20px;
    }

    .quick-actions h3 {
        font-size: 1.6rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .refund-policy {
        padding: 50px 0;
    }

    .policy-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .action-buttons {
        display: none;
    }

    .contact-item {
        border: 1px solid #ddd;
    }
}

/* Main Container */
.conference-registration-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filter Section */

#filter-form {
    display: flex;
    align-items: end;
}

.filter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    color: white;
}

.filter-title {
    font-size: 21px;
    margin: 0 0 20px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title i {
    font-size: 28px;
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-option {
    flex: 1;
    min-width: 200px;
}

.filter-option label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    opacity: 0.9;
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: white;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
}

.filter-select:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-select:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.filter-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    margin-left: 20px;
}

.filter-btn.apply {
    background: white;
    color: #667eea;
}

.filter-btn.apply:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-btn.reset {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.filter-btn.reset:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.active-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tag .remove {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.filter-tag .remove:hover {
    opacity: 0.7;
}

.results-count {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.9;
}

/* Category Sections */
.registration-category {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.registration-category.filtered {
    opacity: 0.8;
}

.registration-category.hidden {
    display: none;
}

.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-description {
    padding: 10px;
    font-size: 13px;
}

.category-description ul {
    list-style: decimal;
    padding-left: 50px;
    font-size: 13px;
}

.category-description ul li {
    margin-bottom: 5px;
}

.category-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: normal;
}

.price-note {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
    color: var(--secondary-light);
}

/* Table Styles */
.registration-table {
    width: 100%;
    border-collapse: collapse;
}

.registration-table th {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
    font-size: 15px;
}

.registration-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.registration-table td.product-name-col {
    width: 50%;
}

.registration-table tbody tr {
    transition: all 0.3s ease;
}

.registration-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.registration-table tbody tr.hidden {
    display: none;
}

/* Product Name */
.product-name {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.product-name small {
    display: block;
    color: #6c757d;
    font-size: 12px;
    margin-top: 4px;
}

.registration-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
    display: none;
}

.badge-ifas {
    background: #cce5ff;
    color: #004085;
}

.badge-non-ifas {
    background: #d4edda;
    color: #155724;
}

.badge-pg {
    background: #fff3cd;
    color: #856404;
}

.badge-accompanying {
    background: #e2d5f1;
    color: #563d7c;
}

/* Price Box */
.price-box {
    display: flex;
    justify-content: space-between;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.current-price {
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
}

.savings-badge {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    display: inline-block;
    margin-top: 4px;
    text-align: center;
}

/* Selection Column */
.select-col {
    text-align: center;
    width: 60px;
}

.select-col input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.select-col input[type="checkbox"]:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.select-col input[type="checkbox"]:hover {
    border-color: #667eea;
}

/* Quantity Column */
.quantity-col {
    width: 130px;
}

.quantity-col input[type="number"] {
    width: 90px;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.quantity-col input[type="number"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Stock Badge */
.stock-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.in-stock {
    background: #d4edda;
    color: #155724;
}

.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

/* Bulk Actions Panel */
.bulk-actions-panel {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    position: sticky;
    top: 100px;
    z-index: 999;
}

.select-all-wrapper {
    flex: 1;
    min-width: 200px;
}

.select-all-wrapper label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.select-all-wrapper label:hover {
    background: #f8f9fa;
}

.select-all-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bulk-quantity-wrapper {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bulk-quantity-wrapper input {
    width: 100px;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
}

.bulk-quantity-wrapper input:focus {
    outline: none;
    border-color: #667eea;
}

.bulk-quantity-wrapper button {
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bulk-quantity-wrapper button:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Add to Cart Button */
.add-to-cart-wrapper {
    flex: 1;
    text-align: right;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Total Section */
.total-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 10px 20px;
    border-radius: 12px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.total-label {
    font-weight: 500;
    color: #495057;
}

.total-amount {
    font-weight: 700;
    color: #28a745;
    font-size: 21px;
    margin-left: 15px;
}

/* Package Note */
.package-note {
    background: #fff3cd;
    color: #856404;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-note i {
    font-size: 18px;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 30px 0;
}

.no-results i {
    font-size: 48px;
    color: #adb5bd;
    margin-bottom: 15px;
}

.no-results h3 {
    color: #495057;
    margin-bottom: 10px;
}

.no-results p {
    color: #6c757d;
}

/* Loading Spinner */
.filter-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.filter-loading.show {
    display: block;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-section {
        padding: 20px;
    }

    .filter-options {
        flex-direction: column;
        gap: 10px;
    }

    .filter-option {
        min-width: 100%;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .active-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-count {
        margin-left: 0;
    }

    .bulk-actions-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .add-to-cart-wrapper {
        text-align: center;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .registration-table {
        display: block;
        overflow-x: auto;
    }

    .price-box {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .total-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===== WooCommerce Cart Page Styles ===== */

/* Cart Wrapper */

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    position: unset !important;
}

/* Cart Items Section */
.cart-items-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Cart Table Styles */
.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form__contents thead th {
    background: var(--primary-light);
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border: none;
}

.woocommerce-cart-form__contents thead th.product-thumbnail {
    width: 100px;
    text-align: center;
}

.woocommerce-cart-form__contents thead th.product-remove {
    width: 60px;
    text-align: center;
}

.woocommerce-cart-form__contents tbody td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.woocommerce-cart-form__contents tbody tr {
    transition: all 0.3s ease;
    background: white;
}

.woocommerce-cart-form__contents tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Product Thumbnail */
.product-thumbnail {
    text-align: center;
}

.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-thumbnail img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Name */
.product-name-wrapper {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.product-name-wrapper a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-wrapper a:hover {
    color: var(--secondary);
}

/* Product Price */
.product-price .price-amount,
.product-subtotal .subtotal-amount {
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
}

/* Quantity Input */
.product-quantity .quantity input[type="number"] {
    width: 90px;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.product-quantity .quantity input[type="number"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 56, 144, 0.1);
}

/* Remove Button */
.product-remove .remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.product-remove .remove:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Actions Row */
.woocommerce-cart-form__contents .actions {
    background: #f8f9fa;
    padding: 25px 20px;
    border-top: 2px solid #dee2e6;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

/* Coupon Section */
.coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.coupon label {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.coupon .input-text {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.coupon .input-text:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 56, 144, 0.1);
}

/* Cart Buttons */
.apply-coupon-btn,
.update-cart-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.update-cart-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.update-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.apply-coupon-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(6, 56, 144, 0.3);
}

.apply-coupon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 56, 144, 0.4);
}

/* Cart Collaterals (Totals Section) */
.cart-collaterals {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.cart_totals {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart_totals h2 {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 20px 25px;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart_totals th,
.cart_totals td {
    padding: 15px 25px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cart_totals th {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.cart_totals td {
    text-align: right;
    color: var(--text-gray);
}

.cart_totals .order-total th {
    font-size: 18px;
    color: var(--primary);
}

.cart_totals .order-total td {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.cart_totals .order-total {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-bottom: none;
}

/* Checkout Button */
.wc-proceed-to-checkout {
    padding: 20px !important;
    background: #f8f9fa;
    border-top: 2px solid #dee2e6;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(219, 25, 25, 0.3);
}

.wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 25, 25, 0.4);
}

/* Empty Cart Message */
.woocommerce-info,
.woocommerce-message {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.return-to-shop {
    text-align: center;
    padding: 40px 20px;
}

.return-to-shop .button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(6, 56, 144, 0.3);
}

.return-to-shop .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 56, 144, 0.4);
}

.button.update-cart-btn {
    width: 200px;
}

.checkout-button.button.alt.wc-forward {
    background: var(--primary);

}

.checkout-button.button.alt.wc-forward:hover {
    background: var(--primary-light);

}

/* Responsive Design for Cart */
@media (max-width: 768px) {
    .woocommerce-cart-form__contents {
        display: block;
        overflow-x: auto;
    }

    .woocommerce-cart-form__contents thead {
        display: none;
    }

    .woocommerce-cart-form__contents tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
    }

    .woocommerce-cart-form__contents tbody td {
        display: block;
        text-align: right;
        padding: 12px 15px;
        border-bottom: 1px solid #f8f9fa;
    }

    .woocommerce-cart-form__contents tbody td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
        color: var(--primary);
    }

    .product-thumbnail {
        text-align: center;
    }

    .product-thumbnail::before {
        display: none;
    }

    .product-remove {
        text-align: center;
        border-bottom: none;
    }

    .product-remove::before {
        display: none;
    }

    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .coupon {
        flex-direction: column;
        align-items: stretch;
    }

    .coupon .input-text {
        min-width: 100%;
    }

    .apply-coupon-btn,
    .update-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .cart-collaterals {
        justify-content: center;
    }

    .cart_totals {
        max-width: 100%;
    }
}

/* ===== WooCommerce Checkout Page Styles ===== */
/* Using high specificity to prevent WooCommerce default CSS overrides */

/* Checkout Form Wrapper */
.checkout.woocommerce-checkout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#customer_details {
    width: 60%;
}

#order_review {
    width: 38%
}

.woocommerce-checkout .checkout-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}


.woocommerce form .form-row label {
    width: 100%;
}

/* Checkout Sections */
.woocommerce-checkout .checkout-billing-section,
.woocommerce-checkout .checkout-shipping-section,
.woocommerce-checkout .checkout-additional-section,
.woocommerce-checkout #order_review {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.woocommerce-input-wrapper {
    width: 100%;
    display: block;
}

/* Section Headers */
.woocommerce-checkout .checkout-section-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: white !important;
    padding: 20px 25px !important;
    margin: 0 !important;
}

.woocommerce-checkout .checkout-section-header h3,
.woocommerce-checkout #order_review_heading {
    color: white !important;
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

/* Section Content */
.woocommerce-checkout .checkout-section-content {
    padding: 30px 25px !important;
}

/* Form Fields */
.woocommerce-checkout .woocommerce-billing-fields .form-row,
.woocommerce-checkout .woocommerce-shipping-fields .form-row,
.woocommerce-checkout .woocommerce-additional-fields .form-row {
    margin-bottom: 10px !important;
}

#order_comments_field {
    display: none;
}

.woocommerce-additional-fields {
    padding: 20px !important;
}

.woocommerce-checkout .form-row label {
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.woocommerce-checkout .form-row label .required {
    color: var(--secondary) !important;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(6, 56, 144, 0.1) !important;
}

/* Order Review Table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    background: #f8f9fa !important;
    padding: 15px 20px !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: #333 !important;
    border-bottom: 2px solid #dee2e6 !important;
    font-size: 15px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody th {
    padding: 15px 20px !important;
    border-bottom: 1px solid #e9ecef !important;
    vertical-align: middle !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr {
    transition: all 0.3s ease !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:hover {
    background-color: #f8f9fa !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    font-weight: 500 !important;
    color: var(--primary) !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    text-align: right !important;
}

/* Cart Subtotal, Shipping, Fees */
.woocommerce-checkout .cart-subtotal th,
.woocommerce-checkout .cart-subtotal td,
.woocommerce-checkout .woocommerce-shipping-totals th,
.woocommerce-checkout .woocommerce-shipping-totals td,
.woocommerce-checkout .fee th,
.woocommerce-checkout .fee td {
    font-size: 15px !important;
}

/* Order Total */
.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-bottom: none !important;
}

.woocommerce-checkout .order-total th {
    color: var(--primary) !important;
}

.woocommerce-checkout .order-total td {
    color: var(--secondary) !important;
    font-size: 24px !important;
}

/* Payment Methods */
.woocommerce-checkout #payment {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    list-style: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: var(--primary) !important;
    background: #fff !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type="radio"] {
    margin-right: 10px !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600 !important;
    color: #333 !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: #e6f0ff !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin: 10px 0 0 0 !important;
    border: 1px solid var(--primary) !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #e6f0ff !important;
}


/* Place Order Button */
.woocommerce-checkout #place_order {
    width: 100% !important;
    padding: 16px 35px !important;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light)) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(219, 25, 25, 0.3) !important;
    text-transform: none !important;
}

.woocommerce-checkout #place_order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(219, 25, 25, 0.4) !important;
}

/* Privacy Policy */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    background: #fff3cd !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    font-size: 14px !important;
    border-left: 4px solid #ffc107 !important;
}

/* Terms and Conditions */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 20px !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions {
    background: #f8f9fa !important;
    padding: 15px !important;
    border-radius: 8px !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    border: 1px solid #e9ecef !important;
}

.woocommerce-checkout .validate-required.woocommerce-invalid label {
    color: var(--secondary) !important;
}

.woocommerce-checkout .woocommerce-invalid .input-text,
.woocommerce-checkout .woocommerce-invalid select {
    border-color: var(--secondary) !important;
}

/* Checkout Messages */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
    padding: 15px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    border-left: 4px solid !important;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100%;
}

.woocommerce-checkout .woocommerce-error {
    background: #f8d7da !important;
    color: #721c24 !important;
}

.woocommerce-checkout .woocommerce-message {
    background: #d4edda !important;
    color: #155724 !important;
    border-left-color: #155724 !important;
}

.woocommerce-checkout .woocommerce-info {
    background: #d1ecf1 !important;
    color: #0c5460 !important;
    border-left-color: #17a2b8 !important;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .woocommerce-checkout .checkout-form-wrapper {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout .checkout-section-content {
        padding: 20px 15px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table thead {
        display: none !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr {
        display: block !important;
        margin-bottom: 15px !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tbody th {
        display: block !important;
        text-align: right !important;
        padding: 10px 15px !important;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order-table tbody td::before,
    .woocommerce-checkout .woocommerce-checkout-review-order-table tbody th::before {
        content: attr(data-title) !important;
        float: left !important;
        font-weight: 600 !important;
        color: var(--primary) !important;
    }

    .woocommerce-checkout #place_order {
        font-size: 16px !important;
        padding: 14px 25px !important;
    }
}

/* Upload field styling */
.upload-field {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.upload-field h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.upload-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.upload-field input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

.upload-field small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

#upload-progress {
    margin-top: 15px;
}

#upload-progress progress {
    width: 100%;
    height: 20px;
    border-radius: 4px;
}

#upload-progress progress::-webkit-progress-bar {
    background-color: #f0f0f0;
    border-radius: 4px;
}

#upload-progress progress::-webkit-progress-value {
    background-color: #007cba;
    border-radius: 4px;
}

#upload-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#upload-status.success {
    background-color: #ecf7ed;
    border: 1px solid #46b450;
}

#upload-status.error {
    background-color: #fbeaea;
    border: 1px solid #dc3232;
}

/* Required field indicator */
.required {
    color: #ff0000;
}

.checkout-shipping-section {
    display: none;
}