/* 
   Maharashtra Sahakar - Premium Design System 
   Fully Responsive & Mobile-First
*/

:root {
    --primary-color: #0c2d48;
    --secondary-color: #b1c9ef;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #f4f7f6;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --success: #28a745;
    --danger: #dc3545;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-off-white);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

/* === LAYOUT UTILITIES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col {
    flex: 1;
    padding: 15px;
    min-width: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.bg-light {
    background-color: var(--bg-off-white);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* === HEADER & NAVIGATION === */
header {
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-register {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    white-space: nowrap;
}

.btn-register:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* === BUTTONS === */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-book-seat {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c14a 100%);
    color: var(--primary-color) !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-book-seat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e6c14a 0%, var(--accent-color) 100%);
}

.btn-book-seat i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.btn-transparent {
    border: 2px solid var(--text-light);
    color: var(--text-light) !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    background: transparent;
}

.btn-transparent:hover {
    background: var(--text-light);
    color: var(--primary-color) !important;
}

/* === HOME PAGE SECTIONS === */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(7, 13, 17, 0.8), rgba(7, 13, 17, 0.8)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 120px 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-color);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-light);
    padding: 40px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.stat-item div {
    text-align: left;
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 0.9rem;
    color: #666;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 15px;
}

/* About Grid */
.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.badge {
    background: #eef2f5;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--success);
}

/* Cards */
.card-grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.card.warning {
    border-top: 4px solid var(--danger);
}

.card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-danger {
    color: var(--danger);
    font-weight: bold;
    text-decoration: none;
}

/* Curriculum */
.curriculum-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.batch-card-blue {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

.batch-card-blue h3 {
    color: var(--accent-color);
}

.btn-white-outline {
    border: 2px solid white;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    display: inline-block;
}

.features-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border-left: 3px solid var(--accent-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}


/* === LEADERSHIP SECTION === */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f0f4f8);
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .leader-grid {
        grid-template-columns: 1fr;
    }
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(12, 45, 72, 0.05);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(12, 45, 72, 0.1);
}

.leader-image-box {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.leader-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image-box img {
    transform: scale(1.05);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-name {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.leader-title {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.leader-highlights {
    text-align: left;
    margin-bottom: 25px;
}

.leader-highlights p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.leader-highlights i {
    color: var(--accent-color);
    margin-top: 3px;
}

.btn-profile {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-profile:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

/* Modal System */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.4s ease;
}

@keyframes modalScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: var(--danger);
}

.modal-body {
    padding: 50px;
}

.full-profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.full-profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f4f8;
}

.profile-details h2 {
    margin-bottom: 5px;
}

.profile-details .title {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}

.profile-text {
    font-size: 1rem;
    line-height: 1.8;
}

.profile-section-title {
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .full-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .modal-body {
        padding: 30px 20px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(12, 45, 72, 0.9), rgba(12, 45, 72, 0.9));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline-white {
    border: 2px solid white;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* Forms */
.form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
    margin-top: auto;
}


.footer-logo {
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    padding: 0;
}

.footer-links li i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    padding: 0;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}



/* === ABOUT SECTION STYLES === */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 15px;
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 0.8s ease-out;
}

.image-overlay-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.image-overlay-badge span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* === CONTACT PAGE === */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
    color: var(--text-light);
    padding: 100px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-15px);
    border-top-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(12, 45, 72, 0.15);
}

.contact-icon-box {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    transition: all 0.4s;
}

.contact-info-card:hover .contact-icon-box {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: rotateY(360deg);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-info-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-container {
    padding-bottom: 100px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin-bottom: 80px;
}

.contact-form-sidebar {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-form-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/logo1.jpeg') no-repeat center;
    background-size: 150%;
    opacity: 0.05;
    z-index: -1;
}

.contact-form-sidebar h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 25px;
}

.contact-form-content {
    padding: 60px;
}

.contact-form-content h2 {
    margin-bottom: 35px;
    color: var(--primary-color);
    font-size: 2.2rem;
}

@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-sidebar {
        padding: 50px 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-content {
        padding: 40px 25px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }
}


