/* project-root/assets/css/style.css */

/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --primary: #1a2a4f;      /* Royal Navy / Deep Blue */
    --primary-dark: #0f1a33;
    --primary-light: #2a3d6e;
    --secondary: #2d2d2d;     /* Charcoal */
    --accent: #b8860b;         /* Bronze / Copper */
    --accent-light: #d4a373;
    --background: #faf7f2;     /* Cream / Soft Sandstone */
    --background-light: #fffefc;
    --gray-light: #e8e4db;
    --gray-border: #ddd8ce;
    --text-dark: #1e1e1e;
    --text-light: #666;
    --white: #ffffff;
    --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 60px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Utility Classes
   ======================================== */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-light-cream {
    background-color: var(--background-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header .subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    padding: 14px 32px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--primary);
}

/* ========================================
   Premium Header Styles
   ======================================== */

/* Header Top Bar */
.header-top {
    background: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.header-contact-info a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
}

.header-contact-info a:hover {
    color: var(--accent);
}

.header-contact-info i {
    margin-right: 8px;
    color: var(--accent);
}

.header-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.header-social a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Main Navigation */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.site-header.scrolled .header-top {
    display: none;
}

.navbar {
    padding: 12px 0;
}

/* Brand / Logo Styles - Proper Sizing */
.navbar-brand {
    padding: 0;
    margin: 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Scroll effect - shrink logo on scroll */
.site-header.scrolled .brand-logo {
    height: 38px;
    max-height: 38px;
}

.site-header.scrolled .brand-name {
    font-size: 16px;
}

.site-header.scrolled .navbar {
    padding: 6px 0;
}

/* Navigation Links */
.navbar-nav .nav-item {
    margin: 0 2px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px;
    transition: var(--transition);
    font-size: 14px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link i {
    font-size: 14px;
    color: var(--accent);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    margin-top: 10px;
    animation: fadeInDown 0.3s ease;
    min-width: 220px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(184,134,11,0.1);
    color: var(--accent);
    padding-left: 26px;
}

.dropdown-divider {
    margin: 6px 0;
    border-color: var(--gray-border);
}

/* CTA Button */
.nav-cta .btn {
    padding: 8px 22px;
    margin-left: 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-size: 13px;
}

.nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.nav-cta .btn i {
    margin-right: 6px;
    font-size: 12px;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--background);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 22px;
    height: 22px;
}

/* Hover effect for navbar */
.navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
}

/* Active page indicator */
.navbar-nav .nav-link.active {
    color: var(--accent);
    background: rgba(184,134,11,0.08);
    border-radius: 8px;
}

.navbar-nav .nav-link.active i {
    color: var(--accent);
}

/* ========================================
   Mobile Responsive Header Styles
   ======================================== */

