/* Unique Offer Card Styles */
.offer-card-unique {
    position: relative;
    margin: 0 auto 10px auto;
    max-width: 420px;
    background: linear-gradient(135deg, #590707 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(255,215,0,0.13), 0 2px 8px rgba(0,0,0,0.18);
    padding: 38px 18px 18px 18px;
    text-align: center;
    z-index: 12;
    overflow: visible;
    animation: offer-hover 2.2s ease-in-out infinite alternate;
    border: 2px solid #ffd700;
}
.offer-card-unique .offer-ribbon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(-6deg);
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    color: #222;
    font-size: 0.98rem;
    font-weight: 800;
    padding: 5px 32px 4px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.13);
    letter-spacing: 1px;
    border: 1.5px solid #fffbe6;
}
.offer-card-unique .offer-circle {
    margin: 0 auto 12px auto;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ffd700 60%, #fffbe6 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(255,215,0,0.18);
    border: 4px solid #fffbe6;
    position: relative;
}
.offer-card-unique .offer-icon {
    font-size: 2.1rem;
    color: #b8860b;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 4px #fffbe6);
}
.offer-card-unique .offer-percent {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: 1px;
    line-height: 1.1;
}
.offer-card-unique .offer-off {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-left: 2px;
}
.offer-card-unique .offer-unique-desc {
    color: #fffbe6;
    font-size: 1.08rem;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.5;
}
.offer-card-unique .offer-unique-highlight {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
}
@media (max-width: 600px) {
    .offer-card-unique {
        max-width: 98vw;
        padding: 16px 7vw 8px 7vw;
        margin-bottom: 6px;
    }
    .offer-card-unique .offer-circle {
        width: 70px;
        height: 70px;
    }
    .offer-card-unique .offer-percent {
        font-size: 1.3rem;
    }
    .offer-card-unique .offer-icon {
        font-size: 1.2rem;
    }
    .offer-card-unique .offer-ribbon {
        font-size: 0.85rem;
        padding: 3px 12px 2px 12px;
    }
    .offer-card-unique .offer-unique-desc,
    .offer-card-unique .offer-unique-highlight {
        font-size: 0.98rem;
    }
}
/* Offer Card Styles */
.offer-card {
    position: relative;
    margin: 0 auto 24px auto;
    max-width: 600px;
    background: linear-gradient(120deg, #7a2d13 0%, #4d1a06 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 28px 18px 22px 18px;
    text-align: center;
    z-index: 10;
    animation: offer-hover 2.2s ease-in-out infinite alternate;
}
.offer-badge {
    display: inline-block;
    background: #d4c24a;
    color: #222;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 4px 16px 3px 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.offer-title {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin: 8px 0 8px 0;
    letter-spacing: 1px;
}
.offer-desc {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
@keyframes offer-hover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-18px); }
}
@media (max-width: 600px) {
    .offer-card {
        max-width: 98vw;
        padding: 18px 4vw 14px 4vw;
    }
    .offer-title {
        font-size: 1.3rem;
    }
    .offer-desc {
        font-size: 0.98rem;
    }
}
.service-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
    align-items: center;
    width: 100%;
}
.service-item {
    background: #151515;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.04);
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 600px;
    min-width: 0;
    padding: 18px 18px 18px 18px;
    margin: 0 auto;
    gap: 18px;
}
.service-item img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
    border: 2px solid #ffd70033;
    background: #000;
    flex-shrink: 0;
}
.service-item h3 {
    color: #ffd000;
    margin: 0 0 6px 0;
    font-size: 1rem;
    text-align: center;
}
.service-item p {
    color: #ffd700cc;
    font-size: 0.5rem;
    margin: 0;
    text-align: center;
}
@media (max-width: 900px) {
    .service-details {
        gap: 16px;
    }
    .service-item {
        max-width: 98vw;
        padding: 12px 6px 12px 6px;
    }
}
@media (max-width: 600px) {
    .service-details {
        gap: 12px;
    }
    .service-item {
        flex-direction: row;
        align-items: center;
        padding: 10px 2px 8px 2px;
        gap: 8px;
    }
    .service-item img {
        width: 70px;
        height: 50px;
    }
    .service-item h3 {
        font-size: 1rem;
    }
    .service-item p {
        font-size: 0.8rem;
    }
}


body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: #111;
    color: #ffd700;
}

