/* Base & Typography */
:root {
    --bg-dark: #1e1e1e;
    --bg-darker: #151515;
    --bg-card: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #d4bc8b;
    /* Gold/Beige */
    --accent-hover: #e0cca4;
    --border-color: #333333;
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
    animation: fadeInPage 0.6s ease-out;
    /* Smooth Fade In on Load */
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Class to apply via JS before leaving the page */
body.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.max-width {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--accent);
}

.nav-list .btn-nav {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}

.nav-list .btn-nav:hover {
    background-color: var(--accent);
    color: var(--bg-darker);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/main.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-title-main {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-subtitle-main {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-darker);
    transform: translateY(-2px);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-main {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Trustpilot Strip */
.trustpilot-section {
    background-color: #4a4a44;
    padding: 40px 0;
}

.trustpilot-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.star-icon,
.stars {
    color: #00b67a;
    /* Trustpilot Green */
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.rating-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--bg-card);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

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

.mission-image img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg-card);
    padding: 25px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-card h3 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 10px;
}

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-img {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.service-card-img:hover img {
    opacity: 1;
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #2f2f2f;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 1;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

/* Handling Grid */
.handling-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.handling-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.handle-item {
    background: var(--bg-card);
    padding: 15px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
}

.handle-item img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: block;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-img-placeholder {
    width: 250px;
    height: 250px;
    background: #333;
    color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    overflow: hidden;
    border: 3px solid var(--accent);
    position: relative;
    flex-shrink: 0;
}

.team-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.team-img-placeholder img[alt="Asif Siddique"],
.team-img-placeholder img[src="/images/asif-siddique.png"] {
    object-position: 50% 0%;
}

.team-card h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: #4a4a44;
    text-align: center;
}

.cta-banner h2 {
    color: var(--accent);
    margin-bottom: 15px;
}

.cta-banner p {
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.info-item h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.sub-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #666;
}

.hours-box {
    background: var(--bg-card);
    padding: 25px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}

.hours-box h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1rem;
}

.hours-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Form */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: var(--bg-darker);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--accent-hover);
}

/* CTA Strip */
.cta-strip {
    background: #1a1a1a;
    padding: 60px 0;
    border-top: 1px solid #333;
}

.cta-strip h2 {
    color: var(--accent);
    margin-bottom: 10px;
}

.cta-strip p {
    color: #888;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

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

.icon-text {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-cards,
    .about-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .handling-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container,
    .mission-split {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {

    .hero-cards,
    .about-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .handling-grid {
        grid-template-columns: 1fr;
    }

    .nav-list {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: #1a1a1a;
    padding: 100px 0;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-description-large {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--bg-darker);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Stats Section */
.stats-section {
    background: #33302C;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #E0D9C5;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #A3A3A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
}
