/* ======================================
COMPONENTS.CSS
UI Elements
====================================== */

/* CTA BUTTON */

.btn-primary{

background:var(--gradient-accent);

color:#0b1e3c;

font-weight:700;
font-size:var(--text-sm);
letter-spacing:0.02em;

padding:10px 22px;

border-radius:100px;

display:inline-flex;

align-items:center;
gap:6px;

white-space:nowrap;

transition:all var(--transition-base);

box-shadow:0 2px 8px rgba(201,162,39,.25);

}

.btn-primary:hover{

transform:translateY(-2px);
box-shadow:var(--shadow-accent);
opacity:1;

}

.btn-primary:active{
transform:scale(.97) translateY(0);
}

/* QUOTE — now handled in home.css */

/* VIDEO CARD */

.video-card{

border-radius:8px;
overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.2);

align-self:start;

}

.video-wrapper{

position:relative;
width:100%;
padding-top:56.25%;

}

.video-wrapper iframe{

position:absolute;
inset:0;

width:100%;
height:100%;

border:0;

}

/* SOCIAL PANEL */

.social-panel{

position:fixed;

right:0;
top:50%;

transform:translateY(-50%) translateX(68%);

display:flex;
flex-direction:column;

gap:14px;

padding:16px 12px;

background:rgba(11,30,60,.85);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);

border-radius:16px 0 0 16px;
border:1px solid rgba(255,255,255,.1);
border-right:none;

box-shadow:0 16px 40px rgba(0,0,0,.2);

transition:transform var(--transition-slow);

z-index:999;

}

.social-panel:hover{

transform:translateY(-50%) translateX(0);

}

.social-panel a{

width:46px;
height:46px;

display:flex;
align-items:center;
justify-content:center;

border-radius:12px;
background:rgba(255,255,255,.07);
color:rgba(255,255,255,.92);
font-size:11px;
font-weight:700;
letter-spacing:.06em;
text-transform:uppercase;

transition:background var(--transition-fast), transform var(--transition-fast);

}

.social-panel a:hover{
background:rgba(255,255,255,.16);
transform:scale(1.08);
}

.social-panel img,
.social-panel .social-label{
width:26px;
height:26px;
display:flex;
align-items:center;
justify-content:center;
}

/* DEVELOPER CREDIT */

.developer-credit{

padding:16px 0;
font-size:11px;

text-align:center;

color:rgba(255,255,255,.72);

}

.developer-credit a{

color:rgba(201,162,39,.95);
text-decoration:none;
font-weight:500;

}

.developer-credit a:hover{
color:var(--color-accent-light);
opacity:1;
}

@media(max-width:768px){

.developer-credit{
font-size:10px;
}

}

/* ======================================
ABOUT PAGE LAYOUT
====================================== */

.about-section{
background:var(--color-light);
padding:60px 0;
}

/* INTRO GRID */

.about-intro-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;

align-items:center;

margin-bottom:60px;

}

.about-intro-text p{
max-width:520px;
}

.highlight-line{
font-weight:600;
}

/* MISSION STRIP */

.mission-strip{

background:#15335a;
color:white;

padding:40px;

border-radius:12px;

text-align:center;

margin-bottom:60px;

}

.mission-strip h2{
color:white;
}

/* INFRASTRUCTURE */

.infrastructure-section{
margin-bottom:60px;
}

.infrastructure-section .subtext{
text-align:center;
margin-bottom:40px;
}

/* GRID */

.infra-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:40px;

}

.infra-card{

background:white;

padding:25px;

border-radius:10px;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

text-align:center;

}

.infra-card h4{
margin-bottom:10px;
}

/* DISCIPLINE STRIP */

.discipline-strip{

text-align:center;

max-width:700px;

margin:0 auto 60px auto;

}

.bold-line{
font-weight:600;
}

/* TARGET SECTION */

.target-section{

text-align:center;

max-width:600px;

margin:auto;

}

.target-list{

margin:30px 0;

}

.target-list li{

margin-bottom:10px;

font-weight:500;

}

/* ======================================
RESPONSIVE
====================================== */

