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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
    background: linear-gradient(135deg, #fffef9 0%, #f5f2e7 50%, #fffef9 100%);
    background-attachment: fixed;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(184, 148, 31, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatPattern 30s linear infinite;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #3a3a3a;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.text-small {
    font-size: 0.9rem;
    color: #8b7d6b;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    background-size: 200% 200%;
    color: white;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    border-color: #b8941f;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 254, 249, 0.85);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: #3a3a3a;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    animation: logoGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #3a3a3a;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 31, 0.1));
    border-radius: 25px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.cta-button {
    background: linear-gradient(45deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    background-size: 200% 200%;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #3a3a3a, #d4af37);
    transition: all 0.4s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 148, 31, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 254, 249, 1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatPattern 20s linear infinite;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 4s ease-in-out infinite;
    text-shadow: none;
    margin-bottom: 0;
}

.title-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 252, 247, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 40px 50px;
    margin-bottom: 2rem;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: all 0.6s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.title-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 2s ease;
    animation: cardShimmer 3s ease-in-out infinite;
}

.title-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4af37, transparent, #b8941f, transparent, #d4af37);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

.title-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 50px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

.hero-tagline {
    font-size: 1.3rem;
    color: #8b7d6b;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37 0%, #b8941f 25%, #d4af37 50%, #b8941f 75%, #d4af37 100%);
    background-size: 300% 300%;
    color: white;
    padding: 24px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: rainbowShift 4s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.8s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.hero-address {
    color: #8b7d6b;
    font-size: 1rem;
    font-weight: 400;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #3a3a3a;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f, #d4af37);
    border-radius: 2px;
    animation: gradientShift 2s ease-in-out infinite;
}

/* Services Teaser */
.services-teaser {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdfcf7 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 31, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.5);
}

.service-card h3 {
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #8b7d6b;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #ffffff;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    border: none;
    display: block;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .video-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        height: 250px;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(184, 148, 31, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #faf8f3 0%, #f5f2e7 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.02) 100px,
            rgba(212, 175, 55, 0.02) 200px
        );
    animation: floatPattern 25s linear infinite;
}

.reviews-slider {
    position: relative;
    width: 100%;
    margin: 0 auto 3rem;
    height: 200px;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.reviews-track {
    display: flex;
    width: calc(400px * 12); /* 6 reviews * 2 for seamless loop */
    height: 100%;
    animation: railFlow 30s linear infinite;
}

.review-item {
    position: static;
    width: 400px;
    height: 180px;
    margin-right: 20px;
    opacity: 1;
    transform: none;
    transition: none;
    flex-shrink: 0;
}

.review-item {
    position: static;
    width: 400px;
    height: 180px;
    margin-right: 20px;
    opacity: 1;
    transform: none;
    transition: none;
    flex-shrink: 0;
}

.review-item.active {
    opacity: 1;
    transform: none;
    animation: none;
}

.review-item.active .review-content {
    animation: none;
}

.review-item.prev {
    opacity: 1;
    transform: none;
    filter: none;
}

.review-item.next {
    opacity: 1;
    transform: none;
    filter: none;
}

.review-content {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: none;
    position: relative;
    margin: 0;
    transform: none;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.review-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.review-content::before {
    display: none;
}

.review-content::after {
    display: none;
}

.review-item.active .review-content::after {
    display: none;
}

.stars {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    animation: none;
    filter: none;
}

.review-content p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: white !important;
    line-height: 1.4;
}

.review-content cite {
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
}

.review-content * {
    color: white !important;
}

.review-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.review-content cite {
    color: #8b7d6b;
    font-style: normal;
    font-weight: 500;
}

/* Reviews Section Ends Here */

/* Map Preview */
.map-preview {
    padding: 80px 0;
}

.map-card {
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.map-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.map-content h3 {
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.map-content p {
    color: #8b7d6b;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 254, 249, 1) 100%);
}

.page-title {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #8b7d6b;
    font-weight: 300;
}

/* Services Content */
.services-content {
    padding: 60px 0 80px;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-category h2 {
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
    font-size: 1.5rem;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.service-name {
    flex-shrink: 0;
    font-weight: 500;
    color: #3a3a3a;
}

.service-dots {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #d4af37 20%, #d4af37 80%, transparent 100%);
    background-image: radial-gradient(circle, #d4af37 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: center;
}

.service-price {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

.service-subheading {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-note {
    margin: 3rem 0;
    text-align: center;
    background: #faf8f3;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.services-cta {
    margin-top: 3rem;
}

/* Contact */
.contact-content {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.big-card {
    grid-column: 1 / -1;
    padding: 3rem;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-card h2,
.contact-card h3 {
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.contact-phone a {
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
    text-decoration: none;
}

.contact-phone a:hover {
    color: #b8941f;
}

.whatsapp-message {
    background: #f0f8f0;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #25d366;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #faf8f3;
    border-radius: 8px;
    color: #3a3a3a;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: #d4af37;
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f, #d4af37, #b8941f);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: #d4af37;
    text-decoration: none;
}

.footer-info a:hover {
    color: #b8941f;
}

.footer-social h4 {
    color: white;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 148, 31, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.social-links a svg {
    position: relative;
    z-index: 2;
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 200% 50%; }
    75% { background-position: 300% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes logoGlow {
    0% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        transform: scale(1.05);
    }
}

@keyframes floatPattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

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

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

@keyframes railFlow {
    0% { 
        transform: translateX(0);
    }
    100% { 
        transform: translateX(calc(-400px * 6 - 120px)); /* Move by width of 6 cards + gaps */
    }
}

@keyframes reviewSlideIn {
    0% { 
        opacity: 0;
        transform: translateX(100px) rotateY(45deg) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) rotateY(10deg) scale(0.95);
    }
    100% { 
        opacity: 1;
        transform: translateX(0) rotateY(0) scale(1);
    }
}

@keyframes reviewSlideOut {
    0% { 
        opacity: 1;
        transform: translateX(0) rotateY(0) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-20px) rotateY(-10deg) scale(0.95);
    }
    100% { 
        opacity: 0;
        transform: translateX(-100px) rotateY(-45deg) scale(0.8);
    }
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-5px) rotate(0.5deg);
    }
    75% { 
        transform: translateY(5px) rotate(-0.5deg);
    }
}

@keyframes cardShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes borderGlow {
    0% { 
        background-position: 0% 50%;
        opacity: 0.8;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
    100% { 
        background-position: 0% 50%;
        opacity: 0.8;
    }
}

@keyframes starTwinkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards, pulse 2s ease 2s infinite;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s forwards;
    opacity: 0;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.fade-in-delay-5 {
    animation: fadeIn 1s ease 1.5s forwards;
    opacity: 0;
}

.slide-in {
    animation: slideIn 1s ease forwards;
}

.slide-in-delay {
    animation: slideIn 1s ease 0.2s forwards, wiggle 3s ease 2s infinite;
    opacity: 0;
}

.slide-in-delay-2 {
    animation: slideIn 1s ease 0.4s forwards, bounce 2s ease 3s infinite;
    opacity: 0;
}

.slide-in-delay-3 {
    animation: slideIn 1s ease 0.6s forwards, pulse 2.5s ease 3.5s infinite;
    opacity: 0;
}

.slide-in-delay-4 {
    animation: slideIn 1s ease 0.8s forwards, wiggle 3s ease 4s infinite;
    opacity: 0;
}

.slide-in-delay-5 {
    animation: slideIn 1s ease 1s forwards, bounce 2s ease 5s infinite;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 254, 249, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .title-card {
        padding: 30px 35px;
        margin-bottom: 1.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        position: fixed;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .service-category {
        padding: 1.5rem;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .contact-card,
    .big-card {
        padding: 1.5rem;
    }

    .review-content {
        padding: 2rem;
    }

    .title-card {
        padding: 25px 30px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }

    .title-card::after {
        border-radius: 20px;
    }
}

/* Service items responsive adjustment */
@media (max-width: 600px) {
    .service-item {
        flex-wrap: wrap;
    }

    .service-name {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .service-dots {
        display: none;
    }

    .service-price {
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid #d4af37;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    animation: pulse 1s ease-in-out infinite;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Membership Page Styles */
.membership-content {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 254, 249, 1) 0%, rgba(245, 242, 231, 0.5) 100%);
}

.membership-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.section-title {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 2px;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.term-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(5px);
}

.term-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.term-content {
    color: #3a3a3a;
    line-height: 1.6;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
}

.phone-link {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #b8941f;
    transform: scale(1.05);
}

.detailed-terms {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.term-section {
    padding: 25px;
    background: rgba(212, 175, 55, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.term-section h3 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emoji {
    font-size: 1.5rem;
}

.term-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.term-section li {
    color: #3a3a3a;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.term-section li::before {
    content: '•';
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sub-list {
    margin-top: 10px;
    margin-left: 20px;
}

.sub-list li {
    color: #666;
    font-size: 0.95rem;
}

.membership-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.membership-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: floatPattern 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Responsive Styles for Membership */
@media (max-width: 768px) {
    .membership-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .term-item {
        padding: 15px;
        gap: 10px;
    }
    
    .term-section {
        padding: 20px 15px;
    }
    
    .membership-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
}

/* Gallery Page Styles */
.gallery-content {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 254, 249, 1) 0%, rgba(245, 242, 231, 0.5) 100%);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-intro h2 {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.gallery-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 2px;
}

.gallery-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.9) 0%,
        rgba(184, 148, 31, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-content-overlay {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.gallery-content-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-content-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-cta .cta-content h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 15px;
}

.gallery-cta .cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.gallery-cta .btn-primary,
.gallery-cta .btn-secondary {
    margin: 0 10px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4af37;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(212, 175, 55, 0.8);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-image {
        height: 280px;
    }
    
    .gallery-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-cta {
        padding: 40px 20px;
    }
    
    .gallery-cta .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .gallery-cta .btn-primary,
    .gallery-cta .btn-secondary {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    
    .lightbox-prev {
        margin-left: -40px;
    }
    
    .lightbox-next {
        margin-right: -40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 18px;
    }
}

/* Products Page Styles */
.products-content {
    padding: 60px 0 80px;
}

.products-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.products-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.product-category {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.category-title {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.brand-card {
    background: linear-gradient(145deg, #faf8f3 0%, #f5f2e7 100%);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 31, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.brand-type {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Quality Section */
.quality-section {
    padding: 60px 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(184, 148, 31, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #faf8f3 0%, #f5f2e7 100%);
    border-radius: 25px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.02) 80px,
            rgba(212, 175, 55, 0.02) 160px
        );
    animation: floatPattern 25s linear infinite;
}

.quality-content {
    position: relative;
    z-index: 2;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quality-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.quality-item h3 {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.quality-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Products CTA */
.products-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: floatPattern 20s linear infinite;
}

.products-cta .cta-content {
    position: relative;
    z-index: 2;
}

.products-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.products-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta .btn-primary {
    background: white;
    color: #d4af37;
    border: 3px solid white;
}

.products-cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.products-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.products-cta .btn-secondary:hover {
    background: white;
    color: #d4af37;
}

/* Responsive Products Styles */
@media (max-width: 768px) {
    .product-category {
        padding: 30px 20px;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .brand-card {
        padding: 20px 15px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-type {
        font-size: 0.9rem;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-item {
        padding: 25px 15px;
    }
    
    .products-cta {
        padding: 40px 20px;
    }
    
    .products-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 200px;
    }
}