:root {
    --primary: #003366; /* Navy Blue */
    --secondary: #ff8c00; /* Dark Orange */
    --accent: #f8f9fa;
    --text: #333;
    --white: #ffffff;
    --dark: #1a1a1a;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Marquee */
.top-announcement {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Header & Nav */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--secondary);
}

/* Hero */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content {
    text-align: left;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

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

.btn-primary:hover {
    background: #e67e00;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    margin-left: 10px;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Grid System */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Features */
.py-5 { padding: 80px 0; }
.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--accent);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon-large {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Services Page */
.service-detail-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 10px;
}

.check-list i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Form Styles */
.styled-form .form-group {
    margin-bottom: 15px;
}

.styled-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.styled-form input, .styled-form select, .styled-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Map */
.map-container {
    height: 350px;
    background: #eee;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 15px 0;
    z-index: 1001;
    display: none;
}

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

/* Footer */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

/* Legal Text Styles */
.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h1, .legal-text h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-text p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 2.5rem; }
    .nav-list { display: none; } /* Simplified for demo, would need hamburger JS */
    .mobile-menu-toggle { display: block; font-size: 1.5rem; cursor: pointer; }
    .banner-flex { flex-direction: column; text-align: center; }
    .banner-btns { margin-top: 10px; }
}