/* Global Styles */
:root {
    --primary-color: #0362c5;
    --secondary-color: #005196;
    --accent-color: #FF7324;
    --light-color: #f8f9fa;
    --dark-color: #2d3748;
    --text-color: #333;
    --gray-color: #6b7280;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.full-width {
    width: 100%;
}

/* Header */
header {
    padding: 5px 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.current-language:hover {
    background-color: #f5f5f5;
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 160px;
    z-index: 100;
    padding: 8px 0;
    display: none;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.language-selector:hover .language-dropdown {
    display: block;
}

@media screen and (max-width: 768px) {
    .header-right {
        gap: 10px;
    }
    
    .current-language span {
        display: none;
    }
}

.logo img {
    max-height: 65px;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background-color: var(--light-color);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    flex: 1 0 40%;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Features Section */
.why-choose-us {
    background-color: white;
}

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

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(3, 98, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

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

/* Programs Section */
.programs {
    background-color: var(--light-color);
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.program-content {
    display: none;
}

.program-content.active {
    display: block;
}

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

.program-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.program-details {
    padding: 25px;
}

.program-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.program-details p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.program-details ul {
    margin-bottom: 20px;
}

.program-details ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.program-details ul li:last-child {
    border-bottom: none;
}

.program-details .btn-outline {
    margin-top: 10px;
}

/* Process Section */
.process {
    background-color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(3, 98, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

.step-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: none;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Funding Section */
.funding {
    background-color: white;
}

.funding .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.funding-content {
    flex: 1;
}

.funding-image {
    flex: 1;
    text-align: center;
}

.funding-image img {
    max-width: 90%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.funding .section-title {
    text-align: left;
}

.funding .section-title:after {
    margin: 15px 0;
}

.funding-list {
    margin: 25px 0;
}

.funding-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.funding-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.funding-note {
    font-style: italic;
    color: var(--gray-color);
}

/* Locations Section */
.locations {
    background-color: var(--light-color);
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.state-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    text-decoration: none;
    color: var(--text-color);
}

.state-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    color: white;
}

.state-item:hover i {
    color: white;
}

.state-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
}

.state-item i {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.state-item span {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
}

@media screen and (max-width: 992px) {
    .state-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .state-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .state-grid {
        grid-template-columns: 1fr;
    }
    
    .state-item {
        height: 100px;
    }
}

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

.contact .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-content, .contact-form-container {
    flex: 1;
}

.contact-info {
    margin: 30px 0;
}

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

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(3, 98, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.languages {
    margin-top: 30px;
}

.language-flags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.flag:hover {
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Error state for form fields */
.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-group input.error:focus,
.form-group select.error:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
    animation: errorShake 0.3s forwards;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group.checkbox input.error {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

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

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #CCC;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 10px;
}

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

.footer-column ul li a {
    color: #CCC;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero {
        padding: 130px 0 70px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .highlights {
        justify-content: center;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 1 0 40%;
    }
    
    .funding .container {
        flex-direction: column;
    }
    
    .funding .section-title {
        text-align: center;
    }
    
    .funding .section-title:after {
        margin: 15px auto;
    }
    
    .contact .container {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .highlight-item {
        flex: 1 0 100%;
    }
    
    .process-step {
        flex: 1 0 100%;
        margin-bottom: 40px;
    }
    
    .program-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    
    .location-item {
        padding: 8px 5px;
        font-size: 0.8rem;
    }
}

/* Course Finder Section */
.course-finder {
    background-color: white;
    padding: 80px 0;
}

.interactive-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.tabs {
    display: flex;
    width: 100%;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
}

.tab-nav {
    flex: 1;
    background: none;
    border: none;
    padding: 18px 10px;
    font-weight: 500;
    color: var(--gray-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-nav i {
    font-size: 1.5rem;
}

.tab-nav:hover {
    background-color: rgba(3, 98, 197, 0.05);
    color: var(--primary-color);
}

.tab-nav.active {
    color: var(--primary-color);
}

.tab-nav.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

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

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

.course-options {
    margin-bottom: 25px;
}

.option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.option input[type="radio"] {
    margin-right: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    outline: none;
    transition: var(--transition);
    position: relative;
}

.option input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.option input[type="radio"]:checked:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.option label {
    cursor: pointer;
    font-weight: 500;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 220px;
}

.detail-item i {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .tabs {
        overflow-x: auto;
    }
    
    .tab-nav {
        min-width: 120px;
    }
    
    .content-image {
        height: 200px;
    }
}

.language-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-5px);
}

.flag-item img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.flag-item span {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #666;
}

/* Button loading state */
.btn-loading {
    position: relative;
    overflow: hidden;
    cursor: wait;
    background-color: var(--secondary-color) !important;
}

.btn-loading:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Disabled form fields */
input:disabled,
select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-group.checkbox input:disabled {
    opacity: 0.5;
}

/* Phone Input Styles */
.phone-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

#select_telefon {
    flex: 0 0 110px;
    padding: 12px 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
    background-color: #f8f9fa;
}

#select_telefon:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(3, 98, 197, 0.1);
}

#select_telefon.error {
    border-color: #e74c3c;
}

/* Fix the select width */
#vorwahlen {
    width: 100%;
}

#phone {
    flex: 1;
}

@media screen and (max-width: 576px) {
    .phone-container {
        flex-direction: row;
        gap: 5px;
    }
    
    #select_telefon {
        flex: 0 0 90px;
        min-width: 90px;
        padding: 12px 5px;
        font-size: 14px;
    }
    
    #phone {
        flex: 1;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}