:root {
    --primary: #c9a44c; /* Bronze/Gold */
    --secondary: #1a1a1a; /* Dark Charcoal */
    --accent: #333333;
    --text-light: #f4f4f4;
    --text-dark: #111111;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.logo span {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}

.logo small {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 400;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.cta-nav {
    background: var(--primary);
    color: var(--text-dark) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600 !important;
    box-shadow: 0 10px 20px rgba(201, 164, 76, 0.3);
}

.cta-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 164, 76, 0.5);
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(26,26,26,1));
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) translateY(0);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
}

.pulse {
    animation: pulse-ring 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 164, 76, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(201, 164, 76, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 164, 76, 0); }
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--text-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Stats */
.stats {
    padding: 6rem 0;
    background: var(--secondary);
    border-bottom: 1px solid var(--glass-border);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

/* Services */
.services {
    padding: 8rem 0;
    background: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    background: rgba(201, 164, 76, 0.05);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-content {
    padding: 2.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-content p {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Features */
.features {
    padding: 8rem 0;
    background: var(--secondary);
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.feature-list div {
    color: rgba(255,255,255,0.7);
}

.img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.img-box img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

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

/* Contact CTA */
.contact-cta {
    padding: 10rem 0;
    background: linear-gradient(rgba(26,26,26,0.9), rgba(26,26,26,0.9)), url('assets/stamped_concrete_hero_texture_1773438212099.png');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating Elements */
.floating-shape {
    position: absolute;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
    border-radius: 50%;
    animation: float 20s infinite alternate;
}

.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation-delay: -5s; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 100px) rotate(20deg); }
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
}

.contact-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form input {
    padding: 1.2rem 2rem;
    border-radius: 5px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: inherit;
    flex: 1;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: #0a0a0a;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: rgba(255,255,255,0.5);
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

/* Blog Page Styles */
.blog-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(to bottom, #1a1a1a, #111);
    text-align: center;
}

.blog-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.blog-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid-section {
    padding: 6rem 0;
    background: #111;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.blog-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Animations (Incremental) */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero h1 {
        font-size: 2.5rem;
    }
}
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="fade-left"] { transform: translateX(50px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="flip-up"] { transform: rotateX(-90deg); }

/* Mobile adjustments */
@media (max-width: 992px) {
    .features-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .feature-list li {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile-active {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

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

    .stats .container {
        flex-direction: column;
        gap: 2rem;
    }

    .floating-controls {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Floating Controls */
.floating-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25d366;
}

.back-to-top {
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Dynamic Back Button for Blog */
.back-btn-container {
    margin-bottom: 2rem;
}

.btn-back {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--primary);
    color: var(--text-dark);
}
