/* Global Styles */
:root {
    --primary-color: #25D366; /* WhatsApp green */
    --secondary-color: #128C7E;
    --accent-color: #075E54;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #ddd;
    --dark-gray: #777;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.login-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.login-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.login-btn.active {
    background-color: var(--accent-color);
}

/* Main Content Styles */
main {
    padding: 2rem;
    min-height: calc(100vh - 150px);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 3rem;
}

.login-form {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.login-form p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
}

.input-with-flag {
    display: flex;
    align-items: center;
}

.country-code {
    padding: 0.8rem;
    background-color: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.input-with-flag input {
    border-radius: 0 5px 5px 0;
}

.btn-whatsapp {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--secondary-color);
}

.btn-whatsapp i {
    margin-right: 0.5rem;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.otp-digit {
    width: 15%;
    height: 50px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
}

.resend-code {
    text-align: center;
    margin-top: 1rem;
}

.login-benefits {
    flex: 1;
    padding: 2rem;
}

.login-benefits h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.login-benefits ul {
    list-style: none;
}

.login-benefits ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.login-benefits ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Enquiry Page Styles */
.enquiry-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 3rem;
}

.enquiry-form-section {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-form-section h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.enquiry-form-section p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.enquiry-benefits {
    flex: 1;
    padding: 2rem;
}

.enquiry-benefits h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.enquiry-benefits ul {
    list-style: none;
    margin-bottom: 2rem;
}

.enquiry-benefits ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.enquiry-benefits ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Footer Styles */
footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--light-gray);
}

.footer-section p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-section p i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--light-gray);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .features {
        flex-direction: column;
    }
    
    .login-container,
    .enquiry-container {
        flex-direction: column;
    }
}