@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-cta .btn {
        padding: 6px 18px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .header-top {
        display: none;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .brand-logo {
        height: 42px;
        max-height: 42px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-tagline {
        font-size: 7px;
    }
    
    .brand-wrapper {
        gap: 10px;
    }
    
    .navbar-nav {
        padding: 15px 0 10px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .navbar-nav .nav-item {
        margin: 3px 0;
    }
    
    .navbar-nav .nav-link {
        display: inline-flex;
        width: 100%;
        padding: 10px 15px;
        border-radius: 10px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(184,134,11,0.1);
        border-radius: 10px;
    }
    
    .dropdown-menu {
        background: var(--background-light);
        margin-left: 25px;
        margin-top: 5px;
        box-shadow: none;
        border-radius: 10px;
        border: 1px solid var(--gray-border);
        width: calc(100% - 25px);
    }
    
    .dropdown-item {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .nav-cta {
        text-align: center;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .nav-cta .btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        height: 35px;
        max-height: 35px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .brand-tagline {
        font-size: 6px;
        letter-spacing: 0.5px;
    }
    
    .brand-wrapper {
        gap: 8px;
    }
    
    .navbar-toggler {
        padding: 6px 8px;
    }
    
    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }
    
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .navbar-nav .nav-link i {
        font-size: 12px;
        width: 20px;
    }
    
    .dropdown-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .nav-cta .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Small devices (portrait phones) */
@media (max-width: 380px) {
    .brand-logo {
        height: 30px;
        max-height: 30px;
    }
    
    .brand-name {
        font-size: 12px;
    }
    
    .brand-tagline {
        font-size: 5px;
    }
    
    .brand-wrapper {
        gap: 6px;
    }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .navbar-nav {
        max-height: 60vh;
    }
    
    .navbar-nav .nav-link {
        padding: 6px 12px;
    }
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}

.hero-buttons .btn {
    margin: 0 8px;
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        margin: 8px;
        display: block;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-content ul li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 14px;
}

.service-content ul li:before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
}

/* ========================================
   Why Choose Us Cards
   ======================================== */
.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   Project Cards
   ======================================== */
.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,42,79,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-view-project {
    background: var(--accent);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.btn-view-project:hover {
    background: var(--white);
    color: var(--primary);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.project-location {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 10px;
}

/* ========================================
   Process Steps
   ======================================== */
.process-step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content i {
    font-size: 36px;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ========================================
   Page Banner
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 36px;
    }
}

/* ========================================
   About Page
   ======================================== */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 18px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.mission-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.advantage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.advantage-card i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(184,134,11,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 24px;
    color: var(--accent);
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

/* ========================================
   Floating Buttons
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.call-float a {
    background: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.call-float a:hover {
    transform: scale(1.1);
}

/* ========================================
   Modal Styling
   ======================================== */
.modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.modal-image {
    height: 100%;
    min-height: 500px;
}

.modal-image img {
    object-fit: cover;
}

.modal-form-wrapper {
    padding: 40px;
    position: relative;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--accent);
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* ========================================
   Projects Page - Premium Filter & Popup
   ======================================== */

/* Premium Filter Buttons */
.project-filters-premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 20px;
}

.filter-btn-premium {
    background: transparent;
    border: 1px solid var(--gray-border);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn-premium i {
    font-size: 14px;
}

.filter-btn-premium:hover,
.filter-btn-premium.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Project Tags */
.project-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.project-tag.featured {
    background: var(--accent);
    color: var(--white);
}

.project-tag.premium {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: var(--white);
}

.project-tag.eco {
    background: #2e7d32;
    color: var(--white);
}

.project-tag.innovative {
    background: #1565c0;
    color: var(--white);
}

/* Project Categories Badges */
.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.cat-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.cat-badge.residential {
    background: rgba(26,42,79,0.1);
    color: var(--primary);
}

.cat-badge.duplex {
    background: rgba(184,134,11,0.1);
    color: var(--accent);
}

.cat-badge.commercial {
    background: rgba(46,125,50,0.1);
    color: #2e7d32;
}

.cat-badge.renovation {
    background: rgba(21,101,192,0.1);
    color: #1565c0;
}

.cat-badge.interior {
    background: rgba(184,134,11,0.1);
    color: var(--accent);
}

/* Project Meta Info */
.project-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 13px;
    color: var(--text-light);
}

.project-meta i {
    color: var(--accent);
    margin-right: 5px;
    width: 14px;
}

.project-client, .project-budget {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Enhanced Modal/Popup Styles */
.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    background: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-close-modal:hover {
    background: var(--accent);
    color: var(--white);
}

.modal-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-wrapper {
    padding: 30px;
    height: 100%;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-info-wrapper h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.project-location-modal {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 20px;
}

.project-location-modal i {
    margin-right: 5px;
}

.project-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--background);
    border-radius: 16px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 4px;
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.project-description h4,
.project-features h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary);
}

.project-description p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.project-features ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 13px;
}

.project-features ul li i {
    color: var(--accent);
    width: 18px;
}

.modal-cta {
    margin-top: 20px;
}

/* Animation for Project Items */
.project-item {
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-item:nth-child(1) { animation-delay: 0.1s; }
.project-item:nth-child(2) { animation-delay: 0.2s; }
.project-item:nth-child(3) { animation-delay: 0.3s; }
.project-item:nth-child(4) { animation-delay: 0.4s; }
.project-item:nth-child(5) { animation-delay: 0.5s; }
.project-item:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 768px) {
    .hero-slider,
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .modal-form-wrapper {
        padding: 30px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .stats-section .stat-number {
        font-size: 36px;
    }
    
    .project-filters-premium {
        gap: 8px;
    }
    
    .filter-btn-premium {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .modal-image-wrapper {
        min-height: 250px;
    }
    
    .modal-info-wrapper {
        padding: 20px;
        max-height: 50vh;
    }
    
    .modal-info-wrapper h2 {
        font-size: 20px;
    }
    
    .project-specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .filter-btn-premium {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .filter-btn-premium i {
        font-size: 10px;
    }
    
    .project-tag {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .cat-badge {
        font-size: 8px;
        padding: 3px 8px;
    }
    
    .btn-close-modal {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}