/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #b8860b;
    --gold-dark: #8b6508;
    --gold-light: #d4af37;
    --gold-soft: #f5e6ca;
    --black: #000000;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --off-white: #fefdf9;
    --gray-border: #e8e6df;
    
    /* PREMIUM FONT STACK */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-serif-heading: 'Cormorant', 'Playfair Display', 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans-light: 'Montserrat', 'Inter', sans-serif;
    --font-elegant: 'Cormorant SC', 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-gold: 0 4px 20px rgba(184,134,11,0.15);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--charcoal);
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
}

/* ---------- TYPOGRAPHY - PREMIUM STYLES ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    font-family: var(--font-serif-heading);
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    position: relative;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.005em;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: var(--font-sans);
}

.gold {
    color: var(--gold-primary);
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-family: var(--font-sans);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1rem auto 0;
}

/* Premium text selection */
::selection {
    background: var(--gold-primary);
    color: white;
}

::-moz-selection {
    background: var(--gold-primary);
    color: white;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184,134,11,0.25);
}

/* ---------- NAVIGATION ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

.navbar:not(.scrolled) .logo,
.navbar.scrolled .logo {
    background: transparent;
    padding: 0;
    width: 90px;
    height: 90px;
    box-shadow: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

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

.navbar.scrolled .nav-links a {
    color: #333333;
}

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

.navbar:not(.scrolled) .nav-links a {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.navbar:not(.scrolled) .nav-links a:hover {
    color: var(--gold-primary);
    text-shadow: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar:not(.scrolled) .nav-toggle {
    color: white;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        box-shadow: var(--shadow-md);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        color: #2c2c2c !important;
        text-shadow: none !important;
    }
    .logo {
        width: 65px;
        height: 65px;
    }
}

/* ---------- HERO SLIDER SECTION ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
    max-width: 950px;
    margin: 0 auto;
}

.hero-text {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-text.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.hero-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    font-weight: 600;
}

.subheadline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    font-family: var(--font-sans-light);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold-primary);
    width: 28px;
    border-radius: 5px;
}

.slider-nav-btn {
    background: rgba(0,0,0,0.4);
    border: none;
    color: var(--gold-primary);
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn:hover {
    background: var(--gold-primary);
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .subheadline {
        font-size: 1rem;
    }
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ---------- EXECUTIVE SECTION - REDUCED PADDING ---------- */
.executive {
    padding: 4rem 0;
    background: var(--white);
}

.executive-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #2b2b2b;
    line-height: 1.6;
    font-weight: 400;
}

.ant-emblem {
    background: var(--gold-soft);
    padding: 1.5rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    border-left: 4px solid var(--gold-primary);
}

.ant-emblem p {
    font-size: 0.95rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 0;
}

.ant-image {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .executive {
        padding: 3rem 0;
    }
    .ant-emblem {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ant-image {
        width: 100%;
        max-width: 130px;
        height: auto;
    }
}

/* ---------- WHY THE ANT HEADER ---------- */
.why-ant-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.3rem;
}

.why-ant-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: transparent;
    padding: 6px;
    border-radius: 10px;
}

.why-ant-header .section-tag {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-ant-header {
        flex-direction: column;
    }
    .why-ant-logo {
        width: 55px;
        height: 55px;
    }
}

/* ---------- VISION & MISSION - REDUCED PADDING ---------- */
.vision-mission {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #fafaf7, #ffffff);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vm-card {
    padding: 2rem;
    border-radius: 20px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.vm-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.vision {
    background: var(--black);
    color: white;
}

.mission {
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .vision-mission {
        padding: 2.5rem 0;
    }
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .vm-card {
        padding: 1.5rem;
    }
}

/* ---------- CORE VALUES - REDUCED PADDING ---------- */
.values {
    padding: 4rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.value-card {
    background: white;
    padding: 1.8rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 768px) {
    .values {
        padding: 3rem 0;
    }
}

/* ---------- GOVERNANCE - REDUCED PADDING ---------- */
.governance {
    padding: 4rem 0;
    background: var(--black);
    color: white;
}

.governance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.governance-content .section-tag {
    color: var(--gold-primary);
}

.governance-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.governance-content p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.gov-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 3px solid var(--gold-primary);
}

.gov-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.gov-item p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .governance {
        padding: 3rem 0;
    }
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ---------- PORTFOLIO - REDUCED PADDING ---------- */
.portfolio {
    padding: 4rem 0;
    background: var(--off-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.portfolio-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.portfolio-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-soft), #e8dcc8);
    border-radius: 14px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.portfolio-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .portfolio {
        padding: 3rem 0;
    }
}

/* ---------- PHILOSOPHY - REDUCED PADDING ---------- */
.philosophy {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff, #f5f0e6);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.philosophy-item {
    background: white;
    padding: 1.6rem;
    border-radius: 20px;
    border-bottom: 3px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.philosophy-item h3 {
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.philosophy-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .philosophy {
        padding: 3rem 0;
    }
}

/* ---------- CONTACT SECTION - REDUCED PADDING ---------- */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafaf7, #ffffff);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-info > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

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

.contact-item i {
    width: 42px;
    height: 42px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
}

.contact-item a,
.contact-item p {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 0.75rem 0.4rem;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    border: none;
    border-bottom: 2px solid var(--gray-border);
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--gold-primary);
}

.form-group label {
    position: absolute;
    left: 0.75rem;
    top: 0.85rem;
    font-size: 0.9rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.form-group input:focus ~ label,
.form-group input.filled ~ label,
.form-group textarea:focus ~ label,
.form-group textarea.filled ~ label,
.form-group select:focus ~ label,
.form-group select.filled ~ label {
    top: -0.5rem;
    font-size: 0.65rem;
    color: var(--gold-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: transparent;
}

.form-group select option {
    color: var(--charcoal);
}

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

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border,
.form-group select:focus ~ .focus-border {
    width: 100%;
}

.form-status {
    margin-top: 0;
}

.status-success,
.status-error {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
}

.status-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.status-error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.9rem 2rem;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit i {
    font-size: 0.85rem;
}

.signature-block {
    background: var(--off-white);
    padding: 1.2rem;
    border-radius: 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
    border: 1px solid var(--gray-border);
    margin-top: 1.5rem;
}

.signature-line {
    color: var(--gold-primary);
    margin-bottom: 0.6rem;
}

.signature-tagline {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-border);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-family: var(--font-sans);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .contact {
        padding: 3rem 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-item {
        gap: 0.75rem;
    }
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black);
    color: #999;
    text-align: center;
    padding: 1.8rem 0;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

/* ---------- ANIMATIONS ---------- */
[data-aos] {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].aos-animate {
    opacity: 1;
}