/* Global Styles */
:root {
    --primary-color: #D4AF37;
    /* Elegant Gold */
    --primary-light: #E5C565;
    --primary-dark: #A68826;
    --secondary-color: #2C2C2C;
    /* Soft Charcoal */
    --accent-color: #f4f1ea;
    /* Warm Beige Background */
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --bg-light: #F9F8F6;
    /* Off-white for sections */
    --bg-dark: #1C1C1C;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s ease;
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    /* Softer, larger shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-green {
    color: var(--primary-color) !important;
}

/* Overriding old utility name */

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 0;
    /* Minimalist sharp corners */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    /* Minimal separator */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 30px;
    border-radius: 0;
}

.nav-btn:hover {
    background: var(--secondary-color);
}

.nav-btn::after {
    display: none;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('images/Background.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(44, 44, 44, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    color: white;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 400;
    /* Lighter weight for elegance */
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.hero h1 span {
    font-style: italic;
    color: var(--primary-light);
    font-weight: 700;
    display: block;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 0;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle gold border */
}

.hero-form-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.full-col {
    grid-column: span 2;
}

textarea.form-input {
    resize: none;
    height: 100px;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img img {
    border-radius: 0;
    box-shadow: 20px 20px 0 var(--accent-color);
    /* Offset solid shadow */
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 15px;
}

/* Industries / Sectors */
.industries-section {
    padding: 100px 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 50px;
}

.industry-item {
    padding: 50px 30px;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    transition: var(--transition);
    background: white;
}

.industry-item:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 2.5rem;
    color: #d1d5db;
    /* Subtle grey initially */
    margin-bottom: 25px;
    transition: var(--transition);
}

.industry-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.industry-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    text-align: left;
    /* Cleaner look */
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
    font-size: 2.2rem;
    margin: 0 0 20px;
    padding: 0;
}

.service-card:hover .icon-circle {
    background: transparent;
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
}

.read-more:hover {
    color: var(--primary-color);
    border-bottom-color: transparent;
}

/* Gallery - Cleaner Grid */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Use Grid instead of Flex Scroll for cleaner gallery */
    gap: 20px;
    padding: 20px 0;
    overflow: visible;
}

.gallery-item {
    flex: none;
    height: 250px;
    box-shadow: none;
}

.gallery-item:hover {
    transform: none;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern/overlay for process */
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.process-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.process-step {
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 400;
}

.process-step p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Footer */
/* Footer redesign */
.footer {
    background: #111;
    color: #888;
    padding: 100px 0 30px;
    font-size: 0.9rem;
    border-top: 3px solid var(--primary-color);
    /* Gold accent top */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    /* More breathing room */
    margin-bottom: 80px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 35px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.footer-col ul li {
    margin-bottom: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-row i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1rem;
}

.contact-row span,
.contact-row a {
    color: #aaa;
    transition: var(--transition);
    line-height: 1.6;
}

.contact-row a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-form-card {
        margin-top: 40px;
    }

    .navbar .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .navbar .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}