/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
}

/* Variables CSS para colores */
:root {
    --primary-blue: #193660;
    --secondary-blue: #2D4A73;
    --light-blue: #4A6FA5;
    --accent-blue: #E8F4FD;
    --primary-red: #E2161F;
    --dark-red: #B5141A;
    --primary-yellow: #FFD700;
    --dark-gray: #2C3E50;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
}

/* Header Styles */
.header {
    background: var(--primary-blue);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 90px;
    height: 90px;
    background-image: url("img/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.college-name {
    color: white;
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Nav Social Wrapper */
.nav-social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.social-icon:hover {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    display: block;
}

/* Main Navigation */
.main-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
    margin: 0;
}

.nav-menu > li > a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    background: var(--secondary-blue);
    color: var(--primary-yellow);
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-blue);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 0 0 8px 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.dropdown-menu a:hover {
    background: var(--light-blue);
    padding-left: 25px;
}

/* Container */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(25, 54, 96, 0.7), rgba(25, 54, 96, 0.7));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 120px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(25, 54, 96, 0.7), rgba(25, 54, 96, 0.7));
    z-index: 1;
}

.hero-content {
    max-width: 1024px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Section Titles */
.section-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.texto_blanco{
    color: white;
}

.section-subtitle {
    text-align: center;
    color: var(--light-blue);
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-sub{
    color: white;
}

/* Director Message Section */
.director-message {
    padding: 80px 0;
    background: var(--light-gray);
}

.director-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.director-image-container {
    position: relative;
}

.director-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 54, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-badge {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 8px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-align: center;
}

.director-badge strong {
    color: var(--primary-blue);
    font-size: 1.1em;
    display: block;
}

.director-badge span {
    color: var(--light-blue);
    font-size: 0.9em;
}

.director-text {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.director-greeting {
    color: var(--primary-blue);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
}

.director-text p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #2C3E50;
    text-align: justify;
}

.director-highlight {
    /*background: linear-gradient(120deg, var(--primary-yellow) 0%, var(--primary-yellow) 100%);*/
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
    font-weight: 700;
    color: var(--primary-blue);
}

.director-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-blue);
    font-style: italic;
    color: var(--light-blue);
    font-size: 1.1em;
}

.director-signature strong {
    color: var(--primary-blue);
    font-style: normal;
    display: block;
    margin-top: 5px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--accent-blue);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-service {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 54, 96, 0.3);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3em;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1em;
}

/* Calendar Section */
.calendar-section {
    padding: 80px 0;
    background: white;
}

.calendar-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: var(--accent-blue);
}

.calendar-container iframe {
    display: block;
    width: 100%;
    min-height: 600px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
}

/* SieWeb Logo Icon */
.sieweb-logo-icon {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sieweb-logo-icon svg {
    width: 100%;
    height: auto;
}

.contact-item strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.link_inicio{
    text-decoration: none;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Map Section */
.map-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--accent-blue);
}

.map-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: var(--accent-blue);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.map-address {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-address p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1.05em;
}

.map-address strong {
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    position: relative;
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 180px;
    height: 180px;
    background-image: url("img/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 15px;
}

.footer-logo h2 {
    color: var(--primary-yellow);
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    color: var(--primary-yellow);
    font-size: 1.1em;
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: var(--primary-yellow);
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: var(--primary-yellow);
    margin-bottom: 5px;
    font-size: 0.95em;
}

.info-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.9em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}
/*
.complaints-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.complaints-book:hover {
    background: var(--dark-red);
    transform: translateX(3px);
}
*/
.libro_reclamaciones{
    border-radius: 6px;
    width: 100%;
}



.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    width: 65px;
    height: 65px;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

