/* ============================================
   GAS Y SERVICIO DE MÉXICO - Custom Styles
   ============================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(37,211,102,0.4));
}
.whatsapp-float:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(37,211,102,0.6));
}

/* Hero Section */
.gys-hero {
    position: relative;
    min-height: 100vh;
}
.gys-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../images/home-bg.jpeg') center/cover no-repeat;
    z-index: 0;
}
.gys-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.gys-title h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}
.gys-accent {
    color: var(--accent-color);
}
.gys-cotizador-btn {
    font-size: 1.2rem;
    padding: 14px 36px !important;
    font-weight: 700;
}
.gys-social-icon {
    background: var(--accent-color) !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.gys-social-icon:hover {
    background: var(--accent-color-2) !important;
    transform: translateY(-2px);
}

/* Services Overview */
.gys-services-overview {
    background: #111;
    padding: 80px 0;
}
.gys-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.gys-section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
}
.gys-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.gys-service-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: linear-gradient(145deg, #1B9C3F 0%, #148C32 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gys-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27,156,63,0.3);
}
.gys-service-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.gys-service-body {
    padding: 30px;
}
.gys-service-body h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.gys-service-body p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.gys-btn-white {
    display: inline-block;
    background: #fff;
    color: #1B9C3F;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.gys-btn-white:hover {
    background: #f0f0f0;
    color: #148C32;
    transform: translateY(-2px);
}

/* Mission Preview */
.gys-mission-preview {
    background: #1a1a1a;
    padding: 80px 0;
}
.gys-mission-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.gys-mission-img {
    flex: 1;
    min-width: 300px;
}
.gys-mission-img img {
    width: 100%;
    border-radius: 16px;
    max-height: 400px;
    object-fit: cover;
}
.gys-mission-text {
    flex: 1;
    min-width: 300px;
}
.gys-label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.gys-mission-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 15px 0 20px;
    text-transform: uppercase;
}
.gys-mission-text p {
    color: #D0D0D0;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
}

/* CTA Section */
.gys-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.gys-cta-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../images/servicios-bg.jpeg') center/cover no-repeat;
}
.gys-cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}
.gys-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.gys-cta-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.gys-cta-content p {
    color: #D0D0D0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.gys-cta-btn {
    padding: 16px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 700;
}

/* Page Banner (for inner pages) */
.gys-page-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gys-page-banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}
.gys-page-banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
}
.gys-page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 60px;
}
.gys-page-banner-content h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
}

/* Nosotros Section */
.gys-about-intro {
    background: #111;
    padding: 60px 0;
}
.gys-about-intro .gys-about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #D0D0D0;
    font-size: 1.1rem;
    line-height: 1.8;
}
.gys-about-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.gys-about-social a {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.gys-about-social a:hover {
    background: var(--accent-color-2);
    transform: translateY(-2px);
}

.gys-mision-section {
    background: #1a1a1a;
    padding: 80px 0;
}
.gys-mision-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    border-top: 2px solid #333;
    padding-top: 40px;
}
.gys-mision-card-img {
    flex: 0 0 300px;
    min-width: 250px;
}
.gys-mision-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.gys-mision-card-body {
    flex: 1;
    min-width: 280px;
}
.gys-mision-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 30px;
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 4px;
}
.gys-mision-card-body p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 600;
}

/* Servicios Section */
.gys-servicios-list {
    background: #111;
    padding: 60px 0 80px;
}
.gys-servicio-item {
    background: linear-gradient(145deg, #1B9C3F 0%, #148C32 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.gys-servicio-item.reversed {
    flex-direction: row-reverse;
}
.gys-servicio-item-img {
    flex: 0 0 40%;
    min-width: 280px;
}
.gys-servicio-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gys-servicio-item-body {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gys-servicio-item-body h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.gys-servicio-item-body p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.gys-contact-section {
    background: #111;
    padding: 60px 0 80px;
}
.gys-contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.gys-contact-info {
    flex: 1;
    min-width: 280px;
}
.gys-contact-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 30px;
}
.gys-contact-detail {
    margin-bottom: 20px;
}
.gys-contact-detail label {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.gys-contact-detail span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}
.gys-contact-form {
    flex: 1;
    min-width: 280px;
    background: var(--accent-color);
    border-radius: 16px;
    padding: 40px;
}
.gys-contact-form h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 25px;
}
.gys-contact-form input,
.gys-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 0;
    margin-bottom: 20px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.gys-contact-form input::placeholder,
.gys-contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}
.gys-contact-form input:focus,
.gys-contact-form textarea:focus {
    border-bottom-color: #fff;
}
.gys-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}
.gys-contact-form .gys-submit-btn {
    background: #fff;
    color: var(--accent-color);
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    float: right;
}
.gys-contact-form .gys-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* FAQ Section */
.gys-faq-section {
    background: #1a1a1a;
    padding: 80px 0;
}

/* Footer */
.gys-footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
}
.gys-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.gys-footer-col {
    flex: 1;
    min-width: 220px;
}
.gys-footer-logo {
    max-height: 70px;
    margin-bottom: 20px;
}
.gys-footer-col p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 10px;
}
.gys-footer-col p i {
    color: var(--accent-color);
    margin-right: 8px;
    width: 16px;
}
.gys-footer-col h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
.gys-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gys-footer-col ul li {
    margin-bottom: 10px;
}
.gys-footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}
.gys-footer-col ul li a:hover {
    color: var(--accent-color);
}
.gys-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.gys-footer-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.gys-footer-social a:hover {
    background: var(--accent-color-2);
    transform: translateY(-2px);
}
.gys-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}
.gys-footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gys-title h1 {
        font-size: clamp(2.5rem, 12vw, 5rem);
        text-align: center;
    }
    .gys-services-grid {
        flex-direction: column;
        align-items: center;
    }
    .gys-service-card {
        max-width: 100%;
    }
    .gys-servicio-item,
    .gys-servicio-item.reversed {
        flex-direction: column;
    }
    .gys-servicio-item-img {
        flex: none;
        min-width: 100%;
        max-height: 300px;
    }
    .gys-mision-card {
        flex-direction: column;
    }
    .gys-mision-card-img {
        flex: none;
        min-width: 100%;
    }
    .gys-contact-flex {
        flex-direction: column;
    }
    .gys-footer-grid {
        flex-direction: column;
    }
}
