:root {
    --navy: #2B2D42;
    --ivory: #FAF9F6;
    --beige: #E8D9C8;
    --gold: #D4AF37;
    --charcoal: #444444;

    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

    --transition-short: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-long: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--charcoal);
    background: linear-gradient(135deg, var(--navy) 0%, #1a1c2d 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.quantum-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--ivory);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
    color: var(--ivory);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-short);
}

a:hover {
    color: var(--beige);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-short);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #b69121;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
    position: relative;
    z-index: 100;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
    background: rgba(43, 45, 66, 0.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--ivory);
    margin-left: var(--space-sm);
    position: relative;
    transition: var(--transition-short);
}

.logo-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-medium);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: var(--space-lg);
    position: relative;
}

nav a {
    color: var(--ivory);
    font-weight: 500;
    padding: var(--space-xs) 0;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-medium);
}

nav a:hover::after {
    width: 100%;
}

.header-shrink {
    padding: var(--space-xs) 0;
    background: rgba(43, 45, 66, 0.95);
}

footer {
    background-color: var(--navy);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: var(--space-lg);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: var(--space-xs);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--beige);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.7) 0%, rgba(26, 28, 45, 0.9) 100%);
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.service-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.service-title {
    color: var(--ivory);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transform: translateX(-40px);
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.about-content {
    transform: translateX(40px);
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    text-align: center;
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-md);
    border: 3px solid var(--gold);
    transition: var(--transition-medium);
}

.team-member:hover .team-image {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--beige);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-lg);
    align-items: center;
}

.contact-info {
    transform: translateX(-40px);
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.contact-form {
    transform: translateX(40px);
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--ivory);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--ivory);
    font-family: var(--font-secondary);
    transition: var(--transition-short);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you {
    text-align: center;
    padding: var(--space-xl) 0;
    animation: fadeIn 1s ease;
}

.thank-you-title {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.thank-you-message {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
    animation: fadeIn 1s ease;
}

.error-code {
    font-size: 8rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1;
}

.error-message {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-xl);
}

.home-button {
    margin-top: var(--space-lg);
    display: inline-block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(43, 45, 66, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    z-index: 1000;
    border-top: 1px solid var(--gold);
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image {
        width: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        display: none;
        width: 70%;
        height: 100vh;
        background: rgba(43, 45, 66, 0.98);
        backdrop-filter: blur(10px);
        transition: var(--transition-medium);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    nav.active {
        display: flex;
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: var(--space-md) 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-col {
        flex: 0 0 100%;
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    h2 {
        font-size: 2rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .service-card,
    .team-member,
    .contact-form {
        padding: var(--space-md);
    }
}

.quantum-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.product-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.product-title {
    color: var(--ivory);
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.product-price {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
}

.fabric-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.menu-open{
    overflow: hidden;
}

.responsive-table{
    overflow: auto;
}


.service-pricing {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-lg);
}

.service-pricing h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.service-pricing p {
    color: var(--beige);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-md);
}

.about-content ul li {
    position: relative;
    padding-left: var(--space-md);
    color: var(--ivory);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.about-content ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

.contact-details {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.contact-details i {
    color: var(--gold);
    font-size: 1.1rem;
}

.product-card .btn {
    margin-top: var(--space-md);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
}

.product-card:hover .product-title {
    color: var(--gold);
}

.product-image img {
    border-radius: var(--border-radius-md);
    transition: var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    opacity: 0.9;
}