:root {
    --primary: #0F4C75;
    --secondary: #3282B8;
    --accent: #BBE1FA;
    --text-dark: #1B262C;
    --text-light: #F8F9FA;
    --white: #FFFFFF;
    --font-heading: 'Segoe UI', sans-serif;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300; /* Lightweight headings */
    color: var(--primary);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-light { background-color: #f8f9fa !important; }

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 400;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Hero */
.hero-section {
    background-image: linear-gradient(rgba(15, 76, 117, 0.6), rgba(15, 76, 117, 0.6)), url('../images/site/hero-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-section h1 {
    color: var(--white);
    font-weight: 700;
    font-size: 3.5rem;
}

/* Common Section */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.section-title span {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 1rem auto;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 117, 0.85);
    transition: background 0.3s ease;
}

.service-card:hover::before {
    background: rgba(15, 76, 117, 0.95);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-body {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.service-card h3 {
    color: var(--white);
    font-weight: 600;
}

/* Review Cards */
.review-card {
    background: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.review-stars {
    color: #FFC107;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

/* CTA */
.cta-section {
    background-image: linear-gradient(rgba(15, 76, 117, 0.9), rgba(15, 76, 117, 0.9)), url('../images/site/cta.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    margin-top: 50px;
}

.cta-section h2 {
    color: var(--white);
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

footer h4 {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.7);
}

footer a:hover {
    color: var(--white);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
