/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.hero {
    position: relative;
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.85) 0%, rgba(30,64,175,0.85) 100%), url('../images/thumbnail_IMG_1318.jpg');
    background-size: cover;
    background-position: center;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2563eb;
}

.logo-text h2 {
    color: #2563eb;
    font-weight: 600;
    margin: 0;
    .hero h1 {
        margin-top: 14px;
        font-size: 2.2rem;
        line-height: 1.25;
    }

    font-size: 1.5rem;
}

.logo-motto {
    color: #64748b;
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 500;
    .hero-subtitle {
        max-width: 900px;
        margin: 16px auto 24px;
        color: #e5e7eb;
    }

}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-motto {
    font-size: 1.5rem;
    font-style: italic;
    color: #fbbf24;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-signature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    margin: 30px auto 40px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #2563eb;
}

.btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #2563eb;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #f8fafc;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image-section {
    text-align: center;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    margin-bottom: 25px;
}

.about-motto-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #fbbf24;
}

.about-motto-card h4 {
    color: #2563eb;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-style: italic;
}

.about-motto-card p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #475569;
}

.credentials {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.credentials h4 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #475569;
}

.credentials li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 18px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    text-align: left;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Hide detailed feature lists for minimal design */
.service-features { display: none; }

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.service-duration {
    color: #64748b;
    font-size: 0.9rem;
}

/* Articles Section */
.articles {
    background-color: #fafafa;
    padding: 60px 0;
}

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

.article-card {
    background: white;
    padding: 18px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.article-card h3 {
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.article-card p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.article-footer {
    margin-top: 10px;
}

.article-read-time {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Hide non-essential visual badges for minimal design */
.article-keyword, .article-category, .article-icon { display: none; }

/* Locations Section */
.locations {
    background-color: #f8fafc;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

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

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

.gallery-overlay h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #fbbf24;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    color: #64748b;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
}

.testimonial-location {
    color: #64748b;
    font-size: 0.9rem;
}

/* Testimonial Submission */
.testimonial-submission {
    max-width: 600px;
    margin: 60px auto 0;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-subheader {
    text-align: center;
    margin-bottom: 30px;
}

.section-subheader h3 {
    color: #2563eb;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.section-subheader p {
    color: #64748b;
    font-size: 1rem;
}

.testimonial-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: -2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background-color: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #2563eb;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 15px;
    color: #475569;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-status.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-motto {
    margin-top: 20px;
    padding: 15px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.footer-motto strong {
    color: #fbbf24;
    font-size: 1.1rem;
}

.footer-motto em {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 90px;
    }

    .nav-logo {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text h2 {
        font-size: 1.2rem;
    }

    .logo-motto {
        font-size: 0.7rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        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: 20px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image {
        width: 150px;
        height: 150px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-submission {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* Why Clients Choose Gina Section */
.why-gina {
    padding: 60px 0;
    background: #f8fafc;
}

.why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.why-list li {
    padding: 15px;
    background: white;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Group Experience Section */
.group-experience {
    padding: 60px 0;
    background: white;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.experience-list li:last-child {
    border-bottom: none;
}

/* Services Section Styling */
.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.services-main h3,
.training-options h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.services-list,
.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li,
.options-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.options-list li {
    border-bottom: none;
    padding-left: 0;
}

.options-list li:before {
    content: none;
}

.service-area {
    text-align: center;
    padding: 30px;
    background: #f0f4ff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-area h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-area p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 10px 0;
}

.mission-statement {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2563eb;
}

.mission-statement h4 {
    font-style: italic;
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.mission-statement p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
