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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #7f6000;
    --primary-light: #886e33;
    --primary-dark: #5f4600;
    --accent-color: #886e33;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

.container {
    padding: 0rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.container-lg {
    padding: 0rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding-top: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background-image: url('../storage/images/chess_hero.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom, 
        rgba(95, 70, 0, 0.7), 
        rgba(127, 96, 0, 0.4)
    );
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;     
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-button-tertiary {
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
}

.cta-button-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--white  );
}

/* Section Container */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Social Proof Section */
.social-proof {
    background-color: var(--bg-light);
}

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

.proof-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-card .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.proof-card p {
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Problem Section */
.problem {
    background: var(--white);
}

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

.problem-item {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    border-radius: 0.25rem;
}

.problem-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.problem-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Solution Section */
.solution {
    background: var(--bg-light);
}

.solution-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-image img{
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Program Structure */
.programs {
    background: var(--white);
}

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

.program-card {
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.program-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.icon-beginner {
    background-color: #E9FFE5;
    color: #2EFF00;
}

.icon-intermediate {
    background-color: #FFFDE6;
    color: #C7B800;
}

.icon-advanced {
    background-color: #FFEAEA;
    color: #FF0000;
}

.program-icon {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.program-icon:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.program-card ul {
    list-style: none;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 1rem 0;
    line-height: 1.8;
}

.program-card li {
    padding: 0.25rem 0;
}

/* Why Choose Us */
.why-choose {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Student Achievement Section */
.student-achievement {
    background-color: var(--white);
    padding: 0;
}


.achievement-item {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 320px;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement-item img {
    width: 100%;
    display: block;
    object-fit: contain;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 4rem 2rem;
}

.final-cta-content {
    text-align: left;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.final-cta-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
}

.footer-title {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  width: 80%;
}

.footer-links li {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dark);
  transition: 0.3s;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: #c9a94b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .final-cta-container {
        grid-template-columns: 1fr;
    }

    .final-cta-content {
        text-align: center;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

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

/* Our Services Section */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-card ul {
    list-style: none;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Why Learn Chess Section */
.why-chess {
    background: var(--white);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Training Philosophy Section */
.philosophy {
    background: var(--white);
}

.philosophy-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.philosophy-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 1.5rem;
}

.philosophy-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.philosophy-highlight ul {
    list-style: none;
    color: var(--text-light);
    line-height: 1.9;
}

.philosophy-highlight li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Founder Section */
.founder {
    background: var(--bg-light);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.founder-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.founder-text .title {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.founder-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color) !important;
    padding: 1.5rem;
    font-size: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--primary-color) !important;
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(136, 110, 51, 0.25);
}

.accordion-body {
    color: var(--text-light);
    padding: 1.5rem;
    background-color: var(--white);
    font-size: 1rem;
}

.accordion-item {
    border: 1px solid rgba(136, 110, 51, 0.2);
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.accordion-item:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.accordion-item:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Blogs Page */
.blogs-hero {
    background: linear-gradient(135deg, var(--primary-dark), #886e33);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blogs-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    top: -50px;
    left: -80px;
    border-radius: 50%;
}

.blogs-hero h1 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.blogs-hero p {
    opacity: 0.9;
}

.blogs-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.blogs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.blogs-img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.blogs-body {
    padding: 18px;
}

.blogs-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.blogs-text {
    font-size: 14px;
    color: #666;
}

.blogs-tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #5f4600;
    color: white;
    margin-bottom: 10px;
}

.blogs-read-btn {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-block;
    transition: 0.3s;
}

.blogs-read-btn:hover {
    background: #7f6000;
    transform: scale(1.05);
}

/* Blog Details Page */
.blog-details-back {
    display: inline-block;
    margin: 20px 0;
    font-weight: 600;
    color: #5f4600;
    text-decoration: none;
    transition: 0.2s ease;
}

.blog-details-back:hover {
    color: #886e33;
    transform: translateX(-4px);
}

.blog-hero {
    background: linear-gradient(135deg, #5f4600, #886e33);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.blog-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.blog-hero p {
    opacity: 0.9;
    font-size: 1rem;
    color: white;
}

.blog-container {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-top: -30px;
    text-align: justify;
}

.blog-container img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.15rem;
    color: #333;
}

.blog-container h2 {
    margin-top: 40px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2a2a2a;
    border-left: 5px solid #886e33;
    padding-left: 12px;
}

.blog-container h4 {
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
}

.blog-container ul,
.blog-container ol {
    margin: 16px 0 16px 20px;
    padding-left: 20px;
}

.blog-container li {
    margin-bottom: 8px;
    display: list-item;
    list-style: disc;
}

.blog-container ol li {
    list-style: decimal;
}

.highlight-box {
    background: #fff7e6;
    border-left: 5px solid #ffb703;
    padding: 18px 20px;
    margin: 25px 0;
    border-radius: 10px;
    font-weight: 500;
}

.cta-box {
    background: linear-gradient(135deg, #886e33, #5f4600);
    padding: 30px;
    border-radius: 18px;
    margin: 45px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cta-box h4 {
    color: white;
    font-size: 1.4rem;
}

.cta-box p {
    color: rgba(255,255,255,0.85);
}

.cta-box .btn {
    margin-top: 10px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 18px;
}

.compare-box {
    background: #faf8f3;
    border: 1px solid #eee;
    padding: 22px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s ease;
}

.compare-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.share-box {
    margin-top: 30px;
    padding: 30px;
    background: #faf8f4;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.share-btn {
    border-radius: 10px;
    padding: 8px 16px;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 20px;
    }

    .blog-hero h1 {
        font-size: 1.7rem;
    }

    .blog-container {
        padding: 25px;
    }

    h2 {
        font-size: 1.3rem;
    }
}

.tournament-hero {
    position: relative;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tournament-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.8;
    z-index: 0;
}

.tournament-hero * {
    position: relative;
    z-index: 2;
}

.tournament-hero h1 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.tournament-hero p {
    opacity: 0.9;
}

.tournament-badge-custom{
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin: 5px;
    display:inline-block;
}

.tournament-info-card{
    background: var(--white);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    text-align:center;
    transition:0.3s;
}

.tournament-info-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tournament-content-box{
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.tournament-schedule{
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.tournament-schedule-item{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom: 1px solid #eee;
}

.tournament-poster-box{
    background: white;
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tournament-poster-img{
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: contain;
}

.tournament-info-panel{
    background: var(--white);
    padding: 25px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    height: 100%;
}

.tournament-title{
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

.tournament-subtitle{
    color: var(--text-light);
}

.tournament-tag{
    display:inline-block;
    background: var(--primary-light);
    color:white;
    padding:5px 10px;
    border-radius:999px;
    font-size:12px;
    margin-right:5px;
}

.tournament-card-mini{
    background: var(--bg-light);
    padding:12px;
    border-radius:12px;
    text-align:center;
}

.tournament-label{
    font-size:12px;
    color: var(--text-light);
}

.tournament-btn-register{
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    background: var(--primary-color);
    color:white;
    font-weight:600;
}

.tournament-btn-register:hover{
    background: var(--primary-dark);
}

/* Countdown banner */
#countdownBanner {
    width: 100%;
    background: linear-gradient(90deg, #7f6000, #886e33);
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    font-size: 14px;
}

.trial-hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%), url('../storage/images/trial_class_hero.png') right center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.trial-price-highlight {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.trial-hero .lead {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--white);
}

.trial-cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}

.trial-cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trial-whatsapp-button {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}

.trial-whatsapp-button:hover {
    background: #20BA61;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Poster Section */
.trial-poster-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.trial-poster-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.trial-poster-image:hover {
    transform: scale(1.02);
}

/* Pricing Section */
.trial-pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.trial-pricing-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.trial-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.trial-pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
    font-family: var(--font-heading);
}

.trial-pricing-card .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.trial-pricing-card .period {
    color: var(--text-light);
    font-size: 1.1rem;
}

.trial-pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.trial-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-weight: 500;
}

.trial-pricing-features li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 800;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Features/Highlights Section */
.trial-highlights-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.trial-section-title {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-heading);
}

.trial-section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trial-section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.trial-feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.trial-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.trial-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trial-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trial-feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.trial-testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

/* Carousel Styles */
.trial-testimonial-carousel {
    position: relative;
    width: 100%;
}

.trial-testimonial-carousel .carousel {
    display: block;
}

.trial-testimonial-carousel .carousel-inner {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    width: 100%;
}

.trial-testimonial-carousel .carousel-item {
    display: none !important;
    position: relative;
    width: 100%;
    background: var(--bg-light);
    min-height: 400px;
    padding: 20px;
}

.trial-testimonial-carousel .carousel-item.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.trial-testimonial-carousel .carousel-item img {
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trial-testimonial-carousel .carousel-control-prev,
.trial-testimonial-carousel .carousel-control-next {
    background: rgba(127, 96, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.trial-testimonial-carousel .carousel-control-prev:hover,
.trial-testimonial-carousel .carousel-control-next:hover {
    background: rgba(127, 96, 0, 0.6);
}

.trial-testimonial-carousel .carousel-control-prev-icon,
.trial-testimonial-carousel .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.trial-testimonial-carousel .carousel-indicators {
    bottom: -50px;
}

.trial-testimonial-carousel .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.trial-testimonial-carousel .carousel-indicators .active {
    background-color: var(--accent-color);
    width: 14px;
    height: 14px;
}

/* CTA Section */
.trial-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    color: var(--text-dark);
    text-align: center;
}

.trial-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.trial-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
