@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');


:root {
    --bg-primary: #080808;
    --bg-secondary: #111111;
    --bg-card: #181818;
    --bg-input: #1f1f1f;
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #FFD700 100%);
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-glow-strong: rgba(212, 175, 55, 0.6);
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-hover: rgba(212, 175, 55, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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


::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-title-wrapper p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0 auto;
}


.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow-strong);
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FFF8DC 100%);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-glow);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold-primary);
}

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


.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}


.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.85) 80%, rgba(8,8,8,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 1.5rem;
    margin-top: 4rem;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


.services-section {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-card);
    border: var(--border-gold);
    border-radius: 6px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--gold-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: 0 0 15px var(--gold-glow-strong);
}

.service-icon-box svg {
    width: 32px;
    height: 32px;
    fill: var(--gold-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box svg {
    fill: #000000;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}


.about-section {
    background-color: var(--bg-primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: var(--border-gold);
}

.about-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.about-img-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(8, 8, 8, 0.9);
    border: var(--border-gold);
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    text-align: center;
}

.about-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-desc {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.director-card {
    background-color: var(--bg-secondary);
    border-left: 3px solid var(--gold-primary);
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    border-radius: 0 6px 6px 0;
}

.director-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.director-name {
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.director-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.cta-banner {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}


.contact-section {
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: var(--border-gold);
    padding: 2rem;
    border-radius: 6px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-primary);
}

.contact-card-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-card-details a:hover {
    color: var(--gold-primary);
}

.social-links-box {
    margin-top: 1rem;
}

.social-links-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.social-icon:hover svg {
    fill: #000000;
}


.contact-form-container {
    background-color: var(--bg-card);
    border: var(--border-gold);
    padding: 3.5rem;
    border-radius: 6px;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    border-radius: 4px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}


.map-section {
    background-color: var(--bg-secondary);
    padding: 0;
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
}

.map-wrapper {
    height: 450px;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(90%);
}


footer {
    background-color: #030303;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background: var(--gold-gradient);
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-col.about-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-col.about-col .footer-logo img {
    height: 50px;
}

.footer-col.about-col .footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-contact-item a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.inner-hero {
    position: relative;
    padding: 8rem 0 4rem 0;
    background: linear-gradient(rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.95)), url('images/hero-bg.jpg') no-repeat center center/cover;
    border-bottom: var(--border-gold);
    text-align: center;
}

.inner-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a:hover {
    color: var(--gold-primary);
}

.breadcrumbs span {
    color: var(--gold-primary);
}


.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}


@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-box img {
        height: 380px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-cta {
        display: none; 
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        font-size: 1.1rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-title-wrapper h2 {
        font-size: 2rem;
    }
    .contact-form-container {
        padding: 2rem;
    }
}

