:root {
    --primary-color: #2c5282;
    --primary-dark: #1e3a5f;
    --secondary-color: #4a5568;
    --background-light: #f8f9fa;
    --background-blue: #e3f2fd;
    --background-white: #ffffff;
    --text-dark: #333333;
    --text-medium: #4a5568;
    --text-light: #718096;
    --success-color: #48bb78;
    --success-bg: #f0fff4;
    --border-color: #d1d5db;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--background-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-color: var(--background-blue);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* Services Section */
.services {
    background-color: var(--background-white);
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-light);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card em {
    color: var(--primary-color);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background-color: var(--background-blue);
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.cta-text h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-blue);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: var(--background-white);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.contact-note {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 25px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-top: 20px;
}

/* Form */
.contact-form {
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-medium);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--background-white);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
}

/* Success Message */
.form-success {
    text-align: center;
    background-color: var(--success-bg);
    padding: 50px 40px;
    border-radius: 12px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h3 {
    color: #22543d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: #e0e7ef;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e0e7ef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--background-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #e0e7ef;
}
/* Contact Phone Numbers */
.contact-phones {
    margin: 20px 0;
    padding: 15px;
    background-color: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.phone-number {
    font-size: 1.1rem;
    color: #2c5282;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .phone-number strong {
        font-size: 1.2rem;
    }

/* Footer Phone Contacts */
.phone-contact {
    font-weight: 500;
    color: #e0e7ef !important;
}

.location-text {
    font-size: 0.95rem;
    color: #e0e7ef;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-bottom p {
    margin: 5px 0;
}
/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content,
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image,
    .cta-image {
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-text h2 {
        font-size: 1.9rem;
    }

    .cta-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .services, .testimonials, .contact, .cta-section {
        padding: 50px 0;
    }

    .hero-text h2 {
        font-size: 1.6rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .testimonial-card {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }
}