/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d3754;
    --secondary-color: #e2261d;
    --text-dark: #0d3754;
    --text-light: #ffffff;
    --text-gray: #666666;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(13, 55, 84, 0.1);
    --shadow-hover: 0 8px 30px rgba(13, 55, 84, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-full {
    width: 100%;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: var(--background-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.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: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
}

.nav-cta:hover {
    background: #0a2a3f;
    color: var(--text-light);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    width: 100%;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem; 
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle-2 {
    font-size: 1.75rem;
    color: var(--text-gray);
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* Specific section spacing */
.hero {
    padding: 0;
}

.about-section {
    padding: 80px 0;
}

.benefits-section {
    padding: 80px 0;
}

.pricing-section {
    padding: 80px 0;
}

.info-section {
    padding: 80px 0;
}

.form-section {
    padding: 80px 0;
}

.contact-section {
    padding: 80px 0;
}

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

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--background-light);
}

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

.about-card {
    background: var(--background-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.about-card:hover .about-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.about-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-cta {
    text-align: center;
    margin-top: 50px;
}

.pricing-cta {
    text-align: center;
    margin-top: 50px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--background-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing-section {
    background: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--background-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--secondary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.faq-item {
    background: var(--background-white);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

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

/* Form Section */
.form-section {
    background: var(--background-light);
}

/* Homepage Form Container - 50/50 layout */
.homepage-form-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Page Form Container - centered */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.form-content {
    animation: fadeInLeft 1s ease;
}

.form-image {
    animation: fadeInRight 1s ease;
}

.form-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--background-white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--background-white);
    box-shadow: var(--shadow);
    padding: 40px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card:nth-child(even) {
    direction: rtl;
}

.info-card:nth-child(even) .info-content {
    direction: ltr;
}

.info-image {
    overflow: hidden;
    border-radius: 8px;
}

.info-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.info-card:hover .info-image img {
    transform: scale(1.05);
}

.info-content h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-features {
    list-style: none;
    padding: 0;
}

.info-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    background: var(--background-white);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 55, 84, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    transition: var(--transition);
    pointer-events: none;
    background: var(--background-white);
    padding: 0 5px;
}

.form-group .checkbox-label {
    position: static;
    transform: none;
    pointer-events: auto;
    background: transparent;
    padding: 0;
    left: auto;
    top: auto;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 0;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    color: var(--primary-color);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item:hover .contact-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    box-shadow: var(--shadow);
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    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 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li i {
    color: var(--secondary-color);
    font-size: 1rem;
    min-width: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
        z-index: 9999;
    }
    
    .navbar {
        z-index: 9999;
    }

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

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

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-page-form-container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Contact page tablet improvements - removed duplicate styles */

    .homepage-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .form-image img {
        height: 300px;
    }

    .info-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .info-card:nth-child(even) {
        direction: ltr;
    }

    .info-image img {
        height: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Reverse order on mobile - contact info first, then map */
    .contact-grid {
        display: flex;
        flex-direction: column;
    }
    
    .contact-grid .contact-info {
        order: 1;
    }
    
    .contact-grid .contact-map {
        order: 2;
    }
    
    /* Map responsive settings for mobile */
    .contact-map {
        margin: 0 -15px; /* Negative margin to break out of container padding */
        width: calc(100% + 30px); /* Compensate for container padding */
    }
    
    .contact-map iframe {
        width: 100%;
        height: 250px;
    }
    
    /* Exam section mobile improvements for 768px */
    .exam-content {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        gap: 15px;
    }

    .exam-info {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        gap: 20px;
    }

    .exam-card,
    .exam-tips {
        padding: 25px 20px;
    }

    .exam-card h3,
    .exam-tips h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .exam-features li,
    .tips-list li {
        font-size: 0.95rem;
        padding: 6px 0;
        padding-left: 20px;
    }

    /* Contact page mobile improvements - removed duplicate styles */

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        padding: 80px 0 60px;
        margin-top: 60px;
    }

    .page-header::before {
        background-attachment: scroll;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        z-index: 9999;
    }
    
    .nav-menu {
        z-index: 9999;
    }
    
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .info-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Reverse order on mobile - contact page info first, then map */
    .contact-page-grid {
        display: flex;
        flex-direction: column;
    }
    
    .contact-page-grid .contact-page-info {
        order: 1;
    }
    
    .contact-page-grid .contact-page-map {
        order: 2;
    }
    
    /* Contact page map responsive settings for mobile */
    .contact-page-map {
        margin: 0 -15px; /* Negative margin to break out of container padding */
        width: calc(100% + 30px); /* Compensate for container padding */
    }
    
    .contact-page-map iframe {
        width: 100%;
        height: 250px;
    }

    .homepage-form-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-image img {
        height: 350px;
    }

    .page-header {
        padding: 100px 0 70px;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    /* Tablet typography improvements */
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.4rem; }

    /* Tablet spacing improvements */
    section {
        padding: 70px 0;
    }

    /* Tablet card improvements */
    .about-card,
    .benefit-card,
    .pricing-card {
        padding: 35px 25px;
    }

    /* Tablet button improvements */
    .btn {
        padding: 14px 28px;
    }

    /* History section tablet improvements - removed duplicate styles */

    /* Exam section tablet improvements - removed to avoid conflicts with mobile */

    .exam-card,
    .exam-tips {
        padding: 25px;
    }

    .exam-card h3,
    .exam-tips h3 {
        font-size: 1.4rem;
    }

    /* Requirements section tablet improvements */
    .requirements-grid {
        gap: 30px;
    }

    .requirements-card {
        padding: 25px;
    }

    .requirements-card h3 {
        font-size: 1.4rem;
    }

    /* Schedule section tablet improvements */
    .schedule-grid {
        gap: 30px;
    }

    .schedule-card {
        padding: 25px;
    }

    .schedule-header h3 {
        font-size: 1.4rem;
    }

    .schedule-icon {
        font-size: 2rem;
    }

    .schedule-icon i {
        font-size: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle-2 {
        font-size: 1.55rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card,
    .benefit-card,
    .pricing-card {
        padding: 25px 20px;
    }

    /* Responsive for new sections - removed duplicate history styles */

    .instructors-grid {
        grid-template-columns: 1fr;
    }

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

    .program-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 20px;
    }

    .exam-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .exam-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exam-card,
    .exam-tips {
        padding: 25px 20px;
    }

    .exam-card h3,
    .exam-tips h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .exam-features li,
    .tips-list li {
        font-size: 0.95rem;
        padding: 6px 0;
    }

    .form-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .contact-page-form-container {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Contact page mobile improvements - removed duplicate styles */

    .homepage-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

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

    .social-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 80px 0 50px;
        margin-top: 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .map-overlay {
        position: relative;
        background: var(--primary-color);
    }

    /* Additional mobile styles */
    /* Removed old stat-number styles to avoid conflicts */

    /* History section mobile improvements - removed duplicate styles */

    /* Removed old stat styles to avoid conflicts */

    .instructor-stats {
        flex-direction: column;
        gap: 10px;
    }

    /* Exam section mobile improvements */
    .exam-content {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        gap: 20px;
    }

    .exam-info {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        gap: 15px;
    }

    .exam-card,
    .exam-tips {
        padding: 20px 15px;
    }

    .exam-card h3,
    .exam-tips h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .exam-features li,
    .tips-list li {
        font-size: 0.9rem;
        padding: 5px 0;
        padding-left: 18px;
    }

    .exam-features li::before {
        font-size: 0.9rem;
    }

    .tips-list li::before {
        font-size: 1rem;
    }

    /* Requirements section mobile improvements */
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .requirements-card {
        padding: 25px 20px;
    }

    .requirements-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .requirements-list li {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    /* Schedule section mobile improvements */
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-card {
        padding: 25px 20px;
    }

    .schedule-header h3 {
        font-size: 1.3rem;
    }

    .schedule-icon {
        font-size: 1.8rem;
    }

    .schedule-icon i {
        font-size: 1.8rem;
    }

    .time-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .time {
        font-size: 0.9rem;
    }

    .hours {
        font-size: 1rem;
        font-weight: 700;
    }

    .timeline-content {
        padding: 20px;
    }

    .form-content {
        padding: 25px 20px;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-cta,
    .pricing-cta {
        margin-top: 30px;
    }

    .form-image img {
        height: 250px;
    }

    .info-card {
        padding: 20px;
    }

    .info-image img {
        height: 200px;
    }

    /* Mobile navigation improvements */
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        padding: 15px 0;
        z-index: 9999;
    }
    
    .navbar {
        z-index: 9999;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    /* Mobile button improvements */
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Mobile form improvements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* Mobile card improvements */
    .about-card,
    .benefit-card,
    .pricing-card,
    .info-card {
        margin-bottom: 20px;
    }

    /* Mobile spacing improvements */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Mobile typography improvements */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }

    /* Mobile icon improvements */
    .about-icon i,
    .mission-icon i,
    .overview-icon i {
        font-size: 2.5rem;
    }

    .contact-icon i,
    .contact-page-icon i {
        font-size: 1.5rem;
    }

    /* Mobile benefit number improvements */
    .benefit-number {
        font-size: 2.5rem;
    }

    /* Mobile price improvements */
    .price {
        font-size: 2rem;
    }

    /* Mobile footer improvements */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border: 1px solid #c3e6cb;
    margin-top: 20px;
    animation: fadeInUp 0.5s ease;
}

/* Error message */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    margin-top: 20px;
    animation: fadeInUp 0.5s ease;
}

/* Page Header */
.page-header {
    background: var(--background-light);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    object-fit: cover;
    z-index: 1;
}

/* Specific page header backgrounds */
.page-header.o-nas::before {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-header.cennik::before {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-header.kurs::before {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/4.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-header.kontakt::before {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/4osk.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.history-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.history-stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.history-image img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

/* Responsive History Section */
@media (max-width: 768px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .history-stat-number {
        font-size: 2rem;
    }
    
    .history-text p {
        font-size: 1rem;
    }
    
    .history-image img {
        max-height: 350px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-content {
        gap: 30px;
    }
    
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .history-stat-number {
        font-size: 1.8rem;
    }
    
    .history-stat-label {
        font-size: 0.8rem;
    }
    
    .history-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .history-image img {
        max-height: 250px;
    }
}

@media (max-width: 360px) {
    .history-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .history-stat-number {
        font-size: 1.6rem;
    }
    
    .history-stat-label {
        font-size: 0.75rem;
    }
}

/* Mission Section */
.mission-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.mission-card {
    background: var(--background-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mission-card:hover .mission-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.mission-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Instructors Section */
.instructors-section {
    padding: 80px 0;
}

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

.instructor-card {
    background: var(--background-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.instructor-image {
    height: 250px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 30px;
}

.instructor-info h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.instructor-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    gap: 20px;
}

.instructor-stats span {
    background: var(--background-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Payment Section */
.payment-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.payment-card {
    background: var(--background-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.payment-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.payment-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.payment-benefits span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Course Overview Section */
.course-overview-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.overview-card {
    background: var(--background-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.overview-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.overview-card:hover .overview-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.overview-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.overview-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
    color: var(--text-gray);
    font-weight: 500;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* Program Timeline */
.program-section {
    padding: 80px 0;
}

.program-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
    flex: 1;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.timeline-features li {
    padding: 5px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
}

.timeline-features li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.timeline-duration {
    background: var(--background-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    display: inline-block;
}

/* Requirements Section */
.requirements-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.requirements-card {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.requirements-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 10px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

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

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
}

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

.schedule-card {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.schedule-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.schedule-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.schedule-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.schedule-card:hover .schedule-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.schedule-times {
    margin-bottom: 20px;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.time-slot:last-child {
    border-bottom: none;
}

.time {
    color: var(--text-gray);
    font-weight: 500;
}

.hours {
    color: var(--text-dark);
    font-weight: 600;
}

/* Exam Section */
.exam-section {
    background: var(--background-light);
    padding: 80px 0;
}

.exam-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px; 
}

.exam-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.exam-card {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.exam-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.exam-features {
    list-style: none;
    padding: 0;
}

.exam-features li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 20px;
}

.exam-features li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.exam-features li:last-child {
    border-bottom: none;
}

.exam-tips {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.exam-tips:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.exam-tips h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 10px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.tips-list li::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

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

.form-content {
    background: var(--background-white);
    padding: 40px;
    box-shadow: var(--shadow);
}

/* Contact Page Specific Styles */
.contact-page-section {
    padding: 80px 0;
    background: var(--background-white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-page-icon {
    font-size: 2rem;
    min-width: 50px;
    color: var(--primary-color);
}

.contact-page-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-page-item:hover .contact-page-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.contact-page-details h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-page-details p {
    color: var(--text-gray);
    margin: 0;
}

.contact-page-map {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-page-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Contact Page Section */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 70px 0;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-page-info {
        gap: 25px;
    }
    
    .contact-page-item {
        gap: 18px;
    }
    
    .contact-page-icon i {
        font-size: 1.8rem;
    }
    
    .contact-page-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding: 60px 0;
    }
    
    .contact-page-grid {
        gap: 30px;
    }
    
    .contact-page-info {
        gap: 20px;
    }
    
    .contact-page-item {
        gap: 15px;
    }
    
    .contact-page-icon i {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .contact-page-details h3 {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .contact-page-details p {
        font-size: 0.9rem;
    }
    
    .contact-page-map iframe {
        height: 250px;
    }
}

.contact-page-form-section {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-page-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--background-white);
    padding: 30px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sidebar-features {
    list-style: none;
    padding: 0;
}

.sidebar-features li {
    padding: 8px 0;
    color: var(--text-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.method-item:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.method-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.method-item:hover .method-icon i {
    color: var(--text-light);
}

/* Social Section */
.social-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.social-card {
    background: var(--background-white);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.social-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-card p {
    color: var(--text-gray);
}

/* Hours Grid */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day {
    color: var(--text-gray);
    font-weight: 500;
}

.time {
    color: var(--text-dark);
    font-weight: 600;
}

/* Map Overlay */
.contact-map {
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 55, 84, 0.9);
    color: var(--text-light);
    padding: 30px;
}

.map-overlay h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Price Subtitle */
.price-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Pricing Features with Icons */
.pricing-features li {
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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