/* === GALLERY SECTION === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(12, 45, 72, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 45, 72, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--accent-color);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.gallery-page-hero h1 {
    color: white;
    font-size: 3rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-color);
}



/* === WHY CHOOSE US SECTION === */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(12, 45, 72, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.why-card:hover::before {
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card:hover h3,
.why-card:hover p {
    color: white;
}

.why-icon-box {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s;
}

.why-card:hover .why-icon-box {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotateY(360deg);
}

.why-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: color 0.3s;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s;
}

/* === FAQ SECTION === */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(12, 45, 72, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    position: relative;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(12, 45, 72, 0.1);
}

.faq-item.active .faq-question {
    background: #f8f9fa;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    color: #555;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}


/* === VERIFY CERTIFICATE PAGE === */
.verify-hero {
    background: linear-gradient(rgba(7, 13, 17, 0.85), rgba(7, 13, 17, 0.85)), url('../images/WhatsApp Image 2025-12-20 at 6.03.16 PM.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.verify-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.verify-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.verify-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.verify-search-container {
    max-width: 700px;
    margin: -70px auto 80px;
    position: relative;
    z-index: 10;
}

.verify-card-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.verify-input-group {
    position: relative;
}

.verify-input-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.verify-input-wrapper {
    display: flex;
    gap: 15px;
}

.verify-input-wrapper input {
    flex: 1;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.verify-input-wrapper input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.verify-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verify-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Result Cards */
.verify-result-card {
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
}

.result-valid {
    background: white;
    border: 5px solid white;
    box-shadow: 0 30px 60px rgba(12, 45, 72, 0.2);
}

.result-valid-header {
    background: linear-gradient(135deg, #1e4d7b 0%, #000 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.result-valid-header i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.result-valid-body {
    padding: 40px;
}

.cert-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-detail-item label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-detail-item span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-invalid {
    background: #fff5f5;
    border: 2px solid #feb2b2;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
}

.result-invalid i {
    font-size: 4rem;
    color: #f56565;
    margin-bottom: 20px;
}

.result-invalid h2 {
    color: #c53030;
    margin-bottom: 10px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === CONTACT PAGE === */
.contact-hero {
    background: linear-gradient(rgba(7, 13, 17, 0.8), rgba(7, 13, 17, 0.8)), url('../images/WhatsApp\ Image\ 2025-12-20\ at\ 5.56.54\ PM.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-color);
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* === LEGAL FRAMEWORK PAGE (v2) === */
.legal-hero-v2 {
    background: linear-gradient(rgba(7, 13, 17, 0.9), rgba(7, 13, 17, 0.9)), url('../images/a1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--accent-color);
}

.legal-hero-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
}

.legal-hero-v2 h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.legal-hero-v2 p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Training Hero (v2) */
.training-hero-v2 {
    background: linear-gradient(rgba(7, 13, 17, 0.8), rgba(7, 13, 17, 0.8)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-color);
}

.training-hero-v2 h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 15px;
}

.training-hero-v2 p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* About Hero (v2) */
.about-hero-v2 {
    background: linear-gradient(rgba(7, 13, 17, 0.85), rgba(7, 13, 17, 0.85)), url('../images/about.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-color);
}

.about-hero-v2 h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 15px;
}

.about-hero-v2 p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Compliance Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: -50px auto 80px;
    position: relative;
    z-index: 10;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-color);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: #fdfaf0;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pillar-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.pillar-card p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* Codex Style List */
.codex-container {
    max-width: 900px;
    margin: 0 auto;
}

.codex-item {
    background: white;
    margin-bottom: 40px;
    padding: 50px;
    border-radius: 0 20px 20px 0;
    border-left: 8px solid var(--accent-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s;
}

.codex-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.clause-number {
    position: absolute;
    left: -60px;
    top: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e0e0;
}

.codex-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
}

.codex-content {
    color: #555;
    line-height: 2;
    font-size: 1.05rem;
    text-align: justify;
}

/* Golden CTA */
.gold-cta {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c5a021 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.gold-cta h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gold-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: rgba(12, 45, 72, 0.8);
}

.btn-codex {
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(12, 45, 72, 0.2);
}

.btn-codex:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 1100px) {
    .clause-number {
        position: static;
        margin-bottom: 10px;
        display: block;
    }

    .codex-item {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .legal-hero-v2 h1 {
        font-size: 2.8rem;
    }
}

/* === RESPONSIVE DESIGN === */

/* Tablet */

/* Tablet */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .btn-register {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(12, 45, 72, 0.05);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(12, 45, 72, 0.1);
}

.leader-image-box {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.leader-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image-box img {
    transform: scale(1.05);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-name {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.leader-title {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.leader-highlights {
    text-align: left;
    margin-bottom: 25px;
}

.leader-highlights p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.leader-highlights i {
    color: var(--accent-color);
    margin-top: 3px;
}

.btn-profile {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-profile:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

/* Modal System */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.4s ease;
}

@keyframes modalScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: var(--danger);
}

.modal-body {
    padding: 50px;
}

.full-profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.full-profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f4f8;
}

.profile-details h2 {
    margin-bottom: 5px;
}

.profile-details .title {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}

.profile-text {
    font-size: 1rem;
    line-height: 1.8;
}

.profile-section-title {
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary-color);
}

/* Leader Grid Responsive */
.leader-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 769px) {
    .leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .btn-register {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .full-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .navbar {
        padding: 18px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 35px;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary,
    .btn-transparent {
        width: 100%;
        text-align: center;
    }

    .stats-bar {
        margin-top: 30px;
        padding: 30px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item {
        justify-content: flex-start;
    }

    .about-grid {
        flex-direction: column;
    }

    .curriculum-container {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .section {
        padding: 50px 0;
    }

    .row {
        flex-direction: column;
        margin: 0;
    }

    .col {
        padding: 15px 0;
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .logo img {
        height: 100px;
    }

    .btn-register {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-item div {
        text-align: center;
    }
}

/* === HOMEPAGE INQUIRY POPUP === */
.inquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 13, 17, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    /* Hidden by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.inquiry-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.inquiry-popup-card {
    background: #fff;
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(50px);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.inquiry-popup-overlay.active .inquiry-popup-card {
    transform: translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
    padding: 40px;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--accent-color);
}

.popup-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.popup-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.close-popup-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-popup-btn:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

.popup-body {
    padding: 40px;
}

.popup-form-group {
    margin-bottom: 20px;
}

.popup-form-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.popup-form-group .form-control {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s;
}

.popup-form-group .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.popup-submit-btn {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.popup-submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .popup-header {
        padding: 30px 20px;
    }

    .popup-body {
        padding: 30px 20px;
    }
}