@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=Oswald:wght@400;700&display=swap');

:root {
    --primary-black: #050505;
    --secondary-gray: #121212;
    --accent-red: #ff0000;
    --chrome-silver: #e0e0e0;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Chrome & Gradient Text */
.chrome-text {
    font-family: var(--font-heading);
    background: linear-gradient(180deg, #ffffff 0%, #b0b0b0 45%, #606060 55%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0; /* Sharp, aggressive edges */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-red {
    background-color: var(--accent-red);
    color: white;
    border: 1px solid var(--accent-red);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.btn-red:hover {
    background-color: white;
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: white;
    background-color: white;
    color: black;
    transform: translateY(-3px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.5s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    height: 65px; /* Increased size */
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    transition: 0.3s;
}

header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    position: relative;
}

.nav-links a {
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 600px;
    border-left: 3px solid var(--accent-red);
    padding-left: 20px;
}

/* Sections */
section {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 70px;
    text-align: center;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--secondary-gray);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: var(--glass-bg);
    padding: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: white;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(255,0,0,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: 0.5s;
    opacity: 0;
}

.gallery-overlay span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

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

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

/* Reviews Section */
.reviews {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('assets/gallery1.jpg') center/cover fixed;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 50px;
    border: 1px solid var(--glass-border);
    height: 100%;
    transition: 0.3s;
}

.review-card:hover {
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.05);
}

.review-card i.fa-quote-left {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 100px 0 40px;
}

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

.footer-brand img {
    height: 80px;
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-gray);
    max-width: 400px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

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

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--accent-red);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Services Section */
.services {
    background-color: var(--primary-black);
    position: relative;
}

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

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Smooth reveal animation for sections */
section {
    opacity: 1;
}

/* Enhanced button glow effect */
.btn-red {
    position: relative;
}

.btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-red:hover::before {
    left: 100%;
}

/* Enhanced stat items */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::after {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--primary-black) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/gallery1.jpg') center/cover;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Remove all text-decoration underlines globally */
a {
    text-decoration: none;
}

a:hover, a:focus, a:active {
    text-decoration: none;
}

/* Footer links no underline */
.footer-links ul li a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 { font-size: 4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .section-header h2 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
}

/* Social icons styling */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

/* Enhanced footer brand */
.footer-brand img {
    transition: filter 0.3s;
}

.footer-brand img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
}

/* Improved selection color */
::selection {
    background: var(--accent-red);
    color: white;
}
