/* Accessibility Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
    max-width: 100%;
    margin: 0 auto;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Animated hamburger to X */
nav.active .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

nav.active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

nav.active .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

header.scrolled .logo {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    transition: color 0.3s ease;
    color: var(--color-primary);
}

header.scrolled .nav-links a {
    color: var(--color-text);
}

.nav-links a:hover {
    color: var(--color-primary-dark);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 120%; /* Slightly taller to account for parallax movement */
    object-fit: cover;
    object-position: center;
    will-change: transform; /* Optimizes performance for the transform animation */
    transform: translateY(0); /* Initial position */
    transition: transform 0.05s linear; /* Smooth movement */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: var(--font-size-xxl);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content p {
    position: relative;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    display: inline-block;
    max-width: 800px;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    z-index: 1;
}

.hero-content p::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: rgba(0,0,0,0.25);
    z-index: -1;
}

.cta-button {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
}

/* Intro Section */
.intro {
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: var(--font-size-xl);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.intro-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.intro-content p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

/* Templates Section */
.templates-slider {
    margin-top: 4rem;
    max-width: 946px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.templates-slides {
    position: relative;
    overflow: hidden;
}

.template-preview {
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.template-preview.template-active {
    display: block;
    opacity: 1;
}

.templates-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.templates-btn:hover {
    opacity: 1;
}

.templates-btn.templates-prev {
    left: 10px;
}

.templates-btn.templates-next {
    right: 10px;
}

.templates-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.template-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-bg-light);
    cursor: pointer;
    transition: background-color 0.3s;
}

.template-dot.template-dot-active {
    background: var(--color-primary);
}

.template-preview h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.template-preview img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.template-preview a:hover img {
    transform: scale(1.02);
}

.template-preview iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* FAQ Section */

#faq {
    background: var(--color-bg-light);
}


.faq-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
    max-width: 946px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    text-align: center;
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background: var(--color-bg-light);
    color: var(--color-text);
    text-align: center;
}

.faq-answer.visible {
    display: block;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    justify-items: center; /* Aligns items horizontally to the center */
    align-items: center; /* Aligns items vertically to the center */
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.contact-cta {
    margin-top: 1rem;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius);
}

/* Inclusions Section */
.inclusions {
    padding: 4rem 2rem;
    background: var(--color-bg-light);
    display: flex;
    justify-content: center;
}
.inclusions-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    background: none;
    box-shadow: none;
    padding: 0;
}
.inclusions-col {
    flex: 1 1 0;
    min-width: 0;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2rem;
    border: 2px solid var(--color-bg-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.inclusions-col:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(1.03);
    border-color: var(--color-primary);
    z-index: 1;
}
.inclusions-col + .inclusions-col {
    margin-left: 2rem;
}
#inclusions-title, #advantages-title, #process-title {
    color: var(--color-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: 1.2rem;
}


#inclusions-list,
#advantages-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
#inclusions-list li,
#advantages-list li {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}


/* Footer */
footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 1rem;
    margin-top: 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 800px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-column h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}





/* Strikethrough for crossed-out price */
.strike {
  text-decoration: line-through;
  font-weight: bold;
}

/* Price sticker above old price */
.price-old-container {
  position: relative;
  display: inline-block;
}

.price-sticker {
  position: absolute;
  left: 90%;
  top: -0.5em;
  transform: translateX(-50%) rotate(-8deg);
  background: #ffeb3b;
  color: #d32f2f;
  font-weight: bold;
  font-size: 0.6em;
  padding: 0.10em 0.40em;
  border-radius: 0.7em 0.7em 0.7em 0.7em/1.2em 1.2em 0.7em 0.7em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
  clip-path: polygon(10% 0, 90% 0, 100% 60%, 90% 100%, 10% 100%, 0 60%);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Legal Pages Styles */
.legal-page {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-content {
    line-height: 1.7;
    color: var(--color-text);
}

.legal-content .intro {
    background: var(--color-background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-primary);
    font-weight: 500;
}

/* Override section padding for legal pages */
.legal-content section {
    padding: 1rem !important;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.hosting-info,
.contact-info {
    background: var(--color-background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border-left: 3px solid var(--color-accent);
}

.hosting-info p,
.contact-info p {
    margin-bottom: 0;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.back-link .cta-button {
    display: inline-block;
    text-decoration: none;
}