html {
    scroll-behavior: smooth;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .director-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .header-content {
        flex-wrap: wrap;
        position: relative;
    }

    .logo-section {
        width: calc(100% - 50px);
        gap: 12px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .college-name {
        font-size: 1.3em;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 0;
    }

    .nav-social-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        display: none;
        background-color: #2D4A73;
        padding: 20px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 999;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-social-wrapper.active {
        display: flex;
    }

    .social-links {
        gap: 12px;
        margin-bottom: 20px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        background: rgba(255, 255, 255, 0.15);
    }

    .social-icon svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }

    .main-nav {
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        background: transparent;
        padding: 0;
        border-radius: 0;
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        display: block;
        padding: 12px 10px;
        font-size: 1em;
    }

    .dropdown-arrow {
        float: right;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-blue);
        margin-top: 0;
        border-radius: 0;
    }

    .dropdown-menu.open {
        display: block;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .hero {
        margin-top: 90px;
        height: calc(100vh - 90px);
    }

    .hero h1 {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2em;
    }

    .director-text {
        padding: 25px;
    }

    .director-greeting {
        font-size: 1.15em;
    }

    .footer-logo-icon {
        width: 130px;
        height: 130px;
    }

    .footer-logo h2 {
        font-size: 1.5em;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .map-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-title {
        font-size: 1.5em;
    }

    .map-address {
        padding: 12px;
    }

    .map-address p {
        font-size: 0.95em;
    }

    .calendar-container iframe {
        min-height: 450px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .sieweb-logo-icon {
        width: 100px;
    }

    .social-links {
        gap: 10px;
        padding: 15px 0;
    }

    .social-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .social-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .logo-section {
        gap: 10px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .college-name {
        font-size: 1.1em;
    }

    .nav-menu > li > a {
        font-size: 0.95em;
        padding: 10px;
    }

    .dropdown-menu a {
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .service-image {
        height: 300px;
    }

    .btn-service {
        padding: 8px 20px;
        font-size: 0.95em;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-title {
        font-size: 1.3em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .container {
        padding: 0 15px;
    }
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #193660 0%, #2D4A73 50%, #4A6FA5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Testimonial Cards */
.testimonial-card {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 4em;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
}

/* Testimonial Image */
.testimonial-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(25, 54, 96, 0.3);
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(25, 54, 96, 0.1) 100%);
}

/* Testimonial Text */
.testimonial-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-message {
    color: var(--dark-gray);
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    text-align: justify;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    color: var(--primary-blue);
    font-size: 1.3em;
    font-weight: 700;
}

.author-details {
    color: var(--light-blue);
    font-size: 1em;
    font-weight: 500;
}

.graduation-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 8px;
    font-weight: 600;
    width: fit-content;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-yellow);
    width: 35px;
    border-radius: 6px;
    border-color: white;
}

/* Responsive Design para Testimonials */
@media (max-width: 968px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
    }

    .testimonial-message {
        text-align: center;
    }

    .testimonial-author {
        align-items: center;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-content {
        padding: 35px 25px;
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
    }

    .testimonial-message {
        font-size: 1em;
    }

    .author-name {
        font-size: 1.15em;
    }

    .quote-icon {
        font-size: 3em;
        top: 15px;
        left: 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        padding: 30px 20px;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }

    .testimonial-message {
        font-size: 0.95em;
    }
}/* ============================================
   MEJORAS DE FORMULARIO Y ACCESIBILIDAD
   ============================================ */

/* Hero Title Fix */
.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Menu Icon for Mobile */
.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Form Improvements */
.form-group .required {
    color: var(--primary-red);
    font-weight: bold;
}

.form-group input.error,
.form-group textarea.error,
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: var(--primary-red) !important;
    background-color: #fff5f5;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(226, 22, 31, 0.1);
}

.form-group input.success,
.form-group textarea.success {
    border-color: #28a745 !important;
    background-color: #f0fff4;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(25, 54, 96, 0.1);
}

.error-message {
    display: none;
    color: var(--primary-red);
    font-size: 0.85em;
    margin-top: 5px;
    font-weight: 500;
}

.error-message:not(:empty) {
    display: block;
}

.form-help {
    display: block;
    color: #6c757d;
    font-size: 0.85em;
    margin-top: 5px;
}

#char-count {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Honeypot */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Button States */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #6c757d;
}

.btn-primary:disabled:hover {
    transform: none;
    background: #6c757d;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-primary:disabled .btn-text {
    display: none;
}

.btn-primary:disabled .btn-loader {
    display: flex;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Messages */
#form-messages {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease;
}

#form-messages.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#form-messages.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

#form-messages.info {
    display: block;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skip to Content Link for Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Visible Improvements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Reduce Motion for Users who Prefer It */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.icon-soles {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}