:root {
    --warm-white: #F8F6F3;
    --deep-navy: #2A3B4C;
    --muted-gold: #C0A46B;
    --soft-gray: #E1E1E1;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(42, 59, 76, 0.1);
    --shadow-md: 0 4px 8px rgba(42, 59, 76, 0.15);
    --shadow-lg: 0 8px 16px rgba(42, 59, 76, 0.2);

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--warm-white);
    color: var(--deep-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
            radial-gradient(circle at 10% 20%, rgba(192, 164, 107, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(42, 59, 76, 0.03) 0%, transparent 50%);
    background-size: 100% 100%;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--deep-navy);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--muted-gold);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--muted-gold);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: var(--deep-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--muted-gold);
    color: var(--muted-gold);
}

.btn-outline:hover {
    background-color: var(--muted-gold);
}

.header {
    position: relative;
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: all var(--transition-fast);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--deep-navy);
    text-decoration: none;
}

.logo-symbol {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 12px;
    background: linear-gradient(135deg, var(--muted-gold), var(--deep-navy));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.logo-symbol:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: var(--warm-white);
    border-radius: 50%;
    transform-origin: center;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
}

.nav {
    display: flex;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--deep-navy);
    transition: all var(--transition-fast);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: var(--space-md);
    position: relative;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--muted-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(42, 59, 76, 0.7), rgba(42, 59, 76, 0.4)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(42, 59, 76, 0.7) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s 0.5s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    max-width: 80%;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--muted-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-med);
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 200px;
    background-color: var(--soft-gray);
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-med);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--space-md);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
}

.about-content {
    padding-right: var(--space-lg);
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.about-subtitle {
    color: var(--muted-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    background-color: var(--muted-gold);
    z-index: -1;
}

.about-img:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    background-color: var(--deep-navy);
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.contact-info {
    padding-right: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--muted-gold);
    margin-right: var(--space-sm);
}

.contact-text {
    flex: 1;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.form {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--soft-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--muted-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(192, 164, 107, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.footer {
    background-color: var(--deep-navy);
    color: white;
    padding: var(--space-lg) 0;
    margin-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.footer-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--muted-gold);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-link a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--muted-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--deep-navy);
    transform: translateY(-5px);
}

.cookies-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--deep-navy);
    color: white;
    padding: var(--space-md);
    z-index: 9999;
    display: none;
}

.cookies-consent.active {
    display: block;
}

.cookies-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.cookies-text {
    flex: 1;
    margin-bottom: 0;
}

.cookies-buttons {
    display: flex;
    gap: var(--space-sm);
}

.page-header {
    padding: var(--space-xl) 0;
    background-color: var(--deep-navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(192, 164, 107, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    position: relative;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
}

.breadcrumbs-item:not(:last-child):after {
    content: '/';
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-link {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-link:hover {
    color: white;
}

.breadcrumbs-item:last-child .breadcrumbs-link {
    color: var(--muted-gold);
    pointer-events: none;
}

.testimonials {
    padding: var(--space-xl) 0;
    background-color: rgba(225, 225, 225, 0.3);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-item {
    padding: var(--space-lg);
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: var(--space-md);
    position: relative;
    padding: 0 var(--space-md);
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: var(--muted-gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text:before {
    left: 0;
    top: -20px;
}

.testimonial-text:after {
    right: 0;
    bottom: -40px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-navy);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--muted-gold);
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-med);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 250px;
    background-color: var(--soft-gray);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-med);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--space-md);
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--muted-gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.product-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.product-feature {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-feature:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--muted-gold);
    font-weight: 600;
}

.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.thank-you-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--muted-gold), var(--deep-navy));
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--muted-gold);
    margin-bottom: var(--space-md);
}

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--muted-gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.policy-content {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.policy-section {
    margin-bottom: var(--space-lg);
}

.policy-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-navy);
}

.policy-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--deep-navy);
}

.policy-list {
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.policy-item {
    margin-bottom: 0.5rem;
}

.home-button {
    display: inline-flex;
    align-items: center;
    margin-top: var(--space-md);
    font-weight: 500;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-content,
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        display: none;
        bottom: 0;
        width: 80%;
        max-width: 300px;
        background-color: var(--deep-navy);
        padding: var(--space-lg);
        flex-direction: column;
        z-index: 101;
        transition: right var(--transition-med);
    }

    .nav.active {
        right: 0;
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        margin-top: var(--space-lg);
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: var(--space-md);
    }

    .nav-link {
        color: white;
        font-size: 1.2rem;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        transition: all var(--transition-med);
    }


    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cookies-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .cookies-buttons {
        width: 100%;
    }

    .error-code {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .logo{
        font-size: 1.3rem;
    }

    html {
        font-size: 13px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        width: 95%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .error-code {
        font-size: 5rem;
    }
}

.glowing-border {
    position: relative;
}

.glowing-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--muted-gold);
    border-radius: inherit;
    opacity: 0;
    transition: all var(--transition-med);
    pointer-events: none;
    animation: glow 3s infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.5; box-shadow: 0 0 15px var(--muted-gold); }
}

