:root {
    --bg-color: #0a0e17;
    /* Deep Luxury Navy/Charcoal */
    --card-bg: #161b28;
    /* Lighter Navy for cards */
    --text-color: #B0B3B8;
    /* Soft Light Gray */
    --heading-color: #ffffff;
    --accent-color: #C8A97E;
    /* Premium Warmer Gold */
    --accent-hover: #E0C088;
    --secondary-accent: #45a29e;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--heading-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Hero */
.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #161b28 0%, #0a0e17 100%);
    overflow: hidden;
    padding-top: 120px;
    /* Space for fixed navbar if needed */
    padding-bottom: 4rem;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Unsplash Corporate Image */
    background-image: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    /* Increased z-index */
    background: linear-gradient(to right, #ffffff, #e7d8bc);
    /* White navbar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b0c10;
    /* Dark text for white navbar */
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
    padding-bottom: 1rem;
    /* Bridge the gap for hover */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(11, 12, 16, 0.95);
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 0;
    border-radius: 4px;
    top: 100%;
    left: 0;
    list-style: none;
    border: 1px solid rgba(200, 169, 126, 0.2);
    margin-top: 0;
    /* Removed gap */
}

/* Arrow/Triangle at the top */
.dropdown-content::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent rgba(197, 160, 95, 0.2) transparent;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    padding: 12px 20px;
    display: block;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    text-transform: none;
    color: var(--accent-hover);
    /* Fix visibility on dark dropdown */
    /* Override uppercase if needed, or keep it */
}

.dropdown-content li:last-child a {
    border-bottom: none;
}

.dropdown-content li a:hover {
    background-color: rgba(197, 160, 95, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
    transition: all 0.3s ease;
}

.nav-links li:hover .dropdown-content {
    display: block;
}

/* Page Header (for sub-pages) */
.page-header {
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #161b28 0%, #0a0e17 100%);
    overflow: hidden;
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Unsplash Corporate Image */
    background-image: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #C8A97E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    color: #ccc;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #ffffff;
    color: var(--accent-color);
    border-color: #ffffff;
}

/* Sections Common */
section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #cfcfcf;
    margin-top: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    text-align: center;
    background: var(--bg-color);
}

.intro-section h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.9;
}

/* Services Section */
.services-section {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--card-bg);
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.read-more {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: auto;
    display: inline-block;
}

/* Process Section */
.process-section {
    background-color: var(--bg-color);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    flex: 1 1 200px;
    max-width: 220px;
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid rgba(200, 169, 126, 0.1);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--accent-color);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(200, 169, 126, 0.2);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step p {
    font-size: 0.85rem;
    color: #aaa;
}

/* Industries Section */
/* Industries Section */
.industries-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 0;
}

.industries-section h2 {
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 2rem;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.industries-list span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    color: #e0e0e0;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.industries-list span:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    background-color: var(--card-bg);
}

.about-section h2,
.about-section>.container>h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-section>.container>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: #ccc;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    counter-reset: reason-counter;
}

.reason {
    text-align: left;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-color);
    position: relative;
    transition: var(--transition);
}

.reason::before {
    counter-increment: reason-counter;
    content: "0" counter(reason-counter);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-serif);
    line-height: 1;
    pointer-events: none;
}

.reason:hover {
    transform: translateY(-7px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 169, 126, 0.3);
}

.reason h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.reason p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.faq-item p {
    font-size: 0.9rem;
    color: #888;
}

/* Footer */
footer {
    padding: 6rem 5%;
    background: linear-gradient(to right, #ffffff, #e7d8bc);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    /* Removed filter to show original logo colors */
}

.footer-content p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin: 2.5rem 0;
}

.contact-info p {
    color: #1f2833;
    margin-bottom: 0.8rem;
}


/* Expertise Section Cards */
/* About Page Specifics */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-highlights-column {
    background: linear-gradient(rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.9)), url('assets/luxury_office.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    /* transition: var(--transition); */
}

/* .about-highlights-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
} */

.about-highlights-column h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.about-highlights-column ul {
    list-style: none;
}

.about-highlights-column ul li {
    margin-bottom: 1rem;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.about-highlights-column ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Premium Expertise Grid (Matches Homepage Reasons) */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    counter-reset: exp-counter;
}

.expertise-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-color);
    padding: 2.5rem 2rem;
    border-radius: 0;
    /* Sharp corners for corporate look */
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    counter-increment: exp-counter;
    content: "0" counter(exp-counter);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-serif);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-7px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 169, 126, 0.3);
}

.expertise-card:hover::before {
    color: rgba(200, 169, 126, 0.05);
    transform: scale(1.1);
}

.expertise-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    z-index: 1;
    line-height: 1.4;
}

/* Insights Section */

/* Business Consulting Page */
.consulting-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    background-color: #20BA56;
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: white;
}
/* Contact Page Redesign */
.contact-section {
    position: relative;
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form-container {
    background: linear-gradient(145deg, rgba(22, 27, 40, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.contact-form h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #ccc;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #0b0c10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(11, 12, 16, 0.8);
    box-shadow: 0 0 15px rgba(200, 169, 126, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C8A97E%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8rem auto;
}

.submit-btn {
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
}

.contact-info-details {
    padding-top: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    border-left-color: var(--accent-color);
    padding-left: 2rem;
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

