@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #c5a059;
    /* Gold from card */
    --primary-dark: #a68541;
    --secondary: #3d3d3d;
    /* Dark grey from card */
    --accent: #3498db;
    /* Blue from logo */
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Header & Nav */
header {
    background: var(--white);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    z-index: 1001;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 100px 40px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 25px;
}

.mobile-nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Page Banner */
.page-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    /* Offset for fixed header */
}

.page-banner-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-banner-content p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

/* Slick Active Animations */
.slick-active .hero-content .animated-icon,
.slick-active .hero-content h1,
.slick-active .hero-content p,
.slick-active .hero-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Animated Icons in Hero */
.animated-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.floating {
    animation: floating 3s ease-in-out infinite;
    display: inline-block;
}

.pulsing {
    animation: pulsing 2s infinite;
    display: inline-block;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes pulsing {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Slick Dots Styling */
.slick-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex !important;
    justify-content: center;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.slick-dots li {
    margin: 0 8px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.3);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

/* Categories/Services */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    /* height: 250px; */
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Brands Section */
.brands {
    background: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 0;
}

.brand-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.brand-item img {
    max-height: 45px;
    max-width: 145px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.55; */
    transition: all 0.35s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {

    .nav-links,
    .header-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    
    .animated-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}

/* Why Choose Us Section */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.wcu-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    clip-path: circle(0% at 50% 0%);
    transition: all 0.6s ease;
    z-index: -1;
}

.wcu-card:hover::before {
    clip-path: circle(150% at 50% 0%);
}

.wcu-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    color: var(--white);
}

.wcu-icon {
    width: 80px;
    height: 80px;
    background: #fff8eb;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1);
}

.wcu-card:hover .wcu-icon {
    background: var(--white);
    transform: rotateY(360deg);
    color: var(--primary);
}

.wcu-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.wcu-card p {
    font-size: 0.95rem;
    color: #666;
    transition: var(--transition);
}

.wcu-card:hover h3,
.wcu-card:hover p {
    color: var(--white);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.9);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Testimonials Section */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    outline: none;
}

.testimonial-item i.fa-quote-left {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 25px;
}

.testimonial-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-item span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom dots for testimonials */
.testimonial-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.testimonial-slider .slick-dots li button:before {
    background: var(--secondary);
    opacity: 0.2;
}

/* Social Icons Original Colors */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a.facebook {
    color: #1877F2;
}

.social-links a.whatsapp {
    color: #25D366;
}

.social-links a.instagram {
    color: #E4405F;
}

.social-links a.youtube {
    color: #FF0000;
}

.social-links a:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}