/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --primary-light: #1a2a4a;
    --primary-dark: #050d1a;
    --gold: #d4a843;
    --gold-light: #e8c96e;
    --gold-dark: #b8922e;
    --white: #ffffff;
    --gray: #f5f6fa;
    --text: #2d3748;
    --text-light: #718096;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--gold);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .contact-info a {
    color: var(--white);
    margin-right: 25px;
    transition: 0.3s;
}

.top-bar .contact-info a:hover {
    color: var(--gold);
}

.top-bar .contact-info i {
    margin-right: 8px;
    color: var(--gold);
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ========== HEADER ========== */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
}

.logo-v {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-name span {
    color: var(--gold);
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu ul li a {
    padding: 8px 18px;
    font-weight: 600;
    color: var(--text);
    border-radius: 5px;
    transition: 0.3s;
    font-size: 14px;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    background: var(--primary);
    color: var(--white);
}

.nav-menu ul li a.active {
    background: var(--gold);
    color: var(--primary);
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(10,22,40,0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--primary);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,168,67,0.4);
}

.btn-large {
    padding: 16px 45px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.header-cta .btn {
    padding: 10px 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    background: rgba(212,168,67,0.2);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 350px;
    border-top: 4px solid var(--gold);
}

.hero-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.hero-card p {
    color: rgba(255,255,255,0.7);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(212,168,67,0.1);
    color: var(--gold);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 17px;
}

/* ========== SERVICES ========== */
.services {
    padding: 80px 0;
    background: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(10,22,40,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 24px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ========== WHY CHOOSE ========== */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255,255,255,0.6);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-top: 5px;
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    padding: 80px 0;
    background: var(--gray);
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.founder-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.founder-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--primary);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 25px 30px 30px;
    text-align: center;
}

.founder-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.founder-info .designation {
    display: inline-block;
    background: rgba(212,168,67,0.1);
    color: var(--gold);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.founder-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.founder-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.founder-social a {
    width: 38px;
    height: 38px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.3s;
}

.founder-social a:hover {
    background: var(--gold);
    color: var(--white);
}

/* ========== OFFICE GALLERY ========== */
.office-section {
    padding: 80px 0;
    background: var(--white);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.office-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray);
}

.office-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.office-item:hover img {
    transform: scale(1.05);
}

.office-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(10,22,40,0.85);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 80px 0;
    background: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.team-image {
    height: 220px;
    overflow: hidden;
    background: var(--primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.team-card:hover .team-image img {
    transform: scale(1.03);
}

.team-info {
    padding: 20px 25px 25px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.team-members {
    display: inline-block;
    background: rgba(212,168,67,0.1);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== MISSION VISION ========== */
.mission-vision {
    padding: 60px 0 80px;
    background: var(--gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mv-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.mv-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ========== SERVICES DETAIL ========== */
.services-detail {
    padding: 80px 0;
}

.services-grid-detail {
    display: grid;
    gap: 30px;
}

.service-detail-card {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.service-detail-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(212,168,67,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 28px;
    color: var(--gold);
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-detail-content ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-detail-content ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.service-detail-content ul li i {
    color: var(--gold);
    margin-right: 5px;
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(212,168,67,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.contact-item a {
    color: var(--text-light);
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-wrapper {
    background: var(--gray);
    padding: 40px;
    border-radius: 12px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.success-message i {
    font-size: 40px;
    margin-bottom: 10px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* ========== MAP ========== */
.map-section {
    padding: 0 0 80px;
}

.map-section h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .contact-info a {
        font-size: 12px;
        margin-right: 12px;
    }
    .social-icons {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 5px;
    }
    .nav-menu ul li a {
        display: block;
        padding: 12px 18px;
    }
    .header-cta {
        display: none;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 16px;
        margin: 0 auto 25px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    .hero-image {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .founder-grid {
        grid-template-columns: 1fr;
    }
    .office-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }
    .service-detail-icon {
        margin: 0 auto;
    }
    .service-detail-content ul {
        justify-content: center;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .page-header h1 {
        font-size: 30px;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
    .founder-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .office-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    .stat {
        align-items: center;
    }
}