/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C5A572;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, hsl(44 96% 70%), hsl(44 96% 60%));
    --accent-text: #C5A572;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo styles */
.logo {
    max-width: 200px;
    height: auto;
    animation: fadeInLogo 1.2s ease forwards;
    opacity: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #111111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    animation: slideFadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.gold-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
    font-weight: 400;
}

.hero-trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.trust-item i {
    color: #C5A572;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button.primary {
    background-color: #C5A572;
    color: #111111;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #b49059;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border-color: #C5A572;
}

.cta-button.secondary:hover {
    background-color: #C5A572;
    color: #111111;
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 0.25rem;
    left: 47%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #C5A572;
}

.scroll-indicator i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Promotional Banner */
.promo-banner {
    background: #181a20;
    color: white;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.promo-content i {
    color: #C5A572;
}

.promo-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Preview Section */
.services-preview {
    background-image: url('../assets/parallax_optimized.webp'); /* Replace with your image path */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: rgba(0, 0, 0, 0.2); /* dark overlay for text visibility */
    padding: 1rem;
    border-radius: 4px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header h2.gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--text-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid #C5A572;
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C5A572;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C5A572, #b49059);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content {
    margin-bottom: 2rem;
    flex: 1;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-description {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(197, 165, 114, 0.05);
    border-left: 3px solid #C5A572;
    border-radius: 0 8px 8px 0;
}

.service-description p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.service-description strong {
    color: #C5A572;
    font-weight: 600;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.card-content li i {
    color: #C5A572;
    font-size: 0.875rem;
}

.card-footer {
    text-align: center;
    margin-top: auto;
}

.card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card-button:hover {
    background: #C5A572;
    color: white;
    border-color: #C5A572;
}

.card-button.primary {
    background: #C5A572;
    color: white;
    border-color: #C5A572;
}

.card-button.primary:hover {
    background: #b49059;
}

.services-cta {
    text-align: center;
}

.services-blog-link {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(197, 165, 114, 1), rgba(197, 165, 114, 0.5));
    border-radius: 16px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    text-align: center;
}

.blog-link-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-link-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #C5A572;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #C5A572;
}

.blog-link-button:hover {
    background: #b49059;
    border-color: #b49059;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.blog-link-button i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-link-button:hover i {
    transform: translateX(3px);
}

/* About Section */
.about-section {
    background: #181a20;
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
    border: 10px solid hsl(44 96% 70%);
    border-radius: 16px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text h2.gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-link {
    color: #C5A572;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.about-link:hover {
    text-decoration: underline;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--text-color);
    border: 1px solid #C5A572;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C5A572, #b49059);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: hsl(44 96% 70%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Blog Preview Section */
.blog-preview {
    background-image: url('../assets/blog-parallax.webp'); /* Replace with your image path */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* .blog-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(197, 165, 114, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(197, 165, 114, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(197, 165, 114, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(197, 165, 114, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    pointer-events: none;
} */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--text-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.blog-content h3 {
    font-size: 1.25rem;
    color: hsl(44 96% 70%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: #C5A572;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-link:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
    color: hsl(44 96% 70%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #C5A572;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1.125rem;
    }
    
    .hero-trust-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-content, .promo-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-description {
        padding: 0.75rem;
    }
    
    .service-description p {
        font-size: 0.85rem;
    }
    
    .services-blog-link {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .blog-link-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-link-content p {
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
} 

/* Top Bar Styles */
.top-bar {
  background: #181a20;
  color: #C5A572;
  font-size: 0.98rem;
  padding: 0.35rem 0;
}
.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem;
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.top-contact a {
  color: #C5A572;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.top-contact a:hover {
  color: #fff;
}
.top-icon {
  color: #C5A572;
  margin-right: 0.3rem;
  font-size: 1.05em;
}

/* Main Nav Bar Styles */
.navbar {
  background: #181a20;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  max-height: 48px;
  width: auto;
}
.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}
.nav-menu li a:hover {
  color: #C5A572;
  background: rgba(197, 165, 114, 0.08);
}
.nav-cta {
  background: #C5A572;
  color: #181a20;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(197,165,114,0.08);
  border: none;
  display: inline-block;
}

.nav-cta-desktop {
  margin-left: 1.5rem;
}

.nav-cta-mobile {
  display: none;
}
.nav-cta:hover {
  background: #b49059;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(197,165,114,0.18);
}

/* Hamburger Menu Styles */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}
.nav-toggle-label span::before {
  position: absolute;
  top: -8px;
}
.nav-toggle-label span::after {
  position: absolute;
  top: 8px;
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #181a20;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 99;
  }
  .nav-toggle:checked ~ nav .nav-menu {
    max-height: 500px;
    padding-bottom: 1rem;
  }
  .nav-toggle-label {
    display: flex;
  }
  .nav-cta-desktop {
    display: none;
  }
  .nav-cta-mobile {
    display: block;
    margin-top: 1rem;
  }
  .nav-cta-mobile .nav-cta {
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 200px;
  }
  .nav-container {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .top-bar-container, .nav-container {
    padding: 0 1rem;
  }
  .nav-logo img {
    max-height: 38px;
  }
} 

/* Footer Styles */
.site-footer {
    background: #181a20;
    color: white;
    font-size: 0.95rem;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-container-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 240px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

.contact-item i {
    color: #C5A572;
    width: 16px;
}

.footer-cta {
    display: inline-block;
    background: #C5A572;
    color: #181a20;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta:hover {
    background: #b49059;
    transform: translateY(-2px);
}

.footer-column h4 {
    color: #C5A572;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column h4.gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #C5A572;
}

/* Footer CTA Section */
.footer-cta-section {
    background: #111111;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.footer-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h3 {
    color: #C5A572;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content h3.gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #e5e7eb;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-cta-button {
    background: #C5A572;
    color: #111111;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta-button:hover {
    background: #b49059;
    transform: translateY(-2px);
}

.footer-phone-button {
    background: transparent;
    color: #C5A572;
    padding: 0.875rem 2rem;
    border: 2px solid #C5A572;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-phone-button:hover {
    background: #C5A572;
    color: #111111;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-signals .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.trust-signals .trust-item i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    background: #111111;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom-content p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-column {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-content, .promo-features {
        flex-direction: column;
        gap: 0.5rem;
    }
} 


/* Flash Sale Modal Styles */
.flash-sale-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.flash-sale-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flash-sale-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    color: white;
}

.flash-sale-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.flash-sale-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.flash-sale-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.flash-sale-header h2 {
    margin: 0 0 20px;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flash-sale-timer {
    margin-top: 15px;
}

.timer-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 8px;
    border-radius: 8px;
    min-width: 60px;
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 2px;
}

.flash-sale-body {
    padding: 25px 30px;
}

.flash-sale-offer h3 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.flash-sale-offer p {
    margin: 0 0 20px;
    text-align: center;
    opacity: 0.9;
    line-height: 1.5;
}

.flash-sale-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.flash-sale-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.flash-sale-features li i {
    color: #4ade80;
    margin-right: 10px;
    font-size: 0.8rem;
}

.flash-sale-pricing {
    text-align: center;
    margin-bottom: 20px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.sale-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
}

.savings-text {
    margin: 0;
    font-weight: 600;
    color: #fbbf24;
}

.flash-sale-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.flash-sale-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    margin-bottom: 15px;
}

.flash-sale-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    color: white;
}

.flash-sale-disclaimer {
    margin: 15px 0 0;
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flash-sale-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .flash-sale-header,
    .flash-sale-body,
    .flash-sale-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .flash-sale-header h2 {
        font-size: 1.5rem;
    }
    
    .timer-display {
        gap: 10px;
    }
    
    .timer-unit {
        min-width: 50px;
        padding: 8px 6px;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
    
    .flash-sale-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
} 