:root {
    --primary: #F37021; /* Logo Orange */
    --primary-dark: #d65d14;
    --secondary: #002D62; /* Logo Navy Blue */
    --midnight: #001a3d; /* Darker Navy */
    --midnight-light: #002d62;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #f0f2f5;
    --text: #1e293b;
    --text-light: #64748b;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

.bg-light { background-color: var(--off-white); }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary);
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-item {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    border: 2px solid var(--gray-light);
    cursor: pointer;
}

.floating-item:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--primary);
}

.floating-item .tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Header & Nav */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo img { height: 60px; }

nav ul { display: flex; gap: 35px; }
nav ul li a { font-weight: 600; color: var(--secondary); transition: var(--transition); }
nav ul li a:hover, nav ul li a.active { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.3);
}

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

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

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

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 45, 98, 0.8), rgba(0, 45, 98, 0.4));
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero h1 { font-size: 4.5rem; color: var(--white); margin-bottom: 20px; }
.hero p { font-size: 1.3rem; color: rgba(255,255,255,0.9); }
.hero-btns { display: flex; gap: 20px; margin-top: 40px; }

/* Page Headers */
.page-header {
    padding: 120px 0;
    text-align: center;
    position: relative;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 45, 98, 0.8);
    z-index: 1;
}

.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); font-size: 3.5rem; }

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.stat-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; display: block; }
.stat-card h3 { font-size: 3rem; margin-bottom: 10px; }
.stat-card p { font-weight: 700; text-transform: uppercase; margin-bottom: 0; }

/* Content Cards */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.stat-card, .expertise .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-item-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.contact-form.card {
    padding: 40px;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.about-image img, .service-img img, .highlight-img img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid #eee; border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
.faq-question { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.4s ease; padding: 0 30px; }
.faq-item.active .faq-answer { max-height: 500px; padding: 10px 30px 30px; background: var(--off-white); }
.faq-item.active .faq-question { background: var(--primary); color: var(--white); }

/* Contact Specific */
.contact-item-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-item-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 100px 0 40px;
}

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

.footer-col h4 { color: var(--white); margin-bottom: 30px; position: relative; padding-bottom: 10px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); }
.footer-col p, .footer-col li { color: rgba(255,255,255,0.7); margin-bottom: 15px; font-size: 1rem; }
.footer-col ul li { display: flex; gap: 12px; align-items: center; }
.footer-col i { color: var(--primary); font-size: 1.1rem; }
.footer-col a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 30px; text-align: center; color: rgba(255,255,255,0.4); }

/* Helpers */
.text-primary { color: var(--primary) !important; }

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .grid-2 { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .floating-sidebar { bottom: 20px; top: auto; right: 20px; transform: none; flex-direction: row; }
    .top-bar { display: none; }
    nav ul { display: none; }
}