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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fdfdf8;
    color: #2c2c2c;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Sketch Style Elements */
.sketch-border {
    position: relative;
    border: 1px solid #2c2c2c;
    border-radius: 2px;
    box-shadow: 1px 1px 0px rgba(0,0,0,0.1);
    background: #fff;
}



/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2c2c2c;
}

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

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '📷';
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: transform 0.2s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #2c2c2c;
    transition: width 0.3s;
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8dc 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(44,44,44,0.02) 10px, rgba(44,44,44,0.02) 20px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid #2c2c2c;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 5px;
}

.cta-button:hover {
    background: #fff;
    color: #2c2c2c;
    transform: translate(-3px, -3px);
    box-shadow: 1px 1px 0px #2c2c2c;
}

.cta-button.secondary {
    background: #fff;
    color: #2c2c2c;
}

.cta-button.secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

/* Image Placeholder */
.img-placeholder {
    width: 100%;
    height: 400px;
    background: #b8b8b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    border: 1px dashed #888;
    margin: 30px 0;
    flex-direction: column;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #2c2c2c;
    margin: 20px auto;
}

/* About Section */
.about-intro {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.about-card {
    padding: 30px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 10px;
}

.about-card p {
    line-height: 1.8;
    color: #555;
}

/* Specialty Section */
.specialty-section {
    background: #fff;
    padding: 80px 0;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.specialty-card {
    padding: 40px;
    text-align: center;
}

.specialty-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.specialty-card p {
    line-height: 1.8;
    text-align: left;
    color: #555;
}

.specialty-card ul {
    text-align: left;
}

.specialty-card ul li {
    padding: 8px 0;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    background: #f9f9f4;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 40px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s;
}

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

/* Features Section */
.features {
    background: #f9f9f4;
}

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

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Trial Class Section */
.trial-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
    color: #fff;
    text-align: center;
}

.trial-section .section-title {
    color: #fff;
}

.trial-section .section-title::after {
    background: #fff;
}

.trial-form {
    max-width: 600px;
    margin: 40px auto;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Forms */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-button {
    background: #fff;
    color: #2c2c2c;
    padding: 15px 50px;
    border: 1px solid #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: transparent;
    color: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 1px 1px 0px #fff;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #2c2c2c;
    background: #fff;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f5f5f0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Classes Page Styles */
.courses-section {
    background: #f9f9f4;
}

.course-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 30px;
    margin-bottom: 40px;
}

.course-image .img-placeholder {
    height: 350px;
    margin: 0;
}

.course-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.course-level {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.course-description {
    line-height: 1.8;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.course-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-info span {
    background: #f5f5f0;
    padding: 8px 15px;
    border: 2px solid #2c2c2c;
    font-size: 14px;
    font-weight: 600;
}

/* Certificates Section */
.certificates-section {
    background: #fff;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.certificate-card {
    padding: 30px;
}

.certificate-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.certificate-card ul {
    list-style: none;
    margin: 20px 0;
}

.certificate-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.steps {
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c2c2c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border: 1px solid #2c2c2c;
    flex-shrink: 0;
}

/* Enroll Section */
.enroll-section {
    background: #f9f9f4;
}

.enroll-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.enroll-info,
.enroll-form {
    padding: 40px;
}

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

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.enroll-form .form-group input,
.enroll-form .form-group textarea,
.enroll-form .form-group select {
    border: 2px solid #2c2c2c;
    background: #fff;
}

/* Contact Page Styles */
.contact-section {
    background: #f9f9f4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.info-card {
    padding: 30px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px dashed #ddd;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-item a {
    color: #2c2c2c;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.social-media {
    padding: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form {
    padding: 40px;
}

.map-section {
    background: #fff;
}

.map-placeholder {
    padding: 0;
    overflow: hidden;
}

.faq-contact {
    background: #f9f9f4;
}

/* Success Page Styles */
.success-section {
    padding: 80px 0;
    background: #f9f9f4;
}

.success-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: #4CAF50;
    color: #fff;
    font-size: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 5px solid #2c2c2c;
    transition: transform 0.3s;
}

.success-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.success-message {
    font-size: 22px;
    color: #666;
    margin-bottom: 30px;
}

.success-details {
    margin: 40px 0;
}

.success-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.success-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.success-step {
    padding: 30px;
    text-align: center;
}

.success-step .step-number {
    margin: 0 auto 20px;
}

.success-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.success-info {
    padding: 30px;
    margin: 40px 0;
}

.success-actions {
    margin-top: 40px;
}

.additional-info {
    margin-top: 60px;
}

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

.info-card {
    padding: 30px;
    text-align: center;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Policy Pages */
.policy-section {
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2c2c2c;
}

.policy-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 5px solid #000;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px dashed rgba(255,255,255,0.2);
    color: #999;
}

/* Phone Number Highlighting */
.phone-number {
    color: #2c2c2c;
    font-weight: bold;
    font-size: 1.1em;
    background: #f5f5f0;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #2c2c2c;
    display: inline-block;
    margin: 2px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: #2c2c2c;
    color: #fff;
    transform: scale(1.05);
}

/* Enhanced Contact Form Styles */
.contact-form {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8dc 100%);
    padding: 40px;
    border: 2px solid #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(44, 44, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(44,44,44,0.02) 10px, rgba(44,44,44,0.02) 20px);
    z-index: 0;
}

.contact-form > * {
    position: relative;
    z-index: 1;
}

.contact-form h2 {
    color: #2c2c2c;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #2c2c2c;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
    color: #2c2c2c;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.contact-form textarea {
    min-height: 120px;
    line-height: 1.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background: #f9f9f9;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.contact-form .submit-button {
    width: 100%;
    padding: 18px 30px;
    background: #2c2c2c;
    color: #fff;
    border: 2px solid #2c2c2c;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .submit-button:hover {
    background: #fff;
    color: #2c2c2c;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(44, 44, 44, 0.2);
}

.contact-form .submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(44, 44, 44, 0.2);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Map Section Styles */
.map-section {
    padding: 60px 0;
    background: #fdfdf8;
}

.map-placeholder {
    background: #fff;
    border: 2px solid #2c2c2c;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(44, 44, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(44,44,44,0.02) 10px, rgba(44,44,44,0.02) 20px);
    z-index: 0;
}

.map-placeholder iframe {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    width: 100% !important;
    height: 400px !important;
}

/* Contact Section Spacing */
.contact-section {
    padding: 80px 0;
}

.contact-section + .map-section {
    padding-top: 40px;
}

/* Mobile Responsiveness for Contact Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .contact-form h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .contact-form .submit-button {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .contact-form-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .map-placeholder {
        margin: 0 10px;
        padding: 15px;
    }
    
    .map-placeholder iframe {
        height: 300px !important;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 24px;
        font-weight: 600;
        color: #2c2c2c;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .nav-menu a:hover {
        color: #666;
        transform: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Overlay for mobile menu */
    .nav-menu::before {
      
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .course-card,
    .contact-grid,
    .enroll-content {
        grid-template-columns: 1fr;
    }

    .certificates-grid,
    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
	.features-grid {
  display: flex; 
  flex-wrap: wrap;
}
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .success-content h1 {
        font-size: 36px;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 60px;
    }
}