/* 
    GHARSETU PRIVACY POLICY - PROFESSIONAL & ELEGANT DESIGN
    Minimalist Luxury Aesthetics
*/

:root {
    --primary-color: #0a192f;
    --accent-color: #c5a059;
    --text-main: #0a192f;
    --text-muted: #5b6572;
    --bg-white: #ffffff;
    --bg-soft: #fcfcfc;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ─── NAVIGATION (Standardized) ─── */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link--cta {
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
}

.nav-link--cta:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: var(--accent-color);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 3rem 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
    border-bottom: 2px solid var(--accent-color);
}

.mega-menu.active {
    display: block;
}

.mega-col h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.mega-col ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-col li a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: 0.3s;
}

.mega-col li a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hamburger-menu { display: flex; }
    .mega-col ul { grid-template-columns: 1fr; gap: 1rem; }
}


/* ─── PRIVACY HERO ─── */
.privacy-hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, #fcfcfc, #ffffff);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

.privacy-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.privacy-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── CONTENT LAYOUT ─── */
.privacy-content-section {
    padding: 100px 0 140px;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* ─── SIDEBAR INDEX ─── */
.privacy-sidebar {
    position: sticky;
    top: 120px;
}

.privacy-index {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.index-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.index-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197, 160, 89, 0.2);
}

.index-link {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
}

.index-link:last-child { margin-bottom: 0; }

.index-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: 0.3s;
}

.index-link:hover, .index-link.active {
    color: var(--primary-color);
    font-weight: 700;
    padding-left: 15px;
}

.index-link:hover::before, .index-link.active::before {
    width: 25px;
    left: -15px;
}

/* ─── MAIN CONTENT ─── */
.privacy-content-wrapper {
    background: #fff;
    padding: 0;
}

.last-updated {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.last-updated::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-color);
}

.privacy-content-wrapper section {
    margin-bottom: 6rem;
    scroll-margin-top: 120px;
}

.privacy-content-wrapper section:last-child { margin-bottom: 0; }

.privacy-content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.privacy-content-wrapper h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 3rem 0 1.2rem;
    font-weight: 700;
}

.privacy-content-wrapper p {
    margin-bottom: 1.8rem;
    color: var(--text-main);
    font-size: 1.05rem;
    opacity: 0.85;
    text-align: justify;
}

.privacy-content-wrapper ul {
    margin-bottom: 2.5rem;
    padding-left: 1.8rem;
}

.privacy-content-wrapper li {
    margin-bottom: 1rem;
    position: relative;
    list-style: none;
    font-size: 1.05rem;
    opacity: 0.85;
}

.privacy-content-wrapper li::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.8rem;
    transition: transform 0.3s ease;
}

.privacy-content-wrapper li:hover::before {
    transform: translateX(5px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .privacy-layout { gap: 40px; grid-template-columns: 240px 1fr; }
    .privacy-content-wrapper h2 { font-size: 2.2rem; }
}

@media (max-width: 991px) {
    .privacy-layout { grid-template-columns: 1fr; }
    .privacy-sidebar { display: none; }
    .privacy-hero h1 { font-size: 3.5rem; }
    .privacy-content-section { padding: 60px 0 100px; }
}

@media (max-width: 768px) {
    .privacy-hero h1 { font-size: 2.8rem; }
    .privacy-content-wrapper section { margin-bottom: 4rem; }
}

/* ─── FOOTER (Premium Dark) ─── */
.premium-footer {
    background: var(--primary-color);
    padding: 80px 0 40px;
    color: #fff;
    border-top: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Make logo white if it's dark */
}

.brand-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #164e33;
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.brand-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer-col-title {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #164e33;
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.footer-bottom-new {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .privacy-hero { padding: 120px 0 60px; }
    .privacy-content-wrapper h2 { font-size: 1.6rem; }
    .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
}
