:root {
    --black: #000000;
    --deep-black: #0a0a0a;
    --gold-24k: #FFD700;
    --gold-bright: #FFC700;
    --gold-dark: #B8860B;
    --gold-light: #FFED4E;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --pink-rose: #FFB6C1;
    --green-whatsapp: #25D366;
}

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

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

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

.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-24k), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--gold-light), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--gold-24k), transparent),
        radial-gradient(2px 2px at 90% 60%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 33% 80%, var(--gold-24k), transparent);
    background-size: 200% 200%;
    animation: sparkleFloat 20s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% { opacity: 0.3; background-position: 0% 0%; }
    50% { opacity: 0.6; background-position: 100% 100%; }
}

.rose-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 1s;
}

.rose-petals.active {
    opacity: 1;
}

.petal {
    position: absolute;
    font-size: 24px;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.5;
    }
}

.surprise-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--gold-24k);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
    animation: pulse 2s ease-in-out infinite;
}

.surprise-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.25);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.surprise-btn.playing {
    background: rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
    color: #ff69b4;
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.header {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold-24k);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light), var(--gold-24k));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: shimmerText 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

@keyframes shimmerText {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9)); }
}

.brand-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.95;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-top: 2px;
}

.brand-slogan {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--gold-24k);
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.sparkle {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-24k), var(--gold-bright));
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--gold-24k);
}

.nav a:hover::before {
    width: 100%;
}

.hero {
    padding-top: 120px;
    padding-bottom: 60px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 2;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light), var(--gold-24k));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 18px;
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--gold-24k);
    font-size: 20px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: var(--gold-24k);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gold-24k);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--gold-24k);
}

.contact-buttons {
    margin-top: 60px;
    text-align: center;
}

.contact-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--pink-rose);
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px var(--pink-rose); }
    50% { text-shadow: 0 0 40px var(--pink-rose); }
}

.contact-btn {
    display: block;
    max-width: 350px;
    margin: 15px auto;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.contact-btn:hover::before {
    width: 350px;
    height: 350px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.locate-btn {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    color: var(--black);
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.4);
    animation-delay: 0.1s;
}

.locate-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 182, 193, 0.6);
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--green-whatsapp), #20BA5C);
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation-delay: 0.2s;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.call-btn {
    background: transparent;
    border: 2px solid var(--gold-24k);
    color: var(--gold-24k);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    animation-delay: 0.3s;
}

.call-btn:hover {
    background: var(--gold-24k);
    color: var(--black);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.btn-icon {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.btn-text {
    flex: 1;
    z-index: 1;
}

.btn-arrow, .btn-emoji {
    font-size: 16px;
    z-index: 1;
    animation: bounce 1.5s ease-in-out infinite;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light), var(--gold-24k));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

.title-decoration {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 20px;
}

.offers-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--deep-black), var(--black));
}

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

.offer-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    animation: float 6s ease-in-out infinite;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--gold-24k), transparent);
    animation: rotateGlow 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.offer-badge.hot {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

.offer-badge.festive {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.offer-badge.student {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}

.offer-icon {
    font-size: 80px;
    margin: 20px 0;
    filter: drop-shadow(0 0 15px var(--gold-24k));
    z-index: 2;
    position: relative;
}

.offer-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--gold-24k);
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.offer-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
    z-index: 2;
    position: relative;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 20px;
}

.new-price {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--gold-24k);
}

.sparkle-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-24k), transparent);
    margin-top: 30px;
    animation: shimmerLine 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.services-section {
    padding: 100px 0;
}

.service-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    border-top: 3px solid var(--gold-24k);
}

.category-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--gold-24k);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.category-info {
    text-align: center;
    width: 100%;
    display: block;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-24k);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-prices {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 16px;
}

.service-offer-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-24k);
}

.service-discount {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.gallery-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--deep-black), var(--black));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s;
}

.gallery-item:hover {
    border-color: var(--gold-24k);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

.gallery-overlay h3 {
    color: var(--gold-24k);
    font-family: 'Cinzel', serif;
    font-size: 24px;
}

.reviews-section {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--gold-24k);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--gold-24k);
}

.reviewer-details {
    font-size: 13px;
    color: #888;
}

.rating {
    display: flex;
    gap: 5px;
}

.star {
    color: var(--gold-24k);
    font-size: 22px;
    filter: drop-shadow(0 0 5px var(--gold-24k));
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: #888;
}

.cta-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-black), var(--black));
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 22px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta.primary {
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-bright));
    color: var(--black);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.btn-cta.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.btn-cta.secondary {
    background: transparent;
    border: 3px solid var(--gold-24k);
    color: var(--gold-24k);
}

.btn-cta.secondary:hover {
    background: var(--gold-24k);
    color: var(--black);
    transform: translateY(-5px);
}

.footer {
    background: var(--deep-black);
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold-24k);
}

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

.footer-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--gold-24k);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold-24k);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-gray);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    color: white;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #0D65D9);
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.tc-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--gold-24k);
    color: var(--gold-24k);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tc-btn:hover {
    background: var(--gold-24k);
    color: var(--black);
    transform: scale(1.05);
}

.offer-card {
    position: relative;
}

.tc-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.tc-modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    margin: 5% auto;
    padding: 40px;
    border: 2px solid var(--gold-24k);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tc-modal-content h2 {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, var(--gold-24k), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    text-align: center;
}

.tc-content {
    color: var(--text-white);
    line-height: 1.8;
}

.tc-content ol {
    padding-left: 25px;
}

.tc-content li {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.tc-close {
    color: var(--gold-24k);
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.tc-close:hover {
    color: var(--gold-light);
    transform: scale(1.2) rotate(90deg);
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .section-title { font-size: 36px; }
    .nav { display: none; }
    .offers-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .carousel { height: 50vh; }
}
