/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ff0025;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0025, #ff4757);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0025, #ff4757);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 37, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 37, 0.4);
}

.btn-secondary {
    background: white;
    color: #ff0025;
    border: 2px solid #ff0025;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #ff0025;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 37, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0025;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0025;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0025;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #ff0025;
    color: white;
}

.dropdown-link::after {
    display: none;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f6f0;
    padding: 2rem 0;
    margin-top: 80px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ff0025;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #ff0025;
    font-weight: 500;
}

/* Course Hero */
.course-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
}

.course-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.course-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.location {
    color: #ff0025;
    font-size: 0.8em;
}

.course-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.course-features-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-badge {
    background: white;
    color: #ff0025;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-hero-image {
    position: relative;
    z-index: 1;
}

.course-hero-image .hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Course Details */
.course-details {
    padding: 4rem 0;
}

.course-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.course-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Instruments Grid */
.instruments-grid {
    margin: 3rem 0;
}

.instruments-title {
    font-size: 2rem;
    color: #ff0025;
    margin-bottom: 2rem;
    text-align: center;
}

.instruments-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.instrument-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instrument-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 37, 0.15);
}

.instrument-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.instrument-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.instrument-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Course Benefits */
.course-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 37, 0.15);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ff0025;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Age Groups */
.age-groups {
    margin: 4rem 0;
}

.age-groups-content {
    margin-top: 2rem;
}

.age-group {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.age-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 37, 0.15);
}

.age-group h4 {
    color: #ff0025;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.age-group p {
    color: #666;
    line-height: 1.8;
}

