@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --charcoal-dark: #1a1a1a;
    --charcoal-medium: #2d2d2d;
    --charcoal-light: #3d3d3d;
    --rose-gold: #b76e79;
    --rose-gold-light: #d4a5a5;
    --rose-gold-dark: #8b5a5a;
    --emerald-accent: #0d7377;
    --emerald-light: #14a3a8;
    --sapphire-blue: #1e3a5f;
    --sapphire-bright: #2e5a8f;
    --cream: #faf8f5;
    --warm-white: #f5f3f0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #f5f3f0;
    --gold-accent: #c9a962;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 64px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

strong, p {
    color: inherit;
}

a {
    color: var(--emerald-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--rose-gold);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary-custom::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-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(183, 110, 121, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--charcoal-dark);
    padding: 14px 32px;
    border: 2px solid var(--charcoal-dark);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 52px;
}

.btn-secondary-custom:hover {
    background: var(--charcoal-dark);
    color: white;
    border-color: var(--charcoal-dark);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border: 2px solid white;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 52px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--charcoal-dark);
}

.text-light {
    color: var(--text-light) !important;
}
.section-dark {
    background-color: var(--charcoal-dark);
    color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--text-light);
}

.section-cream {
    background-color: var(--cream);
    color: var(--text-primary);
}

.section-accent {
    background: linear-gradient(135deg, var(--emerald-accent) 0%, var(--sapphire-blue) 100%);
    color: white;
}

.section-accent h1, .section-accent h2, .section-accent h3 {
    color: white;
}

.navbar-custom {
    background: var(--charcoal-dark);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Navbar alignment styles */
.navbar-custom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.navbar-brand:hover {
    color: var(--rose-gold);
}

.nav-link-custom {
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 80%;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--rose-gold);
}

/* Desktop menu alignment - ensure logo and menu are on the same line */
@media (min-width: 992px) {
    .navbar-custom {
        align-items: center;
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .collapse.navbar-collapse {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .navbar-nav {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .nav-link-custom {
        display: flex;
        align-items: center;
        height: 100%;
    }
}

/* Navbar Toggler Styles */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    color: var(--rose-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(183, 110, 121, 0.2);
    color: var(--rose-gold);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    background-color: rgba(183, 110, 121, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23b76e79' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d4a5a5' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M8 16l8-8 8 8M8 16l8 8 8-8'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--charcoal-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../glass-visuals/hero-watchmaker.webp') center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 50%, rgba(183, 110, 121, 0.3) 100%);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Mobile menu overlay styles */
@media (max-width: 991px) {
    .navbar-collapse {
    background: var(--charcoal-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        z-index: 999;
        border-top: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link-custom {
        border-radius: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .nav-link-custom:last-child {
        border-bottom: none;
    }
    
    .navbar-toggler {
        position: relative;
        z-index: 1000;
    }
    
    /* Add subtle glow effect to mobile menu */
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--rose-gold), var(--emerald-accent));
        opacity: 0.5;
    }
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link-custom {
    padding: 12px 16px;
    border-radius: 4px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link-custom:hover {
    background: rgba(183, 110, 121, 0.2);
    color: var(--rose-gold);
}

.navbar-nav .nav-link-custom.active {
    background: rgba(183, 110, 121, 0.3);
    color: var(--rose-gold);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-title-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold) 0%, var(--gold-accent) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold) 0%, var(--emerald-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 12px;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--emerald-accent);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sapphire-blue) 0%, var(--emerald-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-card {
    background: var(--charcoal-dark);
    border-radius: 12px;
    padding: 40px;
    color: white;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: var(--rose-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rose-gold);
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.author-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 28px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 4px;
}

.team-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--rose-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.contact-info-card {
    background: var(--charcoal-dark);
    border-radius: 12px;
    padding: 40px;
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.contact-info-card a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-card a:hover {
    color: var(--rose-gold);
}

.form-control-custom {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: var(--transition-smooth);
    background: white;
    color: var(--text-primary);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-control-custom::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

textarea.form-control-custom {
    min-height: 150px;
    resize: vertical;
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
    color: white;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--rose-gold);
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-accent) 0%, var(--sapphire-blue) 100%);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-accent), transparent);
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--charcoal-dark);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--warm-white);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--charcoal-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: var(--rose-gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--warm-white);
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.footer-custom {
    background: var(--charcoal-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rose-gold);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--rose-gold);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: var(--charcoal-dark);
    color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    display: block;
}

.cookie-consent-banner h5 {
    font-size: 18px;
    margin-bottom: 12px;
}

.cookie-consent-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: white;
}

.page-header {
    background: var(--charcoal-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../glass-visuals/hero-watchmaker.webp') center center/cover no-repeat;
    opacity: 0.2;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.page-title {
    font-size: clamp(42px, 5vw, 64px);
    color: white;
}

.page-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.detail-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.detail-content {
    padding: 32px;
}

.detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 16px;
}

.detail-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.detail-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-list li::before {
    content: '✓';
    color: var(--emerald-accent);
    font-weight: bold;
}

.detail-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--emerald-accent);
    margin-bottom: 20px;
}

.price-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

@media (max-width: 991px) {
    .navbar-custom {
        padding: 16px 0;
    }

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

    .section-padding {
        padding: 70px 0;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .process-step::after {
        display: none;
    }
}

/* Mobile Navbar Toggler Styles */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .navbar-collapse.show {
        display: flex !important;
    }
    
    .navbar-nav {
        flex-direction: row;
    }
    
    .navbar-nav .nav-link-custom {
        padding: 12px 16px;
        border-radius: 4px;
        margin: 0 2px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 767px) {
    .navbar-toggler {
        padding: 0.75rem 1.25rem;
        font-size: 1.75rem;
    }
    
    .navbar-toggler-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {
    .navbar-toggler {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .glass-card,
    .service-card {
        padding: 28px 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-banner {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 20px;
    }

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

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 22px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 14px 24px;
        font-size: 13px;
    }
}