/* GOOGLE FONT */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* NAVIGATION */
header {
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    list-style-type: none;
    display: flex;
    gap: 25px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}
.logo {
    font-size: 24px;
    font-weight: 700;
}

/* BANNER */
.banner {
    background: url('https://wgassets.duravit.cloud/photomanager-duravit/file/8a8a818d848418250184998670db3837/tulum_stage_bathroom_faucets.jpg?derivate=width~1440') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}
.banner .btn {
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.btn-primary {
    background: #007bff;
    color: white;
}
.btn-secondary {
    background: #28a745;
    color: white;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 30px;
    text-align: center;
    background: #f9f9f9;
}
.about-section h2 {
    margin-bottom: 15px;
}

/* SERVICES SECTION */
.services-section {
    padding: 60px 30px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.service-card {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
}
.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* CONTACT */
.contact-section {
    padding: 60px 30px;
    text-align: center;
    background: #f9f9f9;
}

/* FOOTER */
/* FOOTER */
.footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding-top: 50px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 40px 40px;
}

.footer-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-box h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #00d4ff;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-box p {
    line-height: 1.7;
    font-size: 14px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* ABOUT GRID SECTION */
.about-grid-section {
    padding: 80px 40px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5364;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-title {
        font-size: 28px;
    }
}

/* CONTACT US MODERN */
.contact-section-modern {
    padding: 90px 40px;
    background: linear-gradient(135deg, #f8f9fa, #eef3f6);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c5364;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

.info-box span {
    font-size: 22px;
}

.info-text {
    margin-top: 25px;
    color: #555;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2c5364;
    box-shadow: 0 0 0 2px rgba(44,83,100,0.15);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #2c5364, #203a43);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
/* SERVICES ZIGZAG */
.services-zigzag {
    padding: 90px 40px;
    background: #ffffff;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2c5364;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* MOBILE */
@media (max-width: 900px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-image img {
        height: 260px;
    }
}


