/* Ameera Constructive Minds - Global Styles */

:root {
    --primary: #0047AB; /* Corporate Blue */
    --gold: #D4AF37; /* Gold Accent */
    --gold-hover: #B8860B; 
    --dark: #121212;
    --dark-grey: #1a1a1a;
    --light: #f4f4f4;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --glass: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .section-subtitle {
    font-family: 'Playfair Display', serif;
}

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

/* Header */
header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    background: url('hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.7) 20%, rgba(18, 18, 18, 0.3) 70%, rgba(0, 71, 171, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Page Intro (About, Projects, Contact) */
.page-intro {
    height: 400px;
    background: var(--dark-grey);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-intro h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin: 0;
}

.page-intro .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--gold);
    display: block;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 300;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #0056cc;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}

.btn-gold:hover {
    background: var(--gold-hover);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-large {
    padding: 15px 35px;
    font-size: 14px;
}

.hero-btns .btn {
    margin-right: 15px;
}

/* Stats */
.stats {
    background: var(--dark-grey);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.stat-item p {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 100px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.gst-box {
    background: var(--glass);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.gst-box strong {
    color: var(--gold);
    display: block;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Projects */
.projects {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.project-card {
    background: var(--dark-grey);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.project-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.project-img-wrapper:hover img {
    transform: scale(1.1);
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.project-card:hover .blur-overlay {
    background: rgba(18, 18, 18, 0.2);
    backdrop-filter: blur(4px);
}

.blur-overlay p {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.btn-white {
    background: white;
    color: var(--dark);
    font-size: 12px;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.project-cta {
    text-align: center;
    margin-top: 40px;
}

.project-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
    background: linear-gradient(to left, #121212, #1a1a1a);
}

.leader-placeholder {
    width: 100%;
    height: 480px;
    background: var(--dark-grey);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-placeholder span {
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.leader-details h3 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: var(--gold);
}

.leader-details p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.method {
    display: flex;
    margin-bottom: 30px;
}

.method h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-form-container {
    background: var(--dark-grey);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    outline: none;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--gold);
}

.btn-full {
    width: 100%;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        height: 70px;
    }

    .logo img {
        height: 35px;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block !important;
        cursor: pointer;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark);
        transition: 0.5s;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .header-cta {
        display: none;
    }

    /* Hero & Page Intro */
    .hero h1, .page-intro h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        font-size: 1rem;
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    /* Grids */
    .grid, .about .grid, .contact .grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats .container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider {
        display: none;
    }

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

    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 2rem;
    }

    .leadership-image {
        order: -1;
    }

    .leader-placeholder {
        height: 350px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}
