/* Font Face */
@font-face {
    font-family: 'Tusker Grotesk';
    src: url('fonts/TUSKERGROTESK-3700BOLD.TTF') format('truetype'),
         url('fonts/TUSKERGROTESK-3700BOLD.OTF') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: #000000;
    border-bottom: 2px solid #FFFFFF;
    padding: 20px 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
    filter: invert(1) brightness(2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    cursor: pointer;
}

.btn-primary {
    background-color: #FFFFFF;
    color: #000000;
}

.btn-primary:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-service {
    width: 100%;
    margin-top: 20px;
    background-color: #FFFFFF;
    color: #000000;
}

.btn-service:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Spinning Logo Section */
.spinning-logo-section {
    padding: 60px 0;
    background-color: #000000;
}

.spinning-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinning-logo {
    width: 600px;
    height: 600px;
    object-fit: contain;
   
}



/* Services Main Section */
.services-main {
    padding: 80px 0;
}

/* Service Category */
.service-category {
    margin-bottom: 100px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    /* Removed filter to allow transparent backgrounds */
}

.category-title {
    font-family: 'Tusker Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background-color: #000000;
    border: 2px solid #FFFFFF;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 #FFFFFF;
}

.service-title {
    font-family: 'Tusker Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-brand {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 20px;
    font-style: italic;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.service-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

/* Service Pricing */
.service-pricing {
    display: flex;
    justify-content: space-around;
    margin: 30px 0 20px;
    padding: 20px 0;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.price-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.size {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.price {
    font-family: 'Tusker Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFFFFF;
}

.service-pricing-single {
    text-align: center;
    margin: 30px 0 20px;
    padding: 20px 0;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.service-pricing-single .price {
    font-family: 'Tusker Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
}

/* Contact Section */
.contact {
    background-color: #FFFFFF;
    color: #000000;
    padding: 80px 0;
}

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

.contact-title {
    font-family: 'Tusker Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.contact-details {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}

.contact-item a:hover {
    opacity: 0.7;
}

.contact-item p {
    color: #000000;
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spinning-logo {
        width: 200px;
        height: 200px;
    }

    .spinning-logo-section {
        padding: 40px 0;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
    }

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

    .service-card {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-pricing {
        flex-direction: column;
        gap: 15px;
    }

    .price-item {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .spinning-logo {
        width: 150px;
        height: 150px;
    }

    .spinning-logo-section {
        padding: 30px 0;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
