/* CSS Variables */
:root {
    --primary-blue: #2a4b8d;
    --accent-red: #e60000;
    --highlight-yellow: #daa520;
    --fresh-green: #4caf50;
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    
    /* Service Card Colors */
    --card-orange: #ffe0b2;
    --card-blue: #bbdefb;
    --card-pink: #f8bbd0;
    --card-yellow: #fff9c4;
    --card-green: #c8e6c9;
    --card-red: #ffcdd2;
    --card-light-blue: #e1f5fe;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text .highlight {
    color: var(--accent-red);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 600;
    color: var(--primary-blue);
}

.nav-list a:hover {
    color: var(--accent-red);
}

.btn-nav {
    background-color: var(--accent-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-nav:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    /* Fallback background if no image is suitable, ideally we use a nice calm image */
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.6)), url('../assets/images/uploaded_image_0_1766179741784.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Try to guess which image is best for background - using the first one as placeholder */

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--fresh-green);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1e3a75;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.credentials {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--light-bg);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    color: #555;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.section-subtitle {
    margin-top: -30px;
    margin-bottom: 50px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

/* Card Colors */
.service-card.color-orange { border-color: #ff9800; }
.service-card.color-orange .icon { color: #ff9800; }

.service-card.color-blue { border-color: #2196f3; }
.service-card.color-blue .icon { color: #2196f3; }

.service-card.color-pink { border-color: #e91e63; }
.service-card.color-pink .icon { color: #e91e63; }

.service-card.color-yellow { border-color: #fbc02d; }
.service-card.color-yellow .icon { color: #fbc02d; }

.service-card.color-green { border-color: #4caf50; }
.service-card.color-green .icon { color: #4caf50; }

.service-card.color-red { border-color: #f44336; }
.service-card.color-red .icon { color: #f44336; }

.service-card.color-light-blue { border-color: #03a9f4; }
.service-card.color-light-blue .icon { color: #03a9f4; }

.other-services {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px dashed var(--fresh-green);
}

.other-services h3 {
    color: var(--fresh-green);
    margin-bottom: 20px;
}

.other-services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.other-services ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.other-services i {
    color: var(--fresh-green);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-red);
    background-color: #fff0f0;
    padding: 15px;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.contact-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background-color: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.legal {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .header .nav-list.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
