/* Alternative Homepage Styles - Amadeus Inspired Boxy Design */

/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Global Font Application */
* {
    font-family: 'Montserrat', sans-serif;
}

html, body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Ensure all text elements use Montserrat */
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, textarea, select,
li, ul, ol, table, th, td,
label, legend, caption {
    font-family: 'Montserrat', sans-serif;
}

/* Alternative Homepage Layout */
.alternative-homepage {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--accent-charcoal-black);
    background-color: var(--page-white);
}

/* Alternative Header - Now handled by navbar.css */

/* Video Hero Section */
.video-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* YouTube iframe styling */
.hero-video iframe,
.hero-video[src*="youtube.com"] {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 84, 32, 0.8) 0%, rgba(234, 232, 248, 0.6) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Grid Section */
.stats-section {
    padding: 40px 0 100px 0;
    background-color: var(--page-white);
}

.stats-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.stat-box {
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--page-white);
    margin-bottom: 8px;
}

.stat-number-small {
    font-size: 32px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--page-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Powered By Section */
.powered-by-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.powered-by-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
}

.powered-by-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-charcoal-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.powered-by-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--page-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.powered-by-logo:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: rgba(233, 84, 32, 0.3);
}

.tech-partner-logo {
    max-width: 200px;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.tech-partner-logo:hover {
    opacity: 1;
}

/* Responsive Powered By Section */
@media (max-width: 768px) {
    .powered-by-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .powered-by-text {
        font-size: 12px;
    }
    
    .powered-by-logo {
        padding: 15px 30px;
    }
    
    .tech-partner-logo {
        max-width: 150px;
    }
}

/* Features Grid Section */
.features-section {
    padding: 0 0 100px 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--page-white) 100%);
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-charcoal-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--accent-charcoal-black);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-box {
    background: var(--page-white);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 60px rgba(233, 84, 32, 0.15);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-red));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

/* Remove background for feature icons with images */
.feature-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-icon:has(img) {
    background: none;
    width: 120px;
    height: auto;
}

/* RedFox logo - no background gradient */
.feature-logo {
    background: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0;
}

