/* --- Variables & Reset --- */
:root {
    --primary-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --gold: #d4af37; 
    --white: #ffffff;
    --text-gray: #a1a1a1;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--primary-color); color: var(--white); overflow-x: hidden; }

/* --- Custom Cursor --- */
.cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform 0.1s; }
.cursor-follower { position: fixed; width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: 0.15s ease-out; }
.cursor-active .cursor-follower { width: 70px; height: 70px; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0); }

/* --- Global Styles --- */
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-dark { background-color: #141414; }
.highlight { color: var(--gold); }
.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--white); }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 10px; }
p { font-size: 1rem; color: var(--text-gray); line-height: 1.6; }
.sub-heading { color: var(--gold); text-transform: uppercase; font-family: var(--font-main); font-size: 0.8rem; letter-spacing: 2px; font-weight: 700; display: block; margin-bottom: 10px; }
.section-header { margin-bottom: 50px; }

/* --- IMAGE LOGO STYLING --- */
.main-logo {
    /* Set a fixed height so it doesn't break the navbar. 
       The width will adjust automatically (approx 133px width for 50px height) */
    height: 50px; 
    width: auto; 
    object-fit: contain; /* Ensures logo isn't stretched */
    display: block;
    transition: 0.4s;
}

/* Optional: Shrink logo slightly when scrolling */
header.scrolled .main-logo {
    height: 40px;
}

/* --- Buttons --- */
.btn-primary { background: var(--gold); color: #000; padding: 12px 30px; font-weight: 700; text-transform: uppercase; border: none; transition: 0.3s; display: inline-block; font-size: 0.9rem; }
.btn-primary:hover { background: #fff; transform: translateY(-3px); }

/* --- Navbar --- */
header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0; transition: 0.4s; }
header.scrolled { background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(10px); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-transform: uppercase; font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.header-contact { display: flex; gap: 20px; align-items: center; }
.phone-btn { font-size: 0.9rem; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 8px; }
.phone-btn i { color: var(--gold); }
.menu-toggle { display: none; font-size: 1.5rem; }

/* --- Hero --- */
.hero { height: 90vh; }
.swiper, .swiper-wrapper, .swiper-slide { width: 100%; height: 100%; }
.swiper-slide { display: flex; justify-content: center; align-items: center; background-size: cover; background-position: center; }
.slide-content { text-align: center; padding: 20px; }
.swiper-button-next, .swiper-button-prev { color: var(--gold); }

/* --- Materials Grid --- */
.materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.material-card {
    background: var(--card-bg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    border-radius: 4px;
}
.material-card:hover { transform: translateY(-10px); border-color: var(--gold); background: #222; }
.mat-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.material-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: var(--font-main); }

/* --- Portfolio Grid (6 items) --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
.portfolio-item { position: relative; height: 350px; overflow: hidden; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0; transition: 0.3s;
    display: flex; align-items: flex-end; padding: 30px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.overlay-text h3 { color: var(--gold); margin: 0; font-size: 1.5rem; }
.overlay-text p { color: #fff; font-size: 0.9rem; }

/* --- Testimonials --- */
.swiper.mySwiperTestimonial { padding-bottom: 50px; }
.testimonial-slide { 
    background: var(--card-bg); 
    padding: 50px 30px; 
    text-align: center; 
    border-bottom: 3px solid var(--gold);
    max-width: 600px;
}
.stars { color: var(--gold); margin-bottom: 15px; letter-spacing: 5px; }
.testimonial-slide p { font-style: italic; font-size: 1.1rem; color: #fff; margin-bottom: 20px; }
.testimonial-slide h4 { font-family: var(--font-main); font-weight: 600; font-size: 0.9rem; color: var(--text-gray); }

/* --- Footer & Contact (New Big Footer) --- */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px; }
.footer-widget h3 { font-size: 1.2rem; margin-bottom: 25px; color: var(--white); font-family: var(--font-main); text-transform: uppercase; letter-spacing: 1px; }

.footer-links, .contact-list { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links li a { color: var(--text-gray); transition: 0.3s; }
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }

.contact-list li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; color: var(--text-gray); font-size: 0.9rem; }
.contact-list li i { margin-top: 5px; }

.socials { display: flex; gap: 15px; }
.socials a { width: 40px; height: 40px; background: #333; display: flex; justify-content: center; align-items: center; border-radius: 50%; transition: 0.3s; }
.socials a:hover { background: var(--gold); color: #000; }

.footer-bottom { background: #000; padding: 20px 0; border-top: 1px solid #222; margin-top: 0; text-align: center; font-size: 0.8rem; color: #666; }

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .nav-links, .phone-btn { display: none; } /* Use JS menu for mobile */
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { height: 70vh; }
    h1 { font-size: 2.5rem; }
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto; }
}