:root {
    --labour-red: #E4003B;
    --india-saffron: #FF9933;
    --india-green: #138808;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --border-gray: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Triple-color top accent bar */
.top-bar {
    display: flex;
    height: 6px;
    width: 100%;
}

.top-bar-saffron { flex: 1; background-color: var(--india-saffron); }
.top-bar-white { flex: 1; background-color: var(--white); }
.top-bar-green { flex: 1; background-color: var(--india-green); }

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--labour-red);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.logo-square {
    width: 32px;
    height: 32px;
    background-color: var(--labour-red);
    border-radius: 4px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}

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

nav ul li a.active {
    color: var(--labour-red);
    border-bottom-color: var(--labour-red);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background-color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    max-width: 900px;
}

.hero h1 span {
    color: var(--labour-red);
}

.hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: #e5e7eb;
}

.card .icon {
    margin-bottom: 1.25rem;
    color: var(--labour-red);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: var(--labour-red);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(228, 0, 59, 0.1);
}

.btn:hover {
    background-color: #be0031;
    transform: translateY(-1px);
}

.living-bridge-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 1.5rem;
}

.living-bridge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--india-green);
    border-radius: 50%;
}

/* Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--white);
}

.form-group input:focus {
    outline: 2px solid var(--labour-red);
    outline-offset: -1px;
}

/* Footer */
footer {
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-gray);
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-description {
    max-width: 320px;
}

.footer-logo-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
}

.footer-links-grid span {
    cursor: pointer;
}

.footer-links-grid span:hover {
    color: var(--text-dark);
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.copyright {
    font-size: 0.625rem;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
}

@media (max-width: 768px) {
    .header-inner { padding: 1rem 0; }
    .mobile-nav-toggle { display: block; }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        border-bottom: 1px solid var(--border-gray);
        box-shadow: var(--shadow-md);
    }

    nav ul.active { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; }
    .footer-links-grid { flex-wrap: wrap; }
    .living-bridge-badge { margin-left: 0; margin-top: 1.5rem; display: flex; }
    .hero-actions { display: flex; flex-direction: column; align-items: flex-start; }
}
