:root {
    --primary-color: #0d1b2a;
    /* Deep Navy */
    --secondary-color: #c9a227;
    /* Gold/Bronze */
    --accent-color: #1b263b;
    /* Lighter Navy */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    /* Unified Font: Montserrat */
    --font-body: 'Montserrat', sans-serif;
    /* Unified Font: Montserrat */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: 400;
    /* Regular weight for body */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
    /* More spacing for modern look */
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    /* Stronger presence */
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Global Section Header & Plecas */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    margin-bottom: 0.5rem;
    z-index: 1;
    background: var(--white);
    /* Ensure text sits on top of lines if needed */
}

/* Formal 'Pleca' Design: Gold lines flanking the text */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.text-white .section-header h2 {
    background: transparent;
    color: var(--white);
}

.divider,
.divider-left {
    display: none;
    /* Replaced by h2::after pleca style */
}

/* Section Description */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    /* Modern pill shape */
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #b08d1e;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-white {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-white:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.btn-contact {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 50px;
}

.btn-contact:hover {
    background-color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: var(--transition);
}

/* Hero Section & Carousel */
/* Hero Section */
.hero {
    height: 100vh;
    /* Full screen impact */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services Detailed */
/* Services Detailed - Interactive Grid */
.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.service-row {
    display: flex;
    flex-direction: column;
    /* Stack content inside card */
    align-items: flex-start;
    text-align: left;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    /* Slightly sharper corner for formal look */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
    /* Top 'pleca' for card */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    /* Equal height */
}

/* Interactive Hover Effect */
.service-row:hover {
    background-color: var(--primary-color);
    /* Navy Background */
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.2);
}

.service-row.reverse {
    flex-direction: column;
    /* Reset reverse for grid cards */
    border-left: none;
    border-right: none;
}

.service-content {
    flex: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    /* Gold default */
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-row:hover .service-icon {
    color: var(--white);
    /* White on hover */
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-row:hover .service-content h3 {
    color: var(--white);
    /* White text on hover */
}

.service-content p {
    color: #555;
    transition: var(--transition);
}

.service-row:hover .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-content ul {
    margin-top: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.service-row:hover .service-content ul li {
    color: rgba(255, 255, 255, 0.8);
}

.service-content ul li i {
    color: var(--secondary-color);
    /* Always Gold Checkmarks */
    margin-right: 12px;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .services-detailed {
        grid-template-columns: 1fr;
    }
}

/* Specialities */
.specialities-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.speciality-text {
    flex: 1;
}

.speciality-text h2 {
    text-align: left;
    color: var(--primary-color);
}

.speciality-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.speciality-list li::before {
    content: "\f00c";
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 4px;
}

.speciality-image {
    flex: 1;
    height: 500px;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    border-radius: 8px;
    position: relative;
    box-shadow: 30px 30px 0px rgba(13, 27, 42, 0.1);
    /* Subtle dark shadow */
}

/* About & Mission/Vision */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mv-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    /* Gold pleca */
}

.icon-small {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Trust / Why Choose Us */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    /* Gold */
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact (Centered No Form) */
.centered-contact {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-info.text-center {
    max-width: 800px;
    width: 100%;
}

.contact-info.text-center h2 {
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.method-item {
    background: var(--white);
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.method-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    /* Gold */
    margin-bottom: 20px;
}

.method-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.method-link {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
}

.method-link:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: #08111a;
    color: var(--white);
    padding: 50px 0;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .specialities-wrapper {
        flex-direction: column;
    }

    .speciality-image {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}