/* Express Driving Courses - Global Styles */

/* Custom Font Imports - PP Neue Montreal */
@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../../fonts/ppneuemontreal-book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../../fonts/ppneuemontreal-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../../fonts/ppneuemontreal-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../../fonts/ppneuemontreal-italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../../fonts/ppneuemontreal-thin.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../../fonts/ppneuemontreal-semibolditalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* CSS Variables for consistent theming */
:root {
    --primary-color: #20c19f;
    --secondary-color: #262626;
    --primary-orange: #FF8C00;
    --text-dark: #262626;
    --text-light: #525252;
    --bg-light: #f8fafc;
    --white: #FFFFFF;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #20c19f 0%, #1ba085 100%);
    --gradient-orange: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 80px;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container1 {
  min-height: 70vh;
  background-image: url("/assets/images/bg-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo image style */
.logo-image {
    height: 50px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-express {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.brand-driving {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 12px 24px !important;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(32, 193, 159, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(32, 193, 159, 0.15);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 28px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 530px;
    font-weight: 500;
    text-align:start;
}

.btn-book-now {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 48px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-book-now:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-book-now:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-book-now:hover::before {
    left: 100%;
}

.hero-car-image {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero-car-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-lg);
}

.hero-car-image:hover img {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

/* Why Us Section */
.why-us-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 840px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 500;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(32, 193, 159, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-icon i {
    color: var(--white);
    font-size: 32px;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 500;
    text-align:start;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
    position: relative;
}

.course-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.95);
}

.course-card:hover::before {
    transform: scaleX(1);
}


.course-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.course-booking {
    font-size: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin: 0;
}

.course-description {
    flex-grow: 1;
}

.course-description p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.course-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: 100%;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.course-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.course-btn:hover::before {
    left: 100%;
}

.course-btn:active {
    transform: translateY(0) scale(1.01);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 30px;
    border-top: 1px solid var(--border-light);
    position: relative;
}

/* Footer logo uses same styling as header logo */

.footer-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    flex-wrap: wrap;
}

.copyright {
    font-weight: 500;
    text-align: left;
}

.footer-registration {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-bottom p {
        flex-direction: column;
        gap: 15px;
    }
    
    .copyright, .footer-registration {
        text-align: center;
        width: 100%;
    }
}

.footer-links h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-registration {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin: 0;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.phone-btn {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    display: none; /* Hide by default on all devices */
}

/* Only show phone button on mobile devices */
@media (max-width: 768px) {
    .phone-btn {
        display: flex; /* Show on mobile devices */
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
}

.floating-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.floating-btn:active {
    transform: scale(1.05) rotate(2deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .course-card {
        padding: 22px 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .navbar {
        padding: 15px 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .logo-image {
        height: 42px;
        margin-right: 12px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 0 auto 32px;
        max-width: 100%;
    }
    
    .btn-book-now {
        padding: 16px 40px;
        font-size: 15px;
    }
    
    .why-us-section,
    .courses-section {
        padding: 80px 0;
    }
    
    .footer-section {
        padding: 80px 0 30px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 32px 24px;
        margin-bottom: 24px;
        border-radius: var(--border-radius-lg);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .course-card {
        padding: 22px 20px;
        margin-bottom: 20px;
        border-radius: var(--border-radius-lg);
    }
    
    .floating-contacts {
        bottom: 24px;
        right: 24px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .nav-link {
        padding: 10px 16px !important;
        margin: 2px 0;
    }
}

@media (max-width: 576px) {
    .container1{
        min-height:60vh;
    background-image: url(https://expressdrivingcourses.co.uk/assets/images/newheromobile33.jpeg);}
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .btn-book-now {
        padding: 14px 32px;
        font-size: 14px;
        border-radius: var(--border-radius);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .why-us-section,
    .courses-section {
        padding: 60px 0;
    }
    
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .feature-card {
        padding: 28px 20px;
        border-radius: var(--border-radius);
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .course-card {
        padding: 20px 16px;
        border-radius: var(--border-radius);
    }
    
    .course-title {
        font-size: 18px;
    }
    
    .floating-contacts {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Modern scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1ba085 0%, #20c19f 100%);
}

/* Selection styling */
::selection {
    background: rgba(32, 193, 159, 0.2);
    color: var(--text-dark);
}

::-moz-selection {
    background: rgba(32, 193, 159, 0.2);
    color: var(--text-dark);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.floating-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    contain: layout style paint;
    z-index: 1;
}

/* Custom scrollbar for modal */
.booking-modal-content::-webkit-scrollbar {
    width: 6px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 32px;
}

.booking-modal-title {
    font-size: 28px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    text-align: center;
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal-close:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #dc3545;
    transform: scale(1.1);
}

.booking-modal-body {
    padding: 0 32px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-section {
    margin-bottom: 32px;
}

.booking-section-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    text-align: center;
    background: none;
}

/* Transmission Buttons */
.transmission-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.transmission-btn {
    flex: 1;
    padding: 6px 10px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.transmission-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.transmission-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.course-option {
    padding: 6px 10px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.course-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.course-option.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Price Display */
.price-display {
    border-radius: var(--border-radius);
    padding: 5px 16px;
    text-align: center;
    margin: 5px 0;
}

.price-display span {
    font-size: 16px;
    font-weight: 500;
   
    background: none;
}

/* Test Buttons */
.test-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.test-btn {
    flex: 1;
    padding: 6px 10px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.test-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.test-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
   
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.form-input {
    padding: 8px 10px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 193, 159, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: var(--text-light);
}

/* Custom styling for date and time inputs */
.form-input[type="date"],
.form-input[type="time"] {
    position: relative;
    color-scheme: light;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2320c19f'%3e%3cpath fill-rule='evenodd' d='M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z' clip-rule='evenodd'/%3e%3c/svg%3e");
    filter: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2320c19f'%3e%3cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

/* Custom focus styles for date/time inputs */
.form-input[type="date"]:focus,
.form-input[type="time"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 193, 159, 0.1);
    outline: none;
}

/* Style the date/time picker dropdowns */
.form-input[type="date"]::-webkit-datetime-edit,
.form-input[type="time"]::-webkit-datetime-edit {
    color: var(--text-dark);
}

.form-input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--text-dark);
}

.form-input[type="date"]::-webkit-datetime-edit-text,
.form-input[type="time"]::-webkit-datetime-edit-text {
    color: var(--text-light);
}

.form-input[type="date"]::-webkit-datetime-edit-month-field,
.form-input[type="date"]::-webkit-datetime-edit-day-field,
.form-input[type="date"]::-webkit-datetime-edit-year-field,
.form-input[type="time"]::-webkit-datetime-edit-hour-field,
.form-input[type="time"]::-webkit-datetime-edit-minute-field,
.form-input[type="time"]::-webkit-datetime-edit-ampm-field {
    color: var(--text-dark);
    background: transparent;
}

.form-input[type="date"]::-webkit-datetime-edit-month-field:focus,
.form-input[type="date"]::-webkit-datetime-edit-day-field:focus,
.form-input[type="date"]::-webkit-datetime-edit-year-field:focus,
.form-input[type="time"]::-webkit-datetime-edit-hour-field:focus,
.form-input[type="time"]::-webkit-datetime-edit-minute-field:focus,
.form-input[type="time"]::-webkit-datetime-edit-ampm-field:focus {
    background-color: rgba(32, 193, 159, 0.1);
    outline: none;
    border-radius: 3px;
}

/* Override browser default blue colors in date/time pickers */
.form-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background-color: rgba(32, 193, 159, 0.1);
    border-radius: 3px;
}

/* Custom styles for date picker calendar (when it opens) */
.form-input[type="date"]::-webkit-inner-spin-button,
.form-input[type="time"]::-webkit-inner-spin-button {
    display: none;
}

.form-input[type="date"]::-webkit-clear-button,
.form-input[type="time"]::-webkit-clear-button {
    display: none;
}

/* Test Details Animation */
.test-details {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.test-details.show {
    display: block !important;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Footer */
.booking-modal-footer {
    padding: 24px 32px 32px;
    border-top: 1px solid var(--border-light);
    margin-top: 32px;
}

.booking-next-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.booking-next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.booking-next-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.booking-next-btn:hover::before {
    left: 100%;
}

.booking-next-btn:active {
    transform: translateY(0) scale(1.01);
}

/* Step Management */
.booking-step {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.booking-step.hidden {
    display: none;
}

/* Multi-step buttons */
.booking-back-btn,
.booking-submit-btn {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    flex: 1;
    margin-right: 12px;
}

.booking-back-btn:hover,
.booking-submit-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.booking-submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    margin-right: 0;
    margin-left: 12px;
}

.booking-submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.booking-modal-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-next-btn {
    flex: 1;
}

/* Disabled button styles */
.booking-next-btn:disabled,
.booking-submit-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.booking-next-btn:disabled:hover,
.booking-submit-btn:disabled:hover {
    background: #e2e8f0;
    color: #94a3b8;
    border-color: #e2e8f0;
    transform: none;
    box-shadow: none;
}

/* Form textarea */
.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Privacy agreement */
.privacy-agreement {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.privacy-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.privacy-label {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    text-align: left;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: inherit;
        padding-bottom: inherit;
        margin-top: inherit;
        margin-bottom: inherit;
    }
}

/* Additional modal containment fix */
.booking-modal-content {
    display: flex;
    flex-direction: column;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
        overflow: hidden;
    }
    
    .booking-modal-content {
        max-height: 95vh;
        border-radius: var(--border-radius-lg);
    }
    
    .booking-modal-header {
        padding: 24px 20px 0;
        margin-bottom: 24px;
    }
    
    .booking-modal-title {
        font-size: 24px;
    }
    
    .booking-modal-body {
        padding: 0 20px;
    }
    
    .booking-modal-footer {
        padding: 20px 20px 24px;
        margin-top: 24px;
    }
    
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .transmission-buttons,
    .test-buttons {
        gap: 8px;
    }
    
    .booking-modal-footer {
        flex-direction: column;
        gap: 8px;
    }
    
    .booking-back-btn,
    .booking-submit-btn,
    .booking-next-btn {
        margin: 0;
        width: 100%;
    }
    
    /* Reduce border-radius for form elements on tablet */
    .transmission-btn,
    .course-option,
    .test-btn,
    .form-input,
    .price-display {
        border-radius: var(--border-radius-sm) !important;
    }
}

@media (max-width: 480px) {
    .booking-modal {
        padding: 5px;
    }
    
    .booking-modal-content {
        border-radius: var(--border-radius);
    }
    
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .booking-modal-title {
        font-size: 20px;
    }
    
    .transmission-buttons,
    .test-buttons {
        gap: 8px;
    }
    
    /* Reduce border-radius for form elements on mobile */
    .transmission-btn,
    .course-option,
    .test-btn,
    .form-input,
    .price-display {
        border-radius: var(--border-radius-sm) !important;
    }
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 24px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.about-hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 100%;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.03) 0%, rgba(255, 140, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}

/* Original vertical timeline styles */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 1;
}

/* New horizontal timeline styles */
.process-timeline-horizontal {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    padding: 30px 0;
}

.process-step-card-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px 10px;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step-card-horizontal .step-badge {
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
}

.process-step-card-horizontal .step-badge::before {
    display: none; /* Remove the background glow effect that might create unwanted lines */
}

.process-step-card-horizontal .step-title {
    font-size: 22px;
    margin: 0 0 10px 0;
}

.process-step-card-horizontal .step-description {
    font-size: 14px;
}

/* Horizontal dashed connector line */
.process-timeline-horizontal:before {
    content: '';
    position: absolute;
    top: 100px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, #20c19f 50%, transparent 50%);
    background-size: 20px 2px;
    z-index: 0;
    display: none; /* Hidden on mobile initially */
}

@media (min-width: 768px) {
    .process-timeline-horizontal:before {
        display: block; /* Show the dashed line on desktop */
        top: 100px;
    }
    
    .process-step-card-horizontal .step-badge {
        width: 100px;
        height: 100px;
        position: relative;
        z-index: 2; /* Ensure badges appear above the line */
    }
}

/* For larger screens, position the line more precisely */
@media (min-width: 992px) {
    .process-timeline-horizontal:before {
        top: 100px;
        left: 10%;
        right: 10%;
    }
}

/* Existing process card styles */
.process-step-card {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step-card:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-card:nth-child(even) .step-content {
    text-align: right;
}

.step-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(32, 193, 159, 0.3);
    position: relative;
    z-index: 3;
}

.step-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-content {
    flex: 1;
    max-width: 600px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(32, 193, 159, 0.2);
}

.step-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.step-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.process-connector {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 0 auto;
    position: relative;
    opacity: 0.3;
}

.process-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.process-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.process-stats {
    margin-top: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
    padding: 80px 0;
}

/* Instructors Section */
.instructors-section {
    background: var(--white);
    padding: 120px 0;
}

.instructor-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.instructor-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(32, 193, 159, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.instructor-card:hover::before {
    transform: scaleX(1);
}

.instructor-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instructor-card:hover .instructor-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.instructor-icon i {
    font-size: 32px;
    color: var(--white);
}

.instructor-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.instructor-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 36px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 44px;
    }
    
    .about-hero-subtitle {
        font-size: 24px;
    }
    
    .process-step-card {
        gap: 30px;
    }
    
    .step-badge {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        font-size: 28px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 20px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .process-section,
    .why-choose-section,
    .instructors-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .process-step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step-card:nth-child(even) .step-content {
        text-align: center;
    }
    
    .step-badge {
        margin-bottom: 20px;
        width: 90px;
        height: 90px;
    }
    
    .step-number {
        font-size: 24px;
    }
    
    .step-title {
        font-size: 22px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .process-stats {
        padding: 40px 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }

    /* New horizontal process timeline responsive styles */
    .process-timeline-horizontal .row {
        margin-top: 40px;
    }

    .process-step-card-horizontal {
        margin-bottom: 30px;
    }

    .process-timeline-horizontal:before {
        display: none;
    }
    
    .instructor-card {
        padding: 30px;
    }
    
    .instructor-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .instructor-icon i {
        font-size: 28px;
    }
    
    .instructor-title {
        font-size: 22px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 100px 0 40px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .process-section,
    .why-choose-section,
    .instructors-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .step-badge {
        width: 70px;
        height: 70px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .instructor-card {
        padding: 24px 20px;
    }
    
    .instructor-icon {
        width: 56px;
        height: 56px;
    }
    
    .instructor-icon i {
        font-size: 20px;
    }
    
    .instructor-title {
        font-size: 16px;
    }
    
    .instructor-description {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 15px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-contacts,
    .booking-modal {
        display: none;
    }
    
    .hero-section,
    .why-us-section,
    .courses-section,
    .about-hero-section,
    .process-section,
    .why-choose-section,
    .instructors-section,
    .about-cta-section {
        padding: 20px 0;
    }
    
    body {
        padding-top: 0;
    }
} 

/* ADI Page Styles */
.adi-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.adi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-title {
    font-size: 42px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.adi-details-title {
    font-size: 42px;
    font-weight: 500;
    color: #b0b06e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.adi-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transmission-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.transmission-option {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
}

.transmission-option:hover, .transmission-option.active {
    border-color: var(--primary-color);
    background-color: rgba(32, 193, 159, 0.05);
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding:6px 8px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 193, 159, 0.1);
}

.form-group {
    margin-bottom: 0px;
}

.next-btn {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(32, 193, 159, 0.05);
}

.adi-image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.adi-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 992px) {
    .benefits-title, .adi-details-title {
        font-size: 36px;
    }
    .adi-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .benefits-title, .adi-details-title {
        font-size: 32px;
    }
    .benefits-list li {
        font-size: 16px;
    }
    .adi-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    .transmission-options {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .benefits-title, .adi-details-title {
        font-size: 28px;
    }
    .adi-card {
        padding: 20px;
    }
} 

/* Intensive Courses Page Styles */
.hero-section {
    position: relative;
    padding: 20px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content::after{
    content:"";
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(255,255,255,0.8);
    z-index: -1;
    border-radius: 20px;
    border: 2px solid white;

}

.hero-title {
    font-size: 2.0rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    margin-top: 10px;
}

.hero-image-shape {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-image-rectangle {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.info-section.alt {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    margin-right: 15px;
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.course-hours {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.course-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-image {
    max-width: 150px;
    margin: 0 auto 30px;
}

.action-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:active {
    transform: translateY(0);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

/* Testimonial Slider Styles */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .testimonial-slider .col-12 {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        float: none;
    }

    .testimonial-image {
        height: 500px;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Custom Button Styles */
.outline-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.outline-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Responsive styles for intensive courses page */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .testimonial-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card, .course-card {
        margin-bottom: 20px;
    }
    
    .testimonial-image {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .testimonial-slider .col-12 .testimonial-image {
        margin-bottom: 0;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.0rem;
    }
    .container .row {
        display:flex;
        flex-direction:column;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .testimonial-image {
        height: 200px;
    }
    
    .testimonial-slider .col-12 .testimonial-image {
        height: 360px;
        margin: 0 auto;
    }
    
    .action-btn, .outline-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
} 

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-item {
    margin-bottom: 25px;
    position: relative;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.social-icons {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive styles for contact page */
@media (max-width: 992px) {
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: visible;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.faq-accordion .accordion-item {
    margin-bottom: 8px;
    border: none;
    background: transparent;
    border-radius: var(--border-radius-lg);
    overflow: visible;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    background: var(--white);
    border: none;
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: 100%;
}

.faq-accordion .accordion-button:not(.collapsed) {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
}

.faq-accordion .accordion-button.collapsed {
    border-radius: var(--border-radius-lg) !important;
}

.faq-accordion .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
    transform: scaleY(1);
}

.faq-accordion .accordion-button:hover {
    background: var(--white);
    color: var(--primary-color);
}

.faq-accordion .accordion-button:hover::before {
    transform: scaleY(1);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2320c19f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-accordion .accordion-collapse {
    border: none;
}

.faq-accordion .accordion-body {
    padding: 0 30px 30px;
    background: var(--white);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-accordion .accordion-body p {
    margin-bottom: 0;
}

.faq-accordion .accordion-button i {
    color: var(--primary-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.faq-accordion .accordion-button:hover i {
    color: var(--primary-color);
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--primary-color);
}

/* FAQ Contact CTA */
.faq-contact-cta {
    position: relative;
    z-index: 1;
}

.faq-contact-cta .cta-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-contact-cta .cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
    pointer-events: none;
}

.faq-contact-cta .cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-contact-cta .cta-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.faq-contact-cta .cta-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.faq-contact-cta .btn {
    position: relative;
    z-index: 1;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.faq-contact-cta .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow);
}

.faq-contact-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    color: var(--white);
}

.faq-contact-cta .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.faq-contact-cta .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive FAQ Styles */
@media (max-width: 992px) {
    .faq-section {
        padding: 100px 0 60px;
    }
    
    .faq-accordion .accordion-button {
        padding: 20px 25px;
        font-size: 16px;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 25px 25px;
        font-size: 15px;
    }
    
    .faq-contact-cta .cta-card {
        padding: 40px 30px;
    }
    
    .faq-contact-cta .cta-card h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0 50px;
    }
    
    .faq-accordion .accordion-item {
        margin-bottom: 6px;
    }
    
    .faq-accordion .accordion-button {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .faq-contact-cta .cta-card {
        padding: 30px 20px;
    }
    
    .faq-contact-cta .cta-card h4 {
        font-size: 22px;
    }
    
    .faq-contact-cta .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .faq-accordion .accordion-item {
        margin-bottom: 6px;
    }
    
    .faq-accordion .accordion-button {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 18px 18px;
        font-size: 14px;
    }
    
    .faq-contact-cta .cta-card {
        padding: 25px 18px;
    }
    
    .faq-contact-cta .cta-card h4 {
        font-size: 20px;
    }
}

/* Terms and Conditions & Privacy Policy Page Styles */
.terms-section,
.privacy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.terms-section::before,
.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(32, 193, 159, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.terms-content,
.privacy-content {
    position: relative;
    z-index: 1;
}

.terms-section-block,
.privacy-section-block {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.terms-section-block:hover,
.privacy-section-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.terms-section-block:last-child,
.privacy-section-block:last-child {
    margin-bottom: 0;
}

.terms-section-block h3,
.privacy-section-block h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.terms-section-block h3::after,
.privacy-section-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.terms-section-block p,
.privacy-section-block p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-section-block p:last-child,
.privacy-section-block p:last-child {
    margin-bottom: 0;
}

.terms-section-block ul,
.privacy-section-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-section-block ul li,
.privacy-section-block ul li {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
}

.terms-section-block ul li::marker,
.privacy-section-block ul li::marker {
    color: var(--primary-color);
    font-weight: bold;
}

.terms-section-block ul li:last-child,
.privacy-section-block ul li:last-child {
    margin-bottom: 0;
}

/* Strong text styling */
.terms-section-block strong,
.privacy-section-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Link styling */
.terms-section-block a,
.privacy-section-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section-block a:hover,
.privacy-section-block a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Responsive styles for terms and privacy pages */
@media (max-width: 992px) {
    .terms-section,
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .terms-section-block,
    .privacy-section-block {
        padding: 30px;
    }
    
    .terms-section-block h3,
    .privacy-section-block h3 {
        font-size: 22px;
    }
    
    .terms-section-block p,
    .privacy-section-block p,
    .terms-section-block ul li,
    .privacy-section-block ul li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .terms-section,
    .privacy-section {
        padding: 80px 0 50px;
    }
    
    .terms-section-block,
    .privacy-section-block {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .terms-section-block h3,
    .privacy-section-block h3 {
        font-size: 20px;
    }
    
    .terms-section-block p,
    .privacy-section-block p,
    .terms-section-block ul li,
    .privacy-section-block ul li {
        font-size: 14px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .terms-section-block,
    .privacy-section-block {
        padding: 20px;
        margin-bottom: 20px;
        border-left: 3px solid var(--primary-color);
    }
    
    .terms-section-block h3,
    .privacy-section-block h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .terms-section-block p,
    .privacy-section-block p,
    .terms-section-block ul li,
    .privacy-section-block ul li {
        font-size: 14px;
    }
    
    .terms-section-block ul,
    .privacy-section-block ul {
        padding-left: 20px;
    }
}

/* Testimonial Page Styles */
.testimonials-section {
    padding: 120px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(32, 193, 159, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-slider-container {
    position: relative;
    z-index: 1;
    padding: 20px 0 60px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    margin: 0 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.testimonial-photo {
    flex-shrink: 0;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.testimonial-text {
    flex: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-review {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-review::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 40px;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-review::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 40px;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-designation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-designation::after {
    content: '•';
    margin: 0 8px;
    color: var(--text-light);
}

/* Carousel Custom Styles */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: var(--text-dark);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(32, 193, 159, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators-custom button.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicators-custom button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Statistics Section */
.testimonial-stats {
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Testimonial Styles */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 100px 0 60px;
    }
    
    .testimonial-card {
        padding: 30px;
        margin: 0 15px;
    }
    
    .testimonial-content {
        gap: 20px;
    }
    
    .testimonial-img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-review {
        font-size: 15px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: -22px;
    }
    
    .carousel-control-next {
        right: -22px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0 50px;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .testimonial-review {
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-designation,
    .testimonial-location {
        font-size: 13px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
    
    .stat-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
        margin: 0 5px;
    }
    
    .testimonial-review {
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.03) 0%, rgba(255, 140, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}

.success-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.success-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(32, 193, 159, 0.3);
}

.success-card:hover::before {
    transform: scaleX(1);
}

.success-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-card:hover .success-image img {
    transform: scale(1.05);
}

.success-content {
    padding: 25px;
    position: relative;
}

.success-badge {
    position: absolute;
    top: -18px;
    right: 25px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-badge span {
    position: relative;
    z-index: 1;
}

.success-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-right: 40px;
}

.success-details {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.success-quote {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid rgba(32, 193, 159, 0.3);
}

.success-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.success-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.success-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.success-btn:hover::before {
    left: 100%;
}

.success-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Responsive styles for Success Stories section */
@media (max-width: 992px) {
    .success-stories-section {
        padding: 80px 0;
    }
    
    .success-image {
        height: 200px;
    }
    
    .success-content {
        padding: 20px;
    }
    
    .success-name {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 60px 0;
    }
    
    .success-card {
        margin-bottom: 30px;
    }
    
    .success-image {
        height: 180px;
    }
    
    .success-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .success-name {
        font-size: 17px;
        padding-right: 30px;
    }
    
    .success-details {
        font-size: 13px;
    }
    
    .success-quote {
        font-size: 14px;
    }
    
    .success-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .success-image {
        height: 160px;
    }
    
    .success-content {
        padding: 18px;
    }
    
    .success-badge {
        right: 18px;
        top: -15px;
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .success-name {
        font-size: 16px;
    }
    
    .success-details {
        font-size: 12px;
    }
    
    .success-quote {
        font-size: 13px;
        padding-left: 15px;
    }
    
    .success-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Intensive Courses Highlight Section */
.intensive-highlight-section {
    padding: 100px 0;
    background-color: #20c19f;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.intensive-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 0;
}

.intensive-content {
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.intensive-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.intensive-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.intensive-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.intensive-btn {
    margin-top: 20px;
    background: var(--white);
    color: #20c19f;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.intensive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 193, 159, 0.3), transparent);
    transition: left 0.6s;
}

.intensive-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

.intensive-btn:hover::before {
    left: 100%;
}

.intensive-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.intensive-image {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 350px;
}

.intensive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intensive-image:hover img {
    transform: scale(1.05);
}

/* Responsive styles for Intensive Highlight section */
@media (max-width: 992px) {
    .intensive-highlight-section {
        padding: 80px 0;
    }
    
    .intensive-content {
        padding-right: 20px;
    }
    
    .intensive-title {
        font-size: 36px;
    }
    
    .intensive-subtitle {
        font-size: 24px;
    }
    
    .intensive-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .intensive-highlight-section {
        padding: 60px 0;
    }
    
    .intensive-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .intensive-title {
        font-size: 32px;
    }
    
    .intensive-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .intensive-description {
        font-size: 15px;
    }
    
    .intensive-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .intensive-image {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .intensive-highlight-section {
        padding: 50px 0;
    }
    
    .intensive-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .intensive-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .intensive-description {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .intensive-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .intensive-image {
        min-height: 200px;
    }
}

/* Car Ribbon Section */
.car-ribbon-section {
    background-color: #20c19f;
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
    height: 150px;
}

.car-ribbon-container {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    transform: translateY(-30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-image:hover {
    transform: translateY(-35px) scale(1.02);
}

.car-image img {
    max-height: 250px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Car Ribbon Section Responsive Styles */
@media (max-width: 992px) {
    .car-ribbon-section, 
    .car-ribbon-container {
        height: 120px;
    }
    
    .car-image img {
        max-height: 200px;
    }
    
    .car-image {
        transform: translateY(-20px);
    }
    
    .car-image:hover {
        transform: translateY(-25px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .car-ribbon-section,
    .car-ribbon-container {
        height: 100px;
    }
    
    .car-image img {
        max-height: 160px;
    }
    
    .car-image {
        transform: translateY(-15px);
    }
    
    .car-image:hover {
        transform: translateY(-20px) scale(1.02);
    }
}

@media (max-width: 576px) {
    .car-ribbon-section,
    .car-ribbon-container {
        height: 80px;
    }
    
    .car-image img {
        max-height: 130px;
    }
    
    .car-image {
        transform: translateY(-10px);
    }
    
    .car-image:hover {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Footer Section */

/* Gift Vouchers Section */
.gift-vouchers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.gift-vouchers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2320c19f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.gift-voucher-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gift-voucher-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gift-voucher-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gift-voucher-content {
    padding: 20px 0 20px 30px;
}

.gift-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.gift-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.gift-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gift-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: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.gift-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.gift-btn:hover::before {
    left: 100%;
}

.gift-btn:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gift-vouchers-section {
        padding: 80px 0;
    }
    
    .gift-subtitle {
        font-size: 24px;
    }
    
    .gift-voucher-content {
        padding: 20px 0 0 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .gift-vouchers-section {
        padding: 60px 0;
    }
    
    .gift-subtitle {
        font-size: 22px;
    }
    
    .gift-description {
        font-size: 15px;
    }
    
    .gift-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .gift-vouchers-section {
        padding: 50px 0;
    }
    
    .gift-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .gift-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .gift-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Call To Action Sections */
.call-to-action-wrapper {
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 1px solid rgba(32, 193, 159, 0.3);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin: 20px auto;
    max-width: 100%;
    border-radius: var(--border-radius-xl);
    width: 100%;
}

.call-to-action-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cta-heading {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.call-to-action-card {
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32, 193, 159, 0.2);
}

.call-to-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.cta-highlight {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.cta-subheading {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-highlight {
        font-size: 22px;
    }
    
    .cta-subheading {
        font-size: 18px;
    }
    
    .cta-buttons, .cta-actions {
        justify-content: center;
    }
    
    .call-to-action-card {
        padding: 20px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    color: var(--text-dark);
    padding-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cookie-more {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.cookie-more:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-content p {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

.contact-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.contact-btn:active {
    transform: translateY(-1px);
}

/* Media queries for contact button */
@media (max-width: 768px) {
    .contact-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .contact-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Make test center field full width */
#testDetails .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

#testDetails .form-group:last-child {
    grid-column: 1 / -1;
}
.booking-section2 {
    background: linear-gradient(135deg, rgba(32, 193, 159, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 1px solid rgba(32, 193, 159, 0.3);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin: 10px auto;
    max-width: 100%;
    border-radius: var(--border-radius-xl);
    width: 100%;
}