/* ====== DESIGN SYSTEM & VARIABLES ====== */
:root {
    --bg-color: #050505;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #121212;
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
    --accent-color: #EAB308;
    /* Dynamic Gold */
    --accent-hover: #FDE047;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ====== TYPOGRAPHY & UTILITIES ====== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 4rem;
}

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

.section-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    display: inline-block;
    background: rgba(234, 179, 8, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* ====== BUTTONS ====== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #ca8a04);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(234, 179, 8, 0.25);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 55px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--accent-color);
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

/* ====== HERO SLIDER ====== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.6) 40%, rgba(5, 5, 5, 0.2) 100%);
    z-index: 3;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    transition: opacity 1s ease, transform 6s linear;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding-top: 13rem;
}

.hero-content .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hf-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.slider-controls {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: black;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-color);
}

/* ====== DETAILED ABOUT ====== */
.about-section {
    padding: 10rem 0;
    background: var(--bg-tertiary);
    position: relative;
}

.flex-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-images {
    position: relative;
    flex: 1;
}

.img-main img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    height: 600px;
}

.img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.img-float h2 {
    font-size: 4rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.img-float p {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.about-text {
    flex: 1;
}

.highlight-p {
    font-size: 1.35rem;
    color: white;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    display: flex;
    gap: 1.5rem;
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(234, 179, 8, 0.3);
}

.vm-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.vm-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

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

.stats-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-box {
    text-align: left;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
}

.stat-txt {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ====== SERVICES SECTION (Redefined for style) ====== */
.services-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: black;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    color: var(--text-secondary);
}

.service-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* ====== PORTFOLIO SHOWCASE ====== */
.portfolio-section {
    padding: 10rem 0;
    background: var(--bg-color);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 4rem;
}

.portfolio-header p {
    flex: 1;
    max-width: 600px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.project-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-tall {
    grid-row: span 2;
}

.project-wide {
    grid-column: span 2;
}

.project-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.project-item:hover::before {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(234, 179, 8, 0.8), transparent);
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.project-info p {
    color: #f0f0f0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== CLIENTS / TESTIMONIALS ====== */
.clients-section {
    padding: 10rem 0;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 6rem;
    color: rgba(234, 179, 8, 0.1);
    z-index: 0;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #ddd;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.client-details h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.2rem;
}

.client-details p {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Marquee */
.trusted-by {
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-by p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-flex;
    animation: scrollMarquee 30s linear infinite;
    gap: 4rem;
    padding-right: 4rem;
}

.marquee-content span {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.marquee-content span:hover {
    color: var(--accent-color);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ====== CONTACT PAGE STYLES ====== */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-tertiary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--glass-bg);
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-social {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.contact-social h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Form Panel */
.contact-form-panel {
    padding: 2.5rem;
    border-radius: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group select option {
    background: #111;
    color: white;
}

.form-status {
    margin-top: 2rem;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    padding: 1rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Map Section */
.map-section {
    padding-bottom: 8rem;
    background: var(--bg-tertiary);
}

.map-container {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    padding: 10px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form-panel {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 350px;
    }
}

/* Client Row Layout */
.client-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.client-row {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.client-row:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.client-image-box {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.client-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.client-row:hover .client-image-box img {
    transform: scale(1.05);
}

.client-placeholder-box {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #000;
}

.client-text-box {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-text-box h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.client-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.client-address {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .client-row {
        grid-template-columns: 1fr;
    }
    
    .client-image-box, 
    .client-placeholder-box {
        min-height: 250px;
    }
    
    .client-text-box {
        padding: 2.5rem;
    }
}

/* ====== CTA SECTION ====== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.85)), url('images/hero_interior.png') center/cover fixed;
}

.cta-section h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ====== FOOTER ====== */
.footer {
    background: #000;
    padding: 8rem 0 3rem;
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.brand-col p {
    font-size: 1rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: black;
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50px;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: #888;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-info li {
    color: #888;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-content div {
        text-align: center !important;
    }
}

/* ====== ANIMATIONS & RESPONSIVE ====== */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s !important;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s !important;
}

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

.scroll-fade,
.scroll-fade-up,
.scroll-scale {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-fade {
    transform: translateX(-50px);
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-up {
    transform: translateY(50px);
}

.scroll-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-scale {
    transform: scale(0.9);
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ====== PAGE HERO (For Subpages) ====== */
.page-hero {
    padding: 15rem 0 8rem;
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('images/building_construction.png') center/cover fixed;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.page-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== GALLERY SECTION ====== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 5rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .flex-layout {
        flex-direction: column;
        gap: 4rem;
    }

    .img-float {
        right: 0;
        bottom: -20px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-tall {
        grid-row: span 1;
    }

    .project-wide {
        grid-column: span 2;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

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

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

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

    .mobile-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .logo img {
        height: 55px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero-content {
        padding-top: 10rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-features {
        display: none;
    }

    .slider-controls {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 2rem;
    }

    .page-hero {
        padding: 10rem 0 5rem;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 45px;
        padding: 5px 8px;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .project-wide {
        grid-column: span 1;
    }

    .img-float {
        position: relative;
        width: 100%;
        top: -30px;
        right: 0;
        padding: 1.5rem;
    }

    .img-float h2 {
        font-size: 2.5rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .marquee-content span {
        font-size: 1.2rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float span {
    display: none; /* Hide text as requested */
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

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