


.page-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.about-hero {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 24px;
    color: white;
}

.hero-badge span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}


.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.story-feature:hover {
    background: #fff4ed;
    transform: translateX(5px);
}

.story-feature i {
    font-size: 32px;
    color: #e67e22;
    width: 40px;
    flex-shrink: 0;
}

.story-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.story-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-placeholder {
    text-align: center;
    padding: 60px 40px;
}

.story-image-placeholder i {
    font-size: 80px;
    color: #e67e22;
    margin-bottom: 20px;
}

.story-image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}


.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mission,
.vision {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission::before,
.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.mission:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.15);
}

.mission:hover::before,
.vision:hover::before {
    opacity: 1;
}

.mission-icon,
.vision-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.mission:hover .mission-icon,
.vision:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission h3,
.vision h3 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission p,
.vision p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    position: relative;
    z-index: 1;
}


.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 126, 34, 0.2);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
    transition: transform 0.3s;
}

.value-item:hover .value-icon {
    transform: rotateY(360deg);
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}


.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.member-info span {
    font-size: 14px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.member-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}


.achievements-section {
    margin-bottom: 80px;
}

.achievements-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-item {
    background: linear-gradient(135deg, white, #f8f9fa);
    padding: 45px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievement-item:hover {
    transform: scale(1.05);
    border-color: #e67e22;
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
}

.achievement-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #e67e22, #d35400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.achievement-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}


.why-choose-us {
    margin-bottom: 40px;
}

.why-choose-us h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-item i {
    font-size: 48px;
    color: #e67e22;
    margin-bottom: 20px;
}

.reason-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.reason-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}


.cta-section {
    background: linear-gradient(135deg, #e67e22, #d35400);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
    font-size: 48px;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary {
    background: white;
    color: #e67e22;
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary i {
    transition: transform 0.3s;
}

.cta-btn.primary:hover i {
    transform: translateX(5px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.cta-btn.secondary:hover {
    background: white;
    color: #e67e22;
    border-color: white;
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.cta-feature i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature span {
    font-size: 16px;
    font-weight: 600;
}


.contact-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 160px;
}

.contact-info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-section>p {
    color: #666;
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-method:last-child {
    margin-bottom: 0;
}

.method-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.method-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.method-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3px;
}

.method-content a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.method-content a:hover {
    color: #d35400;
}

.working-hours {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}


.working-hours h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.hours-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
    font-size: 14px;
}


.social-media h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.social-link:hover {
    background: #e67e22;
    color: white;
}

.social-link i {
    font-size: 20px;
    width: 25px;
}


.contact-form-section {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-form-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form .form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 0 5px;
    font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    background: white;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.contact-form .form-group input:focus+label,
.contact-form .form-group input:not(:placeholder-shown)+label,
.contact-form .form-group textarea:focus+label,
.contact-form .form-group textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: #e67e22;
    font-weight: 600;
}

.contact-form .form-group select+label {
    display: none;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 20px;
}

.contact-form .form-group textarea+label {
    top: 30px;
}

.contact-form .form-group textarea:focus+label,
.contact-form .form-group textarea:not(:placeholder-shown)+label {
    top: 0;
}

.contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group label {
    color: white;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.contact-btn {
    width: 100%;
    background: white;
    color: #e67e22;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:active {
    transform: translateY(-1px);
}

.contact-btn.loading .btn-text {
    opacity: 0;
}

.contact-btn.loading .btn-loading {
    opacity: 1;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
}

.contact-form .form-group.error input,
.contact-form .form-group.error select,
.contact-form .form-group.error textarea {
    border-color: #ff6b6b;
}


@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 35px 25px;
    }

    .contact-info-section {
        padding: 35px 25px;
    }

    .contact-method {
        padding: 15px;
    }
}


.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.map-container iframe {
    border-radius: 15px;
}

.map-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.map-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.transport-item i {
    color: #e67e22;
    font-size: 18px;
    width: 20px;
}


.quick-help {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quick-help h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.quick-help p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.help-category {
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.help-category:hover {
    background: white;
    border-color: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-category i {
    font-size: 32px;
    color: #e67e22;
    margin-bottom: 15px;
}

.help-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.help-category p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .help-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 20px;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 50px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .hero-badges {
        gap: 15px;
    }

    .hero-badge {
        padding: 12px 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-story {
        padding: 40px 30px;
    }

    .story-text h2 {
        font-size: 28px;
    }

    .mission,
    .vision {
        padding: 40px 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 30px;
    }

    .help-categories {
        grid-template-columns: 1fr;
    }

    .map-info {
        padding: 30px;
    }

    .transport-info {
        gap: 10px;
    }

    .transport-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .page-section {
        padding: 40px 0;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .about-story {
        padding: 30px 20px;
    }

    .mission,
    .vision {
        padding: 30px 20px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 25px;
    }

    .quick-help {
        padding: 30px 25px;
    }

    .map-container {
        padding: 15px;
    }

    .map-info {
        padding: 25px;
    }
}




.quick-actions-section {
    padding: 40px 0 20px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-action-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quick-action-card.whatsapp-card {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.quick-action-card.whatsapp-card h3,
.quick-action-card.whatsapp-card p {
    color: white;
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.quick-action-card.whatsapp-card .quick-icon {
    background: rgba(255, 255, 255, 0.2);
}

.quick-action-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.quick-action-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


.working-hours-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.working-hours-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours-box h3 i {
    color: #e67e22;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.hour-item .day {
    font-weight: 600;
    color: #333;
}

.hour-item .time {
    color: #666;
}

.hour-item.special {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.hour-item.special .day,
.hour-item.special .time {
    color: white;
}


.social-media-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.social-media-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.social-media-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.youtube {
    background: #ff0000;
}


.working-hours {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}


.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-section .section-header p {
    font-size: 16px;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.faq-category {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.faq-category h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h3 i {
    color: #e67e22;
    font-size: 24px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s;
    color: #e67e22;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.faq-footer {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.faq-footer p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e67e22;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-contact-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}


.map-section {
    background: #f8f9fa;
    padding: 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}


.trust-badges-section {
    padding: 60px 0;
    background: white;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.trust-badge:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 48px;
    color: #e67e22;
    margin-bottom: 20px;
}

.trust-badge h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.trust-badge p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


@media (max-width: 992px) {
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .faq-category {
        padding: 25px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container iframe {
        height: 350px;
    }
}


.page-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


.career-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.intro-content>p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.6;
}

.career-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #000;
}

.benefit-item i {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}


.job-listings {
    max-width: 900px;
    margin: 0 auto 80px;
}

.job-listings h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.job-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.job-header {
    padding: 25px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-title h3 {
    font-size: 1.3rem;
    margin: 0 0 5px;
    color: #000;
}

.job-type {
    display: inline-block;
    font-size: 0.75rem;
    background: #eef2f5;
    color: #555;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-location {
    color: #666;
    font-size: 0.9rem;
}

.job-location i {
    margin-right: 5px;
}

.job-content {
    padding: 30px 25px;
}

.job-description,
.job-requirements {
    margin-bottom: 25px;
}

.job-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.job-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.job-content ul li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apply-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.apply-btn:hover {
    background-color: #333;
    transform: translateX(5px);
}


.application-info {
    background: #fff;
    padding: 60px 0;
    border-radius: 16px;
    border: 1px solid #eee;
}

.application-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}


.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
    color: #777;
}


.modal {
    display: none;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbfbfb;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #000;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}


.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group a {
    color: #000;
    text-decoration: underline;
}


.modal-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.modal-btn:hover {
    background: #333;
}

.btn-loading {
    display: none;
    
}


@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    .about-story {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .story-image {
        height: 300px;
    }

    
    @media (max-width: 768px) {
        .faq-categories {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .category-btn {
            width: 100%;
            text-align: center;
            padding: 12px;
        }

        .faq-search {
            padding: 0 10px;
        }

        .faq-search .search-box {
            width: 100%;
            max-width: 100%;
        }
    }

    .values-grid,
    .team-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision {
        gap: 30px;
    }

    
    .data-types,
    .processing-purposes,
    .data-sharing,
    .rights-list,
    .security-measures,
    .cookie-types,
    .contact-methods {
        grid-template-columns: 1fr !important;
        display: grid;
        gap: 20px;
    }

    
    .blog-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .blog-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {

    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    
    .about-hero {
        padding: 60px 0;
        overflow: hidden;
    }

    .about-hero::before,
    .about-hero::after {
        display: none;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    
    .values-grid,
    .team-grid,
    .reasons-grid,
    .achievements-grid,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .career-benefits {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        padding: 25px;
    }

    
    .privacy-section h2 {
        font-size: 24px;
    }

    .data-category,
    .purpose-item,
    .sharing-item,
    .right-item,
    .cookie-type,
    .contact-method {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    .contact-methods {
        display: block;
    }

    .about-story {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .story-image {
        height: 300px;
    }

    .values-grid,
    .team-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision {
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .values-grid,
    .team-grid,
    .reasons-grid,
    .achievements-grid,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .career-benefits {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        padding: 30px;
    }
}