:root {
    --primary: #2c5282;
    --primary-light: #3182ce;
    --secondary: #f7fafc;
    --accent: #f6ad55;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 10px;
}

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

/* Header & Nav */
header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo span {
    color: var(--accent);
    margin-left: 2px;
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('jakub-zerdzicki-heiYgqp0Tsk-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background-color: var(--secondary);
    border-radius: 10px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.features li::before {
    content: 'â';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.about-badge {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.badge {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(44, 82, 130, 0.3);
}

.badge hr {
    width: 50%;
    margin: 10px 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact .container {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    background-color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-item h4 {
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
}

.info-item p, .info-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-form-placeholder {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-placeholder h3 {
    margin-bottom: 20px;
}

.cta-box {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
}

.small {
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about-flex, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        order: -1;
    }
    
    nav ul {
        display: none; /* Simplification for mobile */
    }
}
