:root {
    --primary-color: #8A2BE2;
    --secondary-color: #FF6F91;
    --dark-color: #2c3e50;
    --light-color: #f8f9fc;
    --text-color: #555;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-custom {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* Services */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-body {
    padding: 25px;
}

.service-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #aaa;
}

.footer-title {
    color: white;
}

.footer-subtitle {
    color: white;
    font-size: 1.1rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

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

.social-links.big-icons a {
    font-size: 1.2rem;
    margin-right: 15px;
    margin-left: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(255, 111, 145, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: white;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    opacity: 0.1;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Styles */
.gallery-item {
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(138, 43, 226, 0.8), rgba(255, 111, 145, 0.4));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-card:hover .gallery-overlay h5 {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    opacity: 0.9;
}

.gallery-card:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transform: scale(0);
    transition: transform 0.3s ease 0.2s;
}

.gallery-card:hover .gallery-icon {
    transform: scale(1);
}

/* Custom Modal for Gallery */
.modal-gallery .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.modal-gallery .btn-close {
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1056;
}

.modal-gallery .btn-close:hover {
    opacity: 1;
}

.modal-gallery img {
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    max-height: 85vh;
}

.modal-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.modal-caption h5 {
    color: white !important;
    margin-bottom: 5px;
}

.modal-caption small {
    color: rgba(255, 255, 255, 0.8);
}

/* Modern CTA Section */
.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.cta-card .btn-light {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    color: var(--secondary-color) !important;
}

.circle-1,
.circle-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}