.glowing-border:hover::after {
    opacity: 1;
    box-shadow: 0 0 20px var(--muted-gold);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-med), transform var(--transition-med);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-med), transform var(--transition-med);
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.float {
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.ripple:active:after {
    width: 300%;
    height: 300%;
    opacity: 1;
    transition: all 0.6s ease;
}

.scroll-reveal {
    position: relative;
}

.scroll-reveal:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--muted-gold);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.6s ease;
    z-index: 1;
}

.scroll-reveal.active:before {
    transform: scaleX(0);
}

.scroll-reveal-content {
    opacity: 0;
    transition: opacity 0.3s 0.6s ease;
}

.scroll-reveal.active .scroll-reveal-content {
    opacity: 1;
}

.text-gradient {
    background: linear-gradient(to right, var(--deep-navy), var(--muted-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.fancy-box {
    position: relative;
    z-index: 1;
}

.fancy-box:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background-color: var(--muted-gold);
    z-index: -1;
    opacity: 0.1;
    transition: all var(--transition-med);
}

.fancy-box:hover:before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.2;
}

.morphing-bg {
    position: relative;
    overflow: hidden;
}

.morphing-bg:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--muted-gold) 0%, transparent 50%);
    opacity: 0.05;
    animation: rotate 20s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: all 0s;
}

.hover-shine:hover:after {
    left: 150%;
    transition: all 0.8s ease;
}

.gradient-btn {
    background: linear-gradient(45deg, var(--muted-gold), var(--deep-navy));
    color: white;
}

.gradient-btn:hover {
    background: linear-gradient(45deg, var(--deep-navy), var(--muted-gold));
}

.parallax-section {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.animated-border-box {
    position: relative;
    overflow: hidden;
}

.animated-border-box:before,
.animated-border-box:after {
    content: '';
    position: absolute;
    background-color: var(--muted-gold);
}

.animated-border-box:before {
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.5s;
}

.animated-border-box:after {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
    transition: height 0.5s 0.5s;
}

.animated-border-box:hover:before {
    width: 100%;
}

.animated-border-box:hover:after {
    height: 100%;
}

.animated-border-box .border-helper:before,
.animated-border-box .border-helper:after {
    content: '';
    position: absolute;
    background-color: var(--muted-gold);
}

.animated-border-box .border-helper:before {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    transition: width 0.5s 1s;
}

.animated-border-box .border-helper:after {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
    transition: height 0.5s 1.5s;
}

.animated-border-box:hover .border-helper:before {
    width: 100%;
}

.animated-border-box:hover .border-helper:after {
    height: 100%;
}

.floating-elements {
    position: relative;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
    background: var(--muted-gold);
    pointer-events: none;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation: float 7s infinite ease-in-out;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    width: 120px;
    height: 120px;
    animation: float 9s infinite ease-in-out;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 30%;
    width: 60px;
    height: 60px;
    animation: float 8s infinite ease-in-out;
    animation-delay: 2s;
}

.geometric-pattern {
    position: relative;
}

.geometric-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(45deg, var(--deep-navy) 25%, transparent 25%, transparent 75%, var(--deep-navy) 75%),
            linear-gradient(45deg, var(--deep-navy) 25%, transparent 25%, transparent 75%, var(--deep-navy) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.dotted-pattern {
    position: relative;
}

.dotted-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--deep-navy) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.05;
    pointer-events: none;
}

.wavy-border {
    position: relative;
    overflow: hidden;
}

.wavy-border:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 30" preserveAspectRatio="none"><path d="M0,0 C300,30 600,0 900,30 L1200,0 L1200,30 L0,30 Z" fill="%232A3B4C" /></svg>');
    background-size: 100% 100%;
}

.curtain-effect {
    position: relative;
    overflow: hidden;
}

.curtain-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
            90deg,
            var(--deep-navy),
            var(--deep-navy) 1px,
            transparent 1px,
            transparent 10px
    );
    opacity: 0.03;
    animation: curtain-sway 10s infinite ease-in-out;
}

@keyframes curtain-sway {
    0%, 100% { background-position: 0px 0px; }
    50% { background-position: 10px 0px; }
}

.blinds-pattern {
    position: relative;
    overflow: hidden;
}

.blinds-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
            0deg,
            var(--deep-navy),
            var(--deep-navy) 1px,
            transparent 1px,
            transparent 10px
    );
    opacity: 0.03;
}

.fabric-texture {
    position: relative;
}