/* Course Sidebar */
.course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.course-info-card,
.contact-card,
.related-courses {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-info-card h3,
.contact-card h3,
.related-courses h3 {
    color: #ff0025;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: #ff0025;
    width: 20px;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.contact-card .contact-item {
    margin-bottom: 1rem;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.contact-card .contact-item:hover {
    transform: none;
}

.related-course-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.related-course-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f6f0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.related-course-item:hover {
    background: #ff0025;
    color: white;
    transform: translateX(5px);
}

.related-course-item i {
    color: #ff0025;
    transition: color 0.3s ease;
}

.related-course-item:hover i {
    color: white;
}

/* Course Gallery */
.course-gallery {
    padding: 4rem 0;
    background: #f8f6f0;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff0025;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paint" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23ff0025" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23paint)"/></svg>');
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.highlight {
    color: #ff0025;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0025, #ff4757);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-img.active {
    opacity: 1;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: #ffffff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 37, 0.1), transparent);
    transition: left 0.5s ease;
}

.course-card:hover::before {
    left: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 37, 0.15);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    transform: scale(1.1) rotate(5deg);
}

.course-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.course-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature {
    background: #f8f6f0;
    color: #ff0025;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 37, 0.15);
}

.feature-item i {
    color: #ff0025;
    font-size: 1.5rem;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 37, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-load-more {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 37, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: #ff0025;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff4757;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0025;
    box-shadow: 0 0 0 3px rgba(255, 0, 37, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    display: none;
}

.footer-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0025;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #ff0025;
    width: 16px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff0025;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #ff0025;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 0, 37, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff0025;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: #f8f6f0;
        border-radius: 0;
        margin-top: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.mobile-open {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-link {
        padding: 0.8rem 2rem;
        border-radius: 0;
        color: #666;
        font-size: 0.9rem;
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        background: #ff0025;
        color: white;
    }
    
    /* Add chevron rotation for mobile dropdown */
    .dropdown .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .dropdown .dropdown-menu.mobile-open + .nav-link i,
    .dropdown:has(.dropdown-menu.mobile-open) .nav-link i {
        transform: rotate(180deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Course Hero Mobile */
    .course-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .course-hero-title {
        font-size: 2.5rem;
    }
    
    .course-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .course-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 0, 37, 0.3);
    border-radius: 50%;
    border-top-color: #ff0025;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ARTISTIC DESIGN STYLES ===== */

/* Artistic Background Elements */
.artistic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.paint-splash {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.splash-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff0025, #ff4757);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.splash-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ff4757, #ff6b7a);
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.splash-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ff6b7a, #ff8fa3);
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: #ff0025;
    top: 20%;
    right: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: #ff4757;
    bottom: 30%;
    right: 30%;
    border-radius: 50%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: #ff6b7a;
    top: 60%;
    right: 10%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.shape-4 {
    width: 50px;
    height: 50px;
    background: #ff8fa3;
    bottom: 10%;
    left: 20%;
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Artistic Hero Section */
.hero-artistic {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 50%, #f8f6f0 100%);
}

.hero-canvas {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.paint-strokes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stroke {
    position: absolute;
    opacity: 0.1;
}

.stroke-1 {
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg, transparent, #ff0025, transparent);
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    animation: strokeDraw 3s ease-in-out infinite;
}

.stroke-2 {
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, transparent, #ff4757, transparent);
    bottom: 30%;
    right: 15%;
    transform: rotate(25deg);
    animation: strokeDraw 3s ease-in-out infinite 1s;
}

.stroke-3 {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b7a, transparent);
    top: 60%;
    left: 60%;
    transform: rotate(-45deg);
    animation: strokeDraw 3s ease-in-out infinite 2s;
}

@keyframes strokeDraw {
    0%, 100% { transform: scaleX(0) rotate(var(--rotation, 0deg)); opacity: 0; }
    50% { transform: scaleX(1) rotate(var(--rotation, 0deg)); opacity: 0.1; }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-text-section {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 37, 0.1);
    color: #ff0025;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 37, 0.2);
}

.hero-title-artistic {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.title-line-1, .title-line-2, .title-line-3, .title-line-4 {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line-1 { animation-delay: 0.2s; }
.title-line-2 { animation-delay: 0.4s; }
.title-line-3 { animation-delay: 0.6s; }
.title-line-4 { animation-delay: 0.8s; }

.highlight-artistic {
    color: #ff0025;
    position: relative;
}

.highlight-artistic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff0025, #ff4757);
    opacity: 0.3;
    z-index: -1;
}

.title-line-4 em {
    font-style: italic;
    color: #ff4757;
}

.hero-description-artistic {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0025;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-artistic {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-artistic {
    background: linear-gradient(135deg, #ff0025, #ff4757);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 37, 0.3);
}

.btn-primary-artistic:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 37, 0.4);
}

.btn-secondary-artistic {
    background: transparent;
    color: #ff0025;
    border: 2px solid #ff0025;
}

.btn-secondary-artistic:hover {
    background: #ff0025;
    color: white;
    transform: translateY(-3px);
}

.hero-visual-section {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.gallery-showcase {
    position: relative;
}

.showcase-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.main-artwork {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 37, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.showcase-main:hover .artwork-overlay {
    opacity: 1;
}

.showcase-main:hover .main-artwork {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.showcase-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail-item.active {
    border-color: #ff0025;
    transform: scale(1.1);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 37, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 1.5rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0025;
    font-size: 1.5rem;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 50%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Section Decorative Elements */
.section-decorative {
    position: relative;
    overflow: hidden;
}

.section-decorative::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 37, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.section-decorative::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 2s;
}

/* Decorative Icons for Sections */
.decorative-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decorative-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 37, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 0, 37, 0.6);
    font-size: 1rem;
    animation: floatIcon 6s ease-in-out infinite;
}

.decorative-icon.small {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
}

.decorative-icon.large {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Specific positioning for different sections */
.courses-artistic .decorative-icons .decorative-icon:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.courses-artistic .decorative-icons .decorative-icon:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.courses-artistic .decorative-icons .decorative-icon:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.about-artistic .decorative-icons .decorative-icon:nth-child(1) {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
}

.about-artistic .decorative-icons .decorative-icon:nth-child(2) {
    bottom: 30%;
    left: 3%;
    animation-delay: 3s;
}

.gallery-artistic .decorative-icons .decorative-icon:nth-child(1) {
    top: 10%;
    left: 8%;
    animation-delay: 0.5s;
}

.gallery-artistic .decorative-icons .decorative-icon:nth-child(2) {
    top: 50%;
    right: 5%;
    animation-delay: 2.5s;
}

.contact-artistic .decorative-icons .decorative-icon:nth-child(1) {
    top: 25%;
    left: 5%;
    animation-delay: 1.5s;
}

.contact-artistic .decorative-icons .decorative-icon:nth-child(2) {
    bottom: 15%;
    right: 8%;
    animation-delay: 3.5s;
}

/* Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.corner-decoration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 37, 0.1), transparent);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.corner-decoration.top-left {
    top: -40px;
    left: -40px;
}

.corner-decoration.top-right {
    top: -40px;
    right: -40px;
}

.corner-decoration.bottom-left {
    bottom: -40px;
    left: -40px;
}

.corner-decoration.bottom-right {
    bottom: -40px;
    right: -40px;
}

/* Paint Brush Strokes for Sections */
.paint-stroke-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.paint-stroke-decoration::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 37, 0.2), transparent);
    border-radius: 2px;
    animation: strokeDraw 5s ease-in-out infinite;
}

.paint-stroke-decoration.stroke-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.paint-stroke-decoration.stroke-2 {
    bottom: 30%;
    right: 15%;
    transform: rotate(25deg);
}

.paint-stroke-decoration.stroke-3 {
    top: 60%;
    left: 60%;
    transform: rotate(-45deg);
}

/* Artistic Shapes */
.artistic-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.artistic-shape.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #ff0025;
}

.artistic-shape.circle {
    width: 30px;
    height: 30px;
    background: #ff4757;
    border-radius: 50%;
}

.artistic-shape.square {
    width: 25px;
    height: 25px;
    background: #ff6b7a;
    transform: rotate(45deg);
}

/* Positioning for artistic shapes */
.courses-artistic .artistic-shape:nth-child(1) {
    top: 25%;
    right: 12%;
    animation-delay: 0s;
}

.courses-artistic .artistic-shape:nth-child(2) {
    bottom: 35%;
    left: 8%;
    animation-delay: 3s;
}

.about-artistic .artistic-shape:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 1s;
}

.gallery-artistic .artistic-shape:nth-child(1) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.contact-artistic .artistic-shape:nth-child(1) {
    bottom: 25%;
    left: 12%;
    animation-delay: 4s;
}

/* Artistic Courses Section */
.courses-artistic {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    position: relative;
}

.section-header-artistic {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 37, 0.1);
    color: #ff0025;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 0, 37, 0.2);
}

.section-title-artistic {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.section-subtitle-artistic {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.courses-grid-artistic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card-artistic {
    position: relative;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-card-artistic:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card-artistic:hover .card-background img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 37, 0.8), rgba(255, 71, 87, 0.6));
    opacity: 0.9;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.course-icon-artistic {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.course-title-artistic {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.course-description-artistic {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.course-features-artistic {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.course-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.course-card-artistic:hover .course-action {
    opacity: 1;
    transform: translateY(0);
}

/* About Artistic Section */
.about-artistic {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.about-content-artistic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-element {
    position: absolute;
    background: rgba(255, 0, 37, 0.1);
    border-radius: 50%;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
    animation: pulse 3s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -10px;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.about-image-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
}

.about-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-artistic {
    padding-left: 2rem;
}

.about-description-artistic {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-features-artistic {
    margin-top: 2.5rem;
}

.feature-item-artistic {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item-artistic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 37, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Artistic Section */
.gallery-artistic {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.gallery-grid-artistic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Contact Artistic Section */
.contact-artistic {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.contact-content-artistic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-artistic {
    padding-right: 2rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-artistic {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item-artistic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 37, 0.15);
}

.contact-icon-artistic {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details-artistic h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details-artistic p {
    color: #666;
    line-height: 1.6;
}

.contact-details-artistic a {
    color: #ff0025;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-artistic a:hover {
    color: #ff4757;
}

.contact-form-artistic {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-artistic {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-artistic {
    position: relative;
}

.form-group-artistic.full-width {
    grid-column: 1 / -1;
}

.form-group-artistic input,
.form-group-artistic select,
.form-group-artistic textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group-artistic input:focus,
.form-group-artistic select:focus,
.form-group-artistic textarea:focus {
    outline: none;
    border-color: #ff0025;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 0, 37, 0.1);
}

.form-group-artistic label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 0.8rem;
    color: #ff0025;
    font-weight: 500;
}

.form-group-artistic textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    margin-top: 1rem;
    justify-self: start;
}

/* Footer Artistic */
.footer-artistic {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content-artistic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section-artistic {
    display: flex;
    flex-direction: column;
}

.footer-logo-artistic {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-description-artistic {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0025;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff0025;
    color: white;
    transform: translateY(-3px);
}

.footer-title-artistic {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links-artistic {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-artistic a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-artistic a:hover {
    color: #ff0025;
}

.footer-contact-artistic p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-artistic i {
    color: #ff0025;
    width: 16px;
}

.footer-contact-artistic a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-artistic a:hover {
    color: #ff0025;
}

.footer-bottom-artistic {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Active nav link */
.nav-link.active {
    color: #ff0025;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Artistic Elements */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title-artistic {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .courses-grid-artistic {
        grid-template-columns: 1fr;
    }
    
    .about-content-artistic {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text-artistic {
        padding-left: 0;
    }
    
    .contact-content-artistic {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-artistic {
        padding-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content-artistic {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-title-artistic {
        font-size: 2rem;
    }
    
    .paint-splash {
        display: none;
    }
    
    .floating-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-artistic {
        font-size: 2rem;
    }
    
    .hero-description-artistic {
        font-size: 1rem;
    }
    
    .section-title-artistic {
        font-size: 1.8rem;
    }
    
    .course-card-artistic {
        height: 350px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .contact-form-artistic {
        padding: 1.5rem;
    }
}

/* ===== GALLERY PAGE STYLES ===== */

/* Gallery Hero */
.gallery-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.gallery-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gallery-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.gallery-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.gallery-stats {
    display: flex;
    gap: 2rem;
}

.hero-gallery-showcase {
    position: relative;
}

.main-showcase {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.main-showcase-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-showcase:hover .main-showcase-img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 37, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-showcase:hover .showcase-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.mini-showcase {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mini-item {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-item:hover {
    transform: scale(1.1);
}

.mini-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #f0f0f0;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #ff0025;
    background: #ff0025;
    color: white;
    transform: translateY(-2px);
}

/* Main Gallery */
.main-gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 37, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 37, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

.gallery-load-more {
    text-align: center;
}

/* Gallery Info */
.gallery-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.gallery-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== ABOUT & CONTACT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-image-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
}

.hero-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 0, 37, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 37, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.value-item h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 37, 0.15);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reason-content h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
}

.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.collage-img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.img-1 {
    grid-row: 1 / 3;
}

.img-2, .img-3 {
    height: calc(50% - 0.5rem);
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.team-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.team-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.team-qualities h4 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.qualities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.qualities-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 1rem;
}

.qualities-list i {
    color: #ff0025;
    font-size: 1rem;
}

/* Contact Hero */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.contact-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.quick-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.quick-info-label {
    font-size: 0.9rem;
    color: #999;
    display: block;
}

.quick-info-value {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: none;
}

.quick-info-value:hover {
    color: #ff0025;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 37, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0025;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff4757;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f6f0;
    border-radius: 10px;
}

.day {
    color: #2c2c2c;
    font-weight: 500;
}

.time {
    color: #ff0025;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0025;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff0025;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
}

.benefit-item i {
    color: #ff0025;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    position: static;
    background: none;
    padding: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 37, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f6f0;
}

.faq-question h4 {
    color: #2c2c2c;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #ff0025;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.map-container {
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.map-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 37, 0.15);
}

.map-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-info-content h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-info-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff0025, #ff4757);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About & Contact Pages */
@media (max-width: 768px) {
    .about-hero-content,
    .contact-hero-content,
    .why-choose-content,
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .image-collage {
        height: 300px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title,
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
}
