/* Elite Developments Brickwork Specialists Ltd - Custom Styles */

:root {
    --bg-dark: #0e141f; /* Standard dark background */
    --bg-darker: #080c12; /* Even darker for deep elements */
    --accent: #ff9e1f; /* Primary accent color (Orange/Gold) */
    --accent-hover: #e68a00;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.3s ease-in-out;
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa; /* Light background for non-dark sections */
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: none;
    transition: var(--transition);
    font-weight: 600;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
}

/* Navbar */
.logo-icon {
    transition: var(--transition);
}

.navbar-brand:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover, 
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 12, 18, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Stats Bar */
.stats-bar {
    background-color: var(--accent);
    color: white;
    padding: 30px 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

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

/* Services Cards */
.card-service {
    border: none;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    background: white;
    border-top: 5px solid transparent;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent);
}

.card-service i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
}

/* Trusted Section */
.trusted-section {
    background-color: var(--bg-dark);
    color: white;
    padding: 120px 0;
}

.trusted-img-container {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 20px 30px;
    z-index: 3;
}

/* Projects Gallery */
.project-item {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 158, 31, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

/* Footer Colors */
.tracking-wider {
    letter-spacing: 2px;
}

.text-light-gray {
    color: var(--text-muted);
}

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

.social-icon:hover {
    background-color: var(--accent);
    border-color: var(--accent) !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