@media (max-width:900px){

.about-intro-grid{
grid-template-columns:1fr;
gap:40px;
}

.infra-grid{
grid-template-columns:1fr;
}

}

/* ==========================================
FACILITIES SECTION
========================================== */

.facilities-section{
background: var(--color-light);
padding: 60px 0;
}

/* GRID */

.facilities-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:40px;

max-width:1100px;

margin-left:auto;
margin-right:auto;

}

/* CARD */

.facility-card{

background:#fff;

border-radius:12px;

overflow:hidden;

box-shadow:0 6px 18px rgba(0,0,0,0.08);

transition:.25s ease;

}

/* IMAGE */

.facility-card img{

width:100%;
height:160px;

object-fit:cover;

display:block;

}

.facility-card h4{
text-align:center;
font-weight:600;
font-size:15px;
color:var(--color-primary);
}

/* TITLE */

.facility-card p{

padding:14px;

text-align:center;

font-weight:600;

font-size:14px;

color:var(--color-primary);

}

/* HOVER */

.facility-card:hover{

transform:translateY(-5px);

box-shadow:0 12px 28px rgba(0,0,0,0.12);

}

/* ==========================================
RESPONSIVE
========================================== */

/* Laptop */

@media (max-width:1100px){

.facilities-grid{
grid-template-columns:repeat(3,1fr);
}

}

/* Tablet */

@media (max-width:768px){

.facilities-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media (max-width:480px){

.facilities-grid{
grid-template-columns:1fr;
}

}

/* ======================================
BUTTONS
====================================== */

.btn-primary,
.btn-secondary{

padding:10px 22px;
border-radius:100px;
font-weight:700;
font-size:var(--text-sm);
cursor:pointer;
border:none;
transition:all var(--transition-base);

}

/* PRIMARY */

.btn-primary{

background:var(--gradient-accent);
color:#0b1e3c;
box-shadow:0 2px 10px rgba(201,162,39,.2);

}

.btn-primary:hover{

transform:translateY(-2px);
box-shadow:var(--shadow-accent);
opacity:1;

}

/* SECONDARY */

.btn-secondary{

background:#e8e4dc;
color:var(--color-text);

}

.btn-secondary:hover{

background:#d8d4cc;

}

/* BREADCRUMB */

.breadcrumb {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #666;
}

/* ==========================================================
SMART SEAT POPUP
========================================================== */

.seat-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.seat-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.seat-box{
position:relative;
background:#fff;
max-width:560px;
width:92%;
padding:28px;
border-radius:10px;
text-align:center;
box-shadow:0 25px 50px rgba(0,0,0,0.3);
z-index:2;
}

.seat-close{
position:absolute;
top:10px;
right:12px;
font-size:24px;
border:none;
background:none;
cursor:pointer;
}

.seat-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin:20px 0;
}

.seat-card{
background:#f8fafc;
padding:14px;
border-radius:6px;
}

.seat-card.ac{
background:#e0f2fe;
}

.seat-card ul{
list-style:none;
padding:0;
margin:0;
}

.seat-card li{
padding:4px 0;
font-size:14px;
}

.seat-actions{
display:flex;
gap:10px;
justify-content:center;
margin-top:10px;
}

.seat-btn{
padding:10px 16px;
text-decoration:none;
border-radius:6px;
font-size:14px;
}

.seat-btn.primary{
background:#0f172a;
color:#fff;
}

.seat-btn.whatsapp{
background:#25D366;
color:#fff;
}

.seat-note{
font-size:13px;
margin-top:10px;
color:#666;
}

/* Mobile */

@media(max-width:600px){

.seat-grid{
grid-template-columns:1fr;
}

.seat-actions{
flex-direction:column;
}

}

.seo-local-text{
max-width:700px;
margin:40px auto;
padding:0 20px;
text-align:center;
}

.faq-search-questions {
    background:var(--color-light);
    padding:20px 20px;
    border-radius:12px;
    margin-bottom:20px;
    width:100%;
}
.faq-quick-answers{
    text-indent: 20%;
    background:var(--color-light);
    padding:20px 20px;
    border-radius:12px;
    margin-bottom:20px;
    width:100%;
}
