/* Urban Sketching Canada - Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

/* Header Styles */
.zt5k9m-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo-brand-x8k2 h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
}

.tagline-subtitle {
    color: #b8d4f0;
    font-size: 0.9rem;
    font-weight: 300;
}

.nav-links-q7m4 {
    display: flex;
    gap: 2rem;
}

.nav-item-p9k2 {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-item-p9k2:hover {
    color: #ffd700;
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero-section-m4k7 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section-m4k7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1266808/pexels-photo-1266808.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item-k8m3 {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-z9k4 {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,107,107,0.4);
}

.btn-primary-z9k4:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,107,0.6);
}

.btn-secondary-h2m7 {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-secondary-h2m7:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Benefits Section */
.benefits-section-l6k8 {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title-q4m9 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
}

.section-title-q4m9::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 2px;
}

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

.benefit-card-x7k3 {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-x7k3:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-description {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Features Section */
.features-showcase-p8k5 {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.features-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-subtitle-desc {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

.feature-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-content-area {
    padding: 2rem;
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card-text {
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Section */
.portfolio-gallery-m9k6 {
    padding: 100px 0;
    background: white;
}

.gallery-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.gallery-item-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item-card:hover {
    transform: scale(1.05);
}

.gallery-image-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-card:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-title-text {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-author-name {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section-k4m8 {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonials-carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.testimonial-stars-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #5a6c7d;
    font-style: italic;
}

.author-name-text {
    color: #2c3e50;
    font-weight: 600;
}

.author-location-text {
    color: #8892a4;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section-n7k2 {
    padding: 100px 0;
    background: white;
}

.faq-title-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.faq-item-wrapper {
    background: #f8fafc;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #667eea;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-answer-text {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section-p5k9 {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-benefits-list {
    margin-bottom: 2rem;
}

.benefit-list-item {
    padding: 0.5rem 0;
    font-weight: 500;
}

.contact-form-main {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-group-container {
    margin-bottom: 1.5rem;
}

.form-label-text {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-input-field::placeholder,
.form-textarea-field::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255,255,255,0.2);
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-checkbox-input {
    width: 20px;
    height: 20px;
}

.form-checkbox-label {
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,107,107,0.4);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,107,0.6);
}

/* Footer */
.footer-section-w8k4 {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-brand-text {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link-item {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #ffd700;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-item {
    opacity: 0.8;
}

.footer-bottom-section {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright-text {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links-q7m4 {
        display: none;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-stats-grid {
        justify-content: center;
    }
    
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-main {
        padding: 2rem;
    }
    
    .benefits-grid-container,
    .features-layout-grid,
    .gallery-images-grid,
    .testimonials-carousel-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }
    
    .section-title-q4m9,
    .features-main-title,
    .gallery-section-title,
    .testimonials-main-heading,
    .faq-title-heading {
        font-size: 2rem;
    }
    
    .hero-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-z9k4,
    .btn-secondary-h2m7 {
        width: 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card-x7k3,
.feature-item-card,
.testimonial-card-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.form-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.nav-item-p9k2:focus,
.btn-primary-z9k4:focus,
.btn-secondary-h2m7:focus,
.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus,
.form-submit-button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}