.sticky-header {
    position: sticky;
    top: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.07);
    z-index: 1000;
    border-bottom: 2px solid #ffd700;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: medium;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
}

.logo img {
    height: 100px;
}

/* Floating Call & WhatsApp Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    left: auto;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    z-index: 2000;
    align-items: center;
    width: auto;
    max-width: 95vw;
    justify-content: flex-end;
    background: black;
    padding: 10px;
}
.floating-buttons .call-btn,
.floating-buttons .whatsapp-btn {
    flex: 1 1 0;
    min-width: 80px;
    max-width: 180px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    align-items: center;
    padding: 10px 18px;
    white-space: nowrap;
}
.floating-buttons .call-btn:hover,
.floating-buttons .whatsapp-btn:hover {
    opacity: 1;
}
@media (max-width: 600px) {
    .floating-buttons {
        right: 0;
        left: 0;
        bottom: 0;
        gap: 8px;
        max-width: 98vw;
        width: auto;
        justify-content: center;
    }
    .floating-buttons .call-btn,
    .floating-buttons .whatsapp-btn {
        min-width: 0;
        width: 100%;
        font-size: 0.98rem;
        padding: 10px 0;
    }
}
.call-btn {
    position: sticky;
    padding: 10px 18px;
    border-radius: 25px;
    color: #111;
    background: #fd3f39;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.whatsapp-btn {
    position: sticky;
    padding: 10px 18px;
    border-radius: 25px;
    color: #111;
    background: #25D366;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.call-btn:hover, .whatsapp-btn:hover {
    background: #111;
    color: #ffd700;
    border-color: #ffd700;
}
.hero-section {
    position: relative;
    background: linear-gradient(rgba(17,17,17,0.7), rgba(17,17,17,0.7)), url('img/img1.webp') center/cover no-repeat;
    padding: 60px 20px 40px 20px;
    text-align: center;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.hero-section h1 {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ffd700;
    letter-spacing: 1px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
   
.hero-section-call-to-action {
    text-decoration: none; 
    color: black; 
    border: 2px solid #ffd700; 
    padding: 1px 18px; 
    background: #ffd700; 
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    align-items: center;
    margin: 10px auto 0 auto;
}

.about-section {
    max-width: 900px;
    margin: 40px auto;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgb(0, 0, 0);
    padding: 32px 24px;
    text-align: center;
    align-items: center;
}

.about-section h2 {
    margin-top: 0;
    color: #ffd700;
    letter-spacing: 1px;
    text-align: center;
}

.about-section p {
    color: #ffd700cc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 18px;
}

.about-section img {
    margin-top: 24px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.07);
    object-fit: cover;
    height: auto;
    background: #000;
}

.services-section {
    max-width: 900px;
    margin: 40px auto;
    background: #000000;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.services-section h2 {
    margin-top: 0;
    color: #ffd700;
    letter-spacing: 1px;
    text-align: center;
}

.services-section ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 18px 0 0 0;
}

.services-section li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #ffd700;
}

.gallery-section {
    max-width: 900px;
    margin: 40px auto;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,215,0,0.04);
    padding: 32px 24px;
    text-align: center;
}

.gallery-section h2 {
    margin-top: 0;
    color: #ffd700;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 18px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.07);
    object-fit: cover;
    height: 140px;
    background: #000;
}
footer {
    background: #000;
    color: #ffd700;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
}
.footer-info {
    flex: 1 1 20px;
    margin-bottom: 20px;
}
.footer-info div {
    margin-bottom: 10px;
}
.footer-info a {
    color: #ffd700;
    text-decoration: underline;
}
.footer-map {
    flex: 1 1 320px;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
    min-height: 150px;
}

.footer-links {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.footer-links a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9rem;
}
@media (max-width: 800px) {
    .about-section, .services-section, .gallery-section {
        padding: 18px 8px;
        margin: 40px 4px;
    }
    .footer-map {
        justify-content: flex-start;
        margin-top: 10px;
        min-width: 0;
        width: 100%;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 8px;
    }
    .footer-info {
        margin-bottom: 16px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .gallery-grid img {
        height: 90px;
    }
    .hero-section {
        padding: 32px 8px 24px 8px;
        min-height: 650px;
    }
    .hero-section h1 {
        font-size: 1.8rem;
        margin-top: 150px;
    }
    .logo img {
        height: 55px;
    }
    .sticky-header {
        padding: 8px 8px;
    }
}
