/* --- Pro Agency Global Styles & Variables --- */
:root {
    --primary-color: #ff3385; 
    --secondary-color: #ffb3d1; 
    --text-dark: #2a0816; 
    --text-light: #ffffff;
    --bg-light: #fff5f8; 
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-pro: 0 15px 35px rgba(255, 51, 133, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-color); }
a { text-decoration: none; color: inherit; }
::selection { background: var(--primary-color); color: white; }

.container { width: 90%; max-width: 1200px; margin: auto; }
.section-padding { padding: 100px 0; }
.page-top-padding { padding-top: 150px; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.mb-30 { margin-bottom: 30px; }

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- Glassmorphism UI Elements --- */
.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-pro);
    transition: all 0.4s ease;
}
.glass-card:hover { transform: translateY(-5px); background: #ffffff; box-shadow: 0 20px 40px rgba(255, 51, 133, 0.15); }

/* --- Floating Performance Toggle --- */
.performance-toggle-container {
    position: fixed; bottom: 30px; right: 30px; background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px; border-radius: 30px; display: flex; align-items: center;
    gap: 15px; z-index: 9999; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
}
.toggle-label { font-weight: 600; font-size: 14px; color: var(--primary-color); }
.switch { position: relative; display: inline-block; width: 46px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(22px); }

/* --- Magical Snow Effect --- */
#sparkle-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 900; overflow: hidden;
}
.sparkle {
    position: absolute; background: radial-gradient(circle, #ffffff, #ffb3d1, transparent);
    border-radius: 50%; opacity: 0; animation: fall linear infinite, shimmer 2s ease-in-out infinite alternate;
}
@keyframes fall { 0% { transform: translateY(-10vh) scale(0.5); } 100% { transform: translateY(110vh) scale(1.2); } }
@keyframes shimmer { 0% { opacity: 0.2; box-shadow: 0 0 5px #ffb3d1; } 100% { opacity: 0.8; box-shadow: 0 0 15px #ffffff, 0 0 20px var(--primary-color); } }

/* --- Navigation & Buttons --- */
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 28px; margin: 0; letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links a { font-weight: 500; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); font-weight: 600; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--primary-color); }

.btn {
    display: inline-block; background: var(--primary-color); color: var(--text-light);
    padding: 16px 40px; border-radius: 30px; font-weight: 600; font-size: 1.1rem;
    transition: all 0.3s ease; border: 2px solid var(--primary-color); cursor: pointer;
}
.btn-glow:hover {
    background: transparent; color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 51, 133, 0.4); transform: translateY(-3px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(42, 8, 22, 0.7)), url('main.jpeg') center/cover;
    background-attachment: fixed; display: flex; align-items: center; text-align: center; color: var(--text-light);
}
.hero-content { max-width: 800px; margin: auto; padding: 20px; }
.hero-subtitle { display: block; font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 15px; }
.hero h2 { font-size: 65px; margin-bottom: 25px; color: var(--text-light); text-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.hero p { font-size: 22px; margin-bottom: 40px; font-weight: 300; }

/* --- About & Services Menu --- */
.about-text { max-width: 800px; margin: 0 auto 60px auto; text-align: center; }
.about-features { display: flex; justify-content: space-between; gap: 30px; }
.feature { flex: 1; text-align: center; }
.icon-ring { width: 80px; height: 80px; margin: 0 auto 20px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--primary-color); border: 1px solid var(--secondary-color); }

.service-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 40px; }
.menu-category h3 { border-bottom: 2px solid var(--secondary-color); padding-bottom: 15px; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.service-list { list-style: none; }
.service-list li { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px dashed var(--secondary-color); font-size: 1.05rem; }
.service-list li:last-child { border-bottom: none; }
.price { font-weight: 600; color: var(--primary-color); }

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0; 
}
.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- Image Popup Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(42, 8, 22, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.modal-content {
    max-width: 80%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}
.modal-caption {
    margin-top: 20px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}
.close-modal {
    position: absolute;
    top: 30px; right: 40px;
    color: var(--text-light);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.close-modal:hover { color: var(--primary-color); }

@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* --- NEW: Special Offers Section Styles --- */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.offer-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.offer-item:hover {
    border-color: var(--secondary-color);
}

.offer-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.new-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}
/* --- END NEW Special Offers Styles --- */
/* --- NEW: Google Reviews Slideshow --- */
.review-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.review-link-wrapper:hover .glass-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 51, 133, 0.2);
}
.slideshow-container {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-slide {
    display: none;
    text-align: center;
    width: 100%;
}
.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.review-slide p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.review-slide h4 {
    color: var(--primary-color);
    font-weight: 600;
}
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* --- Footer --- */
.footer { background: var(--text-dark); color: #ffd1e3; padding: 80px 0 20px; }
.footer h3 { color: var(--text-light); margin-bottom: 25px; font-size: 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-contact p, .footer-hours p { margin-bottom: 15px; }
.footer-contact i { margin-right: 15px; color: var(--primary-color); }
.socials a { color: var(--text-light); background: rgba(255,255,255,0.1); width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 15px; transition: all 0.3s; }
.socials a:hover { background: var(--primary-color); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; font-size: 14px; }

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 70px; left: 0; background: var(--glass-bg); backdrop-filter: blur(20px); text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 20px 0; border-bottom: 1px solid rgba(255,51,133,0.1); }
    .menu-toggle { display: block; }
    .hero h2 { font-size: 40px; }
    .about-features { flex-direction: column; }
    .contact-container { flex-direction: column; }
    .performance-toggle-container { bottom: 20px; right: 20px; padding: 8px 15px; }
    .modal-content { max-width: 95%; max-height: 60vh; }
    .slideshow-container { min-height: 350px; padding: 20px; }
}
/* --- Developer Tag --- */
.dev-tag {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 18px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.dev-tag:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255, 51, 133, 0.1);
    transform: translateY(-2px);
}
.dev-tag strong {
    font-weight: 700;
    letter-spacing: 2px;
}