
@import url('index.css');

.renmar-services-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(30,136,229,0.95), rgba(76,175,80,0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 8%;
    position: relative;
}

.renmar-services-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.renmar-services-hero p {
    font-size: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.renmar-transfers {
    padding: 8rem 8%;
    background: white;
}

.renmar-transfers h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 4rem;
    color: #333;
}

.renmar-transfers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-transfer {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renmar-transfer:hover {
    transform: translateY(-10px);
}

.renmar-transfer img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.renmar-transfer h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin: 1.5rem;
    color: #333;
}

.renmar-transfer p {
    margin: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.renmar-service-btn {
    display: inline-block;
    background: #1E88E5;
    color: white;
    padding: 1rem 2rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.renmar-service-btn:hover {
    background: #FF4081;
    transform: translateY(-3px);
}

.renmar-tours {
    padding: 8rem 8%;
    background: #f9f9f9;
}

.renmar-tours h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 4rem;
    color: #333;
}

.renmar-tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-tour {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.renmar-tour img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.renmar-tour-content {
    padding: 2rem;
}

.renmar-tour-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin-bottom: 1rem;
    color: #333;
}

.renmar-tour-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.renmar-tour-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.renmar-tour-content ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.renmar-tour-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #1E88E5;
    border-radius: 50%;
}

.renmar-custom {
    padding: 8rem 8%;
    background: white;
    text-align: center;
}

.renmar-custom h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: #333;
}

.renmar-custom p {
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .renmar-transfers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .renmar-tours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .renmar-services-hero h1 {
        font-size: 36px;
    }

    .renmar-transfers-grid {
        grid-template-columns: 1fr;
    }
} 