/* ==================== SHARED STYLES ==================== */ /* Indumati Netralaya - Common styles across all pages */ /* ==================== SKIP LINK (Accessibility) ==================== */ .skip-link{position:absolute;top:-40px;left:0;background:var(--deep-teal);color:white;padding:8px 16px;z-index:10000;transition:top 0.3s}.skip-link:focus{top:0}/* ==================== CSS CUSTOM PROPERTIES ==================== */:root{--deep-teal:#1a3a38;--teal:#2d5a56;--sage:#6b9b8f;--sage-light:#a8c5bb;--cream:#f8f6f3;--warm-white:#fdfcfb;--charcoal:#1c1c1c;--text:#2a2a2a;--text-light:#5a5a5a;--gold:#b8965a}/* ==================== CSS RESET ==================== */ *{margin:0;padding:0;box-sizing:border-box}html{font-size:16px}body{font-family:'Inter',-apple-system,sans-serif;color:var(--text);background:var(--warm-white);-webkit-font-smoothing:antialiased}h1,h2{font-family:'Instrument Serif',Georgia,serif;font-weight:400}h3,h4{font-family:'Inter',sans-serif;font-weight:600}a{color:inherit;text-decoration:none}/* ==================== FOCUS STYLES (Accessibility) ==================== */:focus-visible{outline:3px solid var(--sage);outline-offset:2px}a:focus-visible,button:focus-visible{outline:3px solid var(--sage);outline-offset:2px}/* ==================== HEADER ==================== */ .header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(253,252,251,0.97);backdrop-filter:blur(20px);border-bottom:1px solid rgba(0,0,0,0.05)}.header__inner{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;max-width:1400px;margin:0 auto}.header__logo{display:flex;align-items:center;gap:10px}.header__logo img{height:44px}.header__logo-text{font-family:'Instrument Serif',serif;font-size:1.1rem;color:var(--deep-teal)}.header__nav{display:flex;align-items:center;gap:8px}.header__nav a{padding:8px 16px;font-size:0.85rem;font-weight:500;color:var(--text-light);border-radius:6px;transition:all 0.2s}.header__nav a:hover,.header__nav a.active{color:var(--deep-teal);background:var(--cream)}.header__cta{background:var(--deep-teal) !important;color:white !important}.header__cta:hover{background:var(--teal) !important}.header__menu-btn{display:none;background:none;border:none;padding:8px;cursor:pointer}.header__menu-btn svg{width:24px;height:24px;color:var(--deep-teal)}/* ==================== PAGE HERO ==================== */ .page-hero{padding:140px 20px 80px;background:linear-gradient(135deg,var(--deep-teal) 0%,var(--teal) 100%);color:white;text-align:center;position:relative;overflow:hidden}.page-hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');opacity:0.3}.page-hero__content{position:relative;z-index:1}.page-hero__label{font-size:0.85rem;text-transform:uppercase;letter-spacing:0.1em;color:var(--sage-light);margin-bottom:16px;font-weight:600}.page-hero__title{font-size:clamp(2.25rem,6vw,3.5rem);margin-bottom:16px;line-height:1.15}.page-hero__subtitle{font-size:1.15rem;color:rgba(255,255,255,0.85);max-width:700px;margin:0 auto;line-height:1.6}/* ==================== FOOTER ==================== */ .footer{background:var(--charcoal);color:white;padding:32px 20px}.footer__inner{max-width:900px;margin:0 auto}.footer__main{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:24px;padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,0.1)}.footer__brand{display:flex;align-items:center;gap:12px}.footer__brand img{height:40px}.footer__brand span{font-family:'Instrument Serif',serif;font-size:1.1rem}.footer__contact{display:flex;gap:24px;flex-wrap:wrap}.footer__contact a{display:flex;align-items:center;gap:8px;font-size:0.9rem;color:rgba(255,255,255,0.85);transition:color 0.2s}.footer__contact a:hover{color:white}.footer__contact svg{width:18px;height:18px}.footer__bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;flex-wrap:wrap;gap:16px}.footer__copy{font-size:0.8rem;color:rgba(255,255,255,0.75)}.footer__links{display:flex;gap:20px}.footer__links a{font-size:0.8rem;color:rgba(255,255,255,0.75)}.footer__links a:hover{color:white}/* ==================== WHATSAPP FLOAT ==================== */ .whatsapp{position:fixed;bottom:20px;right:20px;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.4);z-index:999;transition:transform 0.3s}.whatsapp:hover{transform:scale(1.1)}.whatsapp svg{width:28px;height:28px;color:white}/* ==================== MOBILE NAV ==================== */ .mobile-nav{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--deep-teal);z-index:2000;padding:80px 24px 40px;flex-direction:column}.mobile-nav.active{display:flex}.mobile-nav__close{position:absolute;top:16px;right:20px;background:none;border:none;padding:8px;cursor:pointer}.mobile-nav__close svg{width:28px;height:28px;color:white}.mobile-nav__links{display:flex;flex-direction:column;gap:8px}.mobile-nav__links a{color:white;font-size:1.25rem;padding:16px 0;border-bottom:1px solid rgba(255,255,255,0.1);transition:color 0.2s}.mobile-nav__links a:hover{color:var(--sage-light)}.mobile-nav__cta{margin-top:auto;background:white;color:var(--deep-teal);padding:16px;border-radius:12px;text-align:center;font-weight:600;font-size:1rem}/* ==================== RESPONSIVE - SHARED COMPONENTS ==================== */ @media (max-width:768px){.header__nav{display:none}.header__menu-btn{display:block}.page-hero{padding:120px 20px 60px}.page-hero__title{font-size:2rem}.footer__main{flex-direction:column;text-align:center}.footer__contact{justify-content:center}.footer__bottom{flex-direction:column;text-align:center}}/* ==================== SERVICES DROPDOWN ==================== */ .header__dropdown{position:relative}.header__dropdown-trigger{cursor:pointer;display:flex;align-items:center;gap:4px}.header__dropdown-trigger::after{content:'';border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid currentColor;margin-left:2px}.header__dropdown-menu{display:none;position:absolute;top:100%;left:0;background:white;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,0.12);padding:8px 0;min-width:220px;z-index:1000}.header__dropdown:hover .header__dropdown-menu{display:block}.header__dropdown-menu a{display:block;padding:10px 20px;color:var(--text);font-size:0.85rem;white-space:nowrap;transition:background 0.2s}.header__dropdown-menu a:hover{background:var(--cream);color:var(--deep-teal)}.header__dropdown-menu a:first-child{font-weight:600;border-bottom:1px solid var(--cream);padding-bottom:10px;margin-bottom:4px}