.feature-logo img {
    max-width: 120px;
    height: auto;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-charcoal-black);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: var(--accent-charcoal-black);
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* About Section */
.about-section {
    padding: 0 0 100px 0;
    background-color: var(--page-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    padding-right: 40px;
}

.about-description {
    font-size: 18px;
    color: var(--accent-charcoal-black);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-charcoal-black);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

/* Partners Section */
.partners-section {
    padding: 0 0 100px 0;
    background: var(--warm-beige);
    overflow: hidden;
}

.partners-slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.partners-slideshow {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: center;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slide 60s linear infinite;
    will-change: transform;
}

.partner-logo {
    flex-shrink: 0;
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
    padding: 10px;
    box-sizing: border-box;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 80px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.slideshow-arrow {
    display: none; /* Hidden arrows */
}

.slideshow-arrow:hover {
    background: var(--primary-orange);
    color: var(--page-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slideshow-arrow:active {
    transform: scale(0.95);
}

.slideshow-arrow svg {
    width: 20px;
    height: 20px;
}

/* Blur effects for edges */
.partners-slideshow::before,
.partners-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
}

.partners-slideshow::before {
    left: 0;
    background: linear-gradient(to right, var(--warm-beige), transparent);
}

.partners-slideshow::after {
    right: 0;
    background: linear-gradient(to left, var(--warm-beige), transparent);
}

/* Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-slideshow:hover .partners-track {
    animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .partners-slideshow-container {
        gap: 10px;
    }
    
    .partners-slideshow {
        height: 100px;
    }
    
    .partners-track {
        gap: 15px;
    }
    
    .partner-logo {
        height: 70px;
        width: 180px;
        padding: 8px;
    }
    
    .partner-logo img {
        max-height: 60px;
        max-width: 160px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
        transition: all 0.3s ease;
    }
    
    .slideshow-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slideshow-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .partners-slideshow::before,
    .partners-slideshow::after {
        width: 40px;
    }
}

/* News Section */
.news-section {
    padding: 0 0 100px 0;
    background-color: var(--page-white);
}

/* News section uses same container width as all other sections */

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.news-header-content {
    flex: 1;
    max-width: 600px;
}

.news-header-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-charcoal-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: block;
}

.news-header-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-charcoal-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-header-description {
    font-size: 16px;
    color: var(--accent-charcoal-black);
    line-height: 1.6;
    margin: 0;
}

.news-header-cta {
    flex-shrink: 0;
    align-self: flex-end;
}

.news-header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-charcoal-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.news-header-link:hover {
    color: var(--primary-orange);
}

.news-header-link svg {
    transition: transform 0.3s ease;
}

.news-header-link:hover svg {
    transform: translateX(4px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    min-width: 0; /* Prevent grid from collapsing */
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

/* Force 4 columns only when container is wide enough */
@media (min-width: 1140px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }
}

/* News card link wrapper */
.news-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.news-card {
    background: var(--page-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-link:hover .news-card {
    transform: translateY(-8px);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--accent-warm-beige) 0%, var(--page-white) 100%);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-link:hover .news-image img {
    transform: scale(1.08);
}

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.news-category {
    display: inline-block;
    background: var(--primary-orange);
    color: white !important;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 0;
    margin-bottom: 4px;
    line-height: 1;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-charcoal-black);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.news-card-link:hover .news-title {
    color: var(--primary-orange);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-date {
    color: var(--primary-orange);
    font-weight: 500;
}

.news-author {
    color: #666;
}

.news-excerpt {
    font-size: 16px;
    color: var(--accent-charcoal-black);
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.news-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 0 0 100px 0;
    background-color: var(--page-white);
    color: var(--charcoal-black);
    text-align: center;
}

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

.cta-content {
    text-align: left;
}

.cta-text {
    font-size: 18px;
    color: var(--charcoal-black);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-contact {
    margin-top: 20px;
}

.cta-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

.cta-contact a {
    color: var(--charcoal-black);
    text-decoration: underline;
}

.cta-contact a:hover {
    color: var(--primary-orange);
}

/* Contact Form */
.cta-form-container {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-charcoal-black);
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}


.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-charcoal-black);
}

.contact-value {
    font-size: 16px;
    color: var(--accent-charcoal-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-orange);
}

/* WhatsApp Contact Styling */
.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(37, 211, 102, 0.05);
}

.whatsapp-link:hover {
    color: #128C7E !important;
    background: rgba(37, 211, 102, 0.15);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.whatsapp-number {
    font-weight: 500;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-charcoal-black);
    border-color: var(--accent-charcoal-black);
}

.btn-secondary:hover {
    background-color: var(--accent-charcoal-black);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 52px;
        font-weight: 800;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-box {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-number-small {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .news-header {
        flex-direction: column;
        gap: 20px;
    }
    
}

/* 3 columns with pagination when 4 don't fit */
@media (max-width: 1139px) and (min-width: 768px) {
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        overflow: hidden;
        position: relative;
    }
    
    /* Show first 3 cards, hide the rest */
    .news-card:nth-child(n+4) {
        display: none;
    }
    
    /* Show 4th card when it's the active slide */
    .news-card:nth-child(4).active {
        display: block;
    }
}

/* Mobile - show 1 card at a time with navigation */
@media (max-width: 767px) {
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        min-height: 400px;
    }
    
    .news-card {
        display: none; /* Hide all cards by default */
    }
    
    .news-card.active {
        display: block; /* Show only active card */
    }
    
    /* Show pagination controls on mobile */
    .news-pagination {
        display: flex;
        margin-top: 30px;
    }
}

/* News Pagination/Slider Controls */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 0 20px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background-color: var(--primary-orange);
    opacity: 0.7;
}

.pagination-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pagination-arrow:hover {
    background-color: var(--secondary-red);
    transform: scale(1.1);
}

.pagination-arrow:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Hide pagination when 4 columns fit */
@media (min-width: 1140px) {
    .news-pagination {
        display: none;
    }
}

/* Updated News Card Styles */
.news-category {
    color: #2196F3;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-charcoal-black);
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news-date {
    color: var(--accent-charcoal-black);
    font-size: 14px;
    font-weight: 400;
}

.news-author {
    color: var(--accent-charcoal-black);
    font-size: 14px;
    font-weight: 400;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        width: 100%;
    }
    
    .contact-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-orange);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .contact-value {
        font-size: 16px;
        text-align: center;
    }
    
    .whatsapp-link {
        justify-content: center;
        width: auto;
        display: inline-flex;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-form-container {
        width: 100%;
    }
    
    .contact-form {
        padding: 30px 20px;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--accent-charcoal-black);
    color: white;
    border-radius: 0;
    margin-top: 60px;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.newsletter-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-privacy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Social Media */
.footer-section .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    transition: all 0.3s ease;
}

.footer-section .social-link:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Newsletter Responsive */
@media (max-width: 768px) {
    .newsletter {
        margin-top: 40px;
        border-radius: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
