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

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

ul, ol {
    list-style: none;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.625rem, 5vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.375rem, 4vw, 2.25rem);
}

h4 {
    font-size: 40px;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    text-wrap: pretty;
}

.section-subtitle,
.service-text,
.accordion-content,
.blog-card-excerpt,
.footer-description {
    color: var(--text-body);
    font-size: 1.0625rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-3xl) 0;
}


.top-bar {
    background: var(--brand-red-dark);
    height: 36px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.top-bar-social {
    display: flex;
    align-items: center;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    font-size: 0.85rem;
    border-radius: 50%;
    transition: all 0.2s;
    text-decoration: none;
}

.top-bar-social a:hover {
    color: var(--brand-gold);
    transform: scale(1.15);
}

.top-bar-franchise {
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.25s;
    text-shadow: 0 0 8px transparent;
    animation: franchiseNeon 3s ease-in-out infinite;
}

@keyframes franchiseNeon {

    0%, 100% { color: #fff; text-shadow: 0 0 4px transparent; }
    50% { color: var(--brand-gold); text-shadow: 0 0 12px rgba(212, 168, 83, 0.6), 0 0 24px rgba(212, 168, 83, 0.3); }

}

.top-bar-franchise:hover {
    color: var(--brand-gold);
}

.top-bar-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s;
}

.top-bar-franchise:hover .top-bar-arrow {
    transform: translateX(3px);
}

.header-ornament {
    height: 6px;
    background: var(--gold-shimmer);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(212, 168, 83, 0.4);
}

.header-ornament::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-light);
}

.header-ornament::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.6) 50%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }

}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    gap: 2px;
}

.header-phone i {
    display: none;
}

.header-phone-number {
    font-weight: 800;
    font-size: 20px;
    color: var(--ottoman-burgundy);
    letter-spacing: 1.5px;
    font-family: var(--font-display), 'Arial Black', sans-serif;
}

.header-phone-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.header-phone-label span:first-child {
    color: var(--brand-gold);
}

.header-phone-label span:last-child {
    color: var(--ottoman-burgundy);
}

.header-phone:hover .header-phone-number {
    color: var(--brand-gold);
}

.header-phone:hover .header-phone-label span:last-child {
    color: var(--brand-gold);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
    z-index: 10;
}

.nav-toggle:active {
    background: rgba(212, 168, 83, 0.1);
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: var(--ottoman-burgundy);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(139, 21, 56, 0.25));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-icon {
    display: block;
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 2px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ottoman-burgundy);
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    color: var(--gold-dark);
    font-style: italic;
    margin-top: 2px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 19, 33, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-overlay);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    border-bottom: 1px solid var(--sand);
    background: var(--ottoman-burgundy);
    flex-shrink: 0;
}

.mobile-menu-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
}

.mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    color: var(--ottoman-burgundy);
    transition: all var(--transition-fast);
}

.mobile-close:active {
    background: rgba(107, 28, 35, 0.1);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-link:active {
    background: rgba(212, 168, 83, 0.1);
}

.mobile-link.active {
    background: rgba(212, 168, 83, 0.1);
    border-left-color: var(--gold);
}

.mobile-phone-number {
    display: block;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--ottoman-burgundy);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.mobile-phone-number i {
    margin-right: 6px;
}

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    border-radius: var(--border-radius);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
}

.mobile-action-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.mobile-action-btn.phone {
    background: var(--gold-shimmer);
    color: #ffffff;
}

.mobile-action-btn:active {
    transform: scale(0.98);
}

.mobile-social {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mobile-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 28, 35, 0.1);
    color: var(--ottoman-burgundy);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.mobile-social a:active {
    background: var(--ottoman-burgundy);
    color: var(--gold);
}

@media (max-height: 600px) {
    .mobile-logo img {
        height: 36px;
    }

    .mobile-menu-header {
        padding: 6px 12px;
    }

    .mobile-link {
        padding: 5px 12px;
    }

    .mobile-link-text {
        font-size: 18px;
    }

    .mobile-link-icon {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .mobile-phone-number {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .mobile-menu-footer {
        padding: 6px 12px;
    }

    .mobile-action-btn {
        padding: 6px 4px;
    }
}

.float-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: var(--z-sticky);
}

.phone-float {
    width: 56px;
    height: 56px;
    background: var(--ottoman-burgundy);
    color: white;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.4);
    transition: all var(--transition-base);
}

.phone-float i {
    transform: scaleX(1);
}

.phone-float:active {
    transform: scale(0.95);
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    position: relative;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: var(--border-radius-full);
    background: #25D366;
    opacity: 0.4;
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {

    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }

}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + 6px);
    background: linear-gradient(160deg, var(--ottoman-burgundy-dark) 0%, var(--ottoman-burgundy) 40%, var(--ottoman-navy) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: sepia(20%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(93, 15, 37, 0.92) 0%,
        rgba(139, 21, 56, 0.88) 40%,
        rgba(13, 19, 33, 0.9) 100%
    );
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10L48 26L64 26L52 38L56 54L40 44L24 54L28 38L16 26L32 26Z' fill='%23d4a853' fill-opacity='0.03'/%3E%3C/svg%3E");
    z-index: 2;
}

.hero-decoration {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-xl);
    color: var(--text-white);
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: var(--border-radius-full);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.6s ease both;
}

.hero-badge i {
    color: var(--gold-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.55em;
    font-weight: 500;
    margin-top: var(--space-sm);
    text-shadow: 0 2px 10px rgba(212, 168, 83, 0.4);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.fa-phone-alt,
.fa-phone {
    transform: scaleX(-1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    min-height: 48px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--ottoman-burgundy) 0%, var(--ottoman-burgundy-dark) 100%);
    color: var(--text-white);
    border-color: var(--ottoman-burgundy);
    box-shadow: 0 4px 16px rgba(139, 21, 56, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(139, 21, 56, 0.5);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-shimmer);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
    font-weight: 700;
}

.btn-gold:hover {
    box-shadow: 0 6px 24px rgba(212, 168, 83, 0.5);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--ivory);
    color: var(--ottoman-burgundy);
    border-color: var(--ivory);
}

.btn-white:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--ottoman-burgundy);
    border-color: var(--ottoman-burgundy);
}

.btn-secondary:hover {
    background: var(--ottoman-burgundy);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--ottoman-burgundy);
    color: #ffffff;
    border-color: var(--ottoman-burgundy);
}

.btn-outline:hover {
    background: var(--ottoman-burgundy);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1rem;
    min-height: 56px;
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.8125rem;
    min-height: 40px;
    width: auto;
    min-width: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-shimmer);
    margin: var(--space-lg) auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 168, 83, 0.3);
}

.section-subtitle {
    color: var(--text-body);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.75;
}

.service-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 168, 83, 0.1);
    transition: all var(--transition-base);
}

.service-card:active {
    transform: scale(0.99);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
    border: 2px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--ottoman-burgundy);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.service-text {
    color: #000;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-link {
    align-items: center;
    gap: var(--space-xs);
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 25px;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.gallery-item:active img {
    transform: scale(1.05);
}

.gallery-item:active .gallery-overlay {
    opacity: 1;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.accordion-item {
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.accordion-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    min-height: 64px;
    line-height: 1.4;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--border-radius-full);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.accordion-icon i {
    font-size: 0.75rem;
    color: var(--gold-dark);
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
    background: var(--gold);
}

.accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
    color: var(--ottoman-navy);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.accordion-item.active .accordion-body {
    max-height: 400px;
}

.accordion-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid #999;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
}

.references-slider {
    overflow: hidden;
    padding: var(--space-lg) 0;
}

.references-track {
    display: flex;
    gap: var(--space-2xl);
    animation: scroll 30s linear infinite;
}

.reference-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {

    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }

}


.ref-section {
    overflow: hidden;
}

.ref-carousel-wrap {
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.ref-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.ref-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.ref-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.ref-card-img {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: #fafafa;
}

.ref-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ref-card-placeholder {
    color: var(--brand-red);
    font-size: 2.5rem;
    opacity: 0.3;
}

.ref-card-body {
    padding: 1rem 1rem 1.25rem;
}

.ref-card-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.ref-card-company {
    font-size: 20px;
    color: var(--brand-red);
    font-weight: 500;
}


.site-footer,
.site-footer a,
.site-footer span,
.site-footer p,
.site-footer h4,
.site-footer nav {
    text-transform: uppercase;
}

.site-footer {
    background: linear-gradient(175deg, var(--brand-red) 0%, var(--brand-red-dark) 55%, #2a0a12 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
}


.footer-gold-strip {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-gold) 20%, var(--brand-gold-dark, #C9A227) 50%, var(--brand-gold) 80%, transparent 100%);
    position: relative;
    z-index: 2;
}


.footer-hero {
    padding: 2.5rem 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

.footer-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: inline-block;
    transition: transform var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.04);
}

.footer-logo img {
    height: 90px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4)) brightness(1.1);
    transition: all var(--transition-base);
}

.footer-logo:hover img {
    filter: drop-shadow(0 6px 24px rgba(212, 168, 83, 0.35)) brightness(1.15);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}


.footer-phone-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.footer-phone-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-gold);
    font-weight: 600;
}

.footer-phone-number {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    transition: all var(--transition-base);
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    border: 2px solid rgba(212, 168, 83, 0.25);
    border-radius: 50px;
    background: rgba(212, 168, 83, 0.08);
}

.footer-phone-number i {
    font-size: 1.6rem;
    color: var(--brand-gold);
}

.footer-phone-number span {
    font-weight: 900;
    font-size: 60px;
    font-family: var(--font-display), 'Arial Black', sans-serif;
}

.footer-phone-number:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
    background: rgba(212, 168, 83, 0.15);
    transform: scale(1.03);
}


.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.35);
}

.footer-social a:active {
    transform: translateY(-1px);
}


.footer-main {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-column h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: var(--brand-gold);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links a {
    color: rgb(255 255 255);
    font-size: 25px;
    transition: all var(--transition-fast);
    padding: 0.3rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--brand-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-gold);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--brand-gold);
}

.footer-contact-item i {
    color: var(--brand-gold);
    margin-top: 3px;
    font-size: 0.9rem;
    min-width: 18px;
    text-align: center;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.825rem;
}

.footer-copyright small {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.7rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--brand-gold);
}

.back-to-top {
    position: static;
    order: -1;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ottoman-burgundy) 0%, var(--ottoman-burgundy-dark) 100%);
    color: var(--gold);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-sticky);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    color: white;
}

.back-to-top:active {
    transform: scale(0.95);
}

.page-banner {
    position: relative;
    padding: var(--space-4xl) 0 var(--space-3xl);
    padding-top: calc(var(--header-height) + var(--space-4xl));
    background: linear-gradient(0deg, var(--ottoman-navy) 0%, var(--ottoman-navy-light) 0%, var(--ottoman-burgundy-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 15L45 15L37 22L40 32L30 25L20 32L23 22L15 15L25 15Z' fill='%23d4a853' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-title {
    font-family: var(--font-display);
    color: var(--text-white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 0.8125rem;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--gold);
}

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

.alert {
    padding: var(--space-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.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;
}

.mb-2 {
    margin-bottom: var(--space-sm) !important;
}

.mb-4 {
    margin-bottom: var(--space-lg) !important;
}

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.gap-2 {
    gap: var(--space-sm) !important;
}

.gap-3 {
    gap: var(--space-md) !important;
}

.bg-ivory {
    background-color: var(--ivory);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(13, 19, 33, 0.95);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.lightbox-close:active,
.lightbox-close:hover {
    background: var(--gold);
    color: var(--ottoman-navy);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--text-white);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-nav:active,
.lightbox-nav:hover {
    background: var(--gold);
    color: var(--ottoman-navy);
}

@media (max-width: 768px) {
    .lightbox-nav {
        position: fixed;
        bottom: 30px;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: 30px;
    }

    .lightbox-next {
        right: 30px;
    }

    .lightbox-close {
        position: fixed;
        top: 20px;
        right: 20px;
    }
}

.about-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: var(--border-radius-lg);
    margin: 12px;
    pointer-events: none;
}

.about-content {
    text-align: center;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ottoman-burgundy) 0%, var(--ottoman-burgundy-dark) 100%);
    border-radius: var(--border-radius);
    color: var(--gold);
    font-size: 1.25rem;
}

.about-feature-text {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.why-us-section {
    background: linear-gradient(160deg, var(--ottoman-navy) 0%, var(--ottoman-burgundy-dark) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10L48 26L64 26L52 38L56 54L40 44L24 54L28 38L16 26L32 26Z' fill='%23d4a853' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.why-us-card {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.why-us-card:active,
.why-us-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 168, 83, 0.3);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: rgba(212, 168, 83, 0.1);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold);
}

.why-us-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.why-us-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cta-text {
    color: var(--ottoman-burgundy);
    font-size: 1.0625rem;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.testimonials-section {
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--text-white);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-family: serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(212, 168, 83, 0.2);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    padding-top: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.certificates-section {
    background: var(--ivory);
}

.certificate-card:active,
.certificate-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.certificate-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

.certificate-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: var(--border-radius-full);
    transition: all var(--transition-fast);
    min-height: 44px;
}

.filter-btn.active,
.filter-btn:active {
    background: var(--gold-shimmer);
    color: var(--ottoman-navy);
    border-color: var(--gold);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
}

.pagination-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-white);
    border: 1px solid var(--sand);
    border-radius: var(--border-radius);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.pagination-link.active,
.pagination-link:active {
    background: var(--gold-shimmer);
    color: var(--ottoman-navy);
    border-color: var(--gold);
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--cream);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {

    to { transform: rotate(360deg); }

}

.overflow-hidden {
    overflow: hidden !important;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }

    .hero-content {
        max-width: 800px;
    }

    .section-header {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-logo img {
        height: 85px;
    }

    .footer-logo img {
        height: 100px;
    }
}

.hero-logo-badge {
    display: inline-block;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease both;
}

.hero-logo-badge img {
    height: 100px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.btn:focus-visible,
.nav-link:focus-visible,
.mobile-link:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

::selection {
    background-color: var(--gold);
    color: var(--ottoman-navy);
}

::-moz-selection {
    background-color: var(--gold);
    color: var(--ottoman-navy);
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: calc(var(--header-height) + var(--space-xl));
}

@media print {
    .site-header,
    .float-buttons,
    .back-to-top,
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xl);
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
}

:root {
    --bg-light: var(--parchment);
    --color-bordo-dark: var(--brand-red-dark);
    --color-bordo: var(--brand-red);
    --color-gold-dark: #C9A227;
    --color-gold: #D4A853;
    --brand-gold-dark: #C9A227;
    --brand-red-light: #A91D45;
    --z-toast: 500;
    --z-modal: 400;
    --z-overlay: 300;
    --z-sticky: 200;
    --z-dropdown: 100;
    --z-base: 1;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    --shadow-gold-lg: 0 8px 32px rgba(212, 168, 83, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.3);
    --shadow-xl: 0 16px 48px rgba(13, 19, 33, 0.2);
    --shadow-lg: 0 8px 32px rgba(13, 19, 33, 0.16);
    --border-radius-full: 9999px;
    --border-radius: 8px;
    --header-height: calc(70px + var(--top-bar-height));
    --top-bar-height: 36px;
    --container-padding: 1rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
    --space-3xl: 3rem;
    --space-2xl: 2.5rem;
    --space-xl: 2rem;
    --space-lg: 1.5rem;
    --space-md: 1rem;
    --space-sm: 0.75rem;
    --space-xs: 0.5rem;
    --space-2xs: 0.25rem;
    --font-accent: 'DM Sans', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --text-white: #ffffff;
    --text-primary: #000000;
    --text-light: #000000;
    --cobalt: #1e5f8a;
    --turquoise: #4A7C7C;
    --brand-red: #A31D24;
    --brand-red-dark: #7A121A;
    --brand-gold: #C69F54;
    --brand-gold-light: #DFBE80;
    --bg-main: #FFFFFF;
    --bg-cream: #FDFBF7;
    --bg-white: #FFFFFF;
    --text-dark: #000000;
    --text-body: #000000;
    --text-muted: #000000;
    --ottoman-navy: #1A1A1A;
    --ottoman-navy-light: #2D2D2D;
    --ottoman-burgundy: var(--brand-red);
    --ottoman-burgundy-dark: var(--brand-red-dark);
    --ottoman-burgundy-light: var(--brand-red);
    --gold: var(--brand-gold);
    --gold-light: var(--brand-gold-light);
    --gold-dark: #A9833D;
    --gold-shimmer: linear-gradient(135deg, #DFBE80 0%, #C69F54 40%, #A9833D 70%, #8F6F33 100%);
    --ivory: var(--bg-main);
    --cream: var(--bg-main);
    --parchment: var(--bg-cream);
    --sand: #F0EBE1;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-weight: 400;
    overflow-x: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-main);
    background-image: none;
    font-family: var(--font-body);
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
}

.site-header {
    overflow: visible;
    z-index: var(--z-sticky);
    right: 0;
    left: 0;
    top: 0;
    position: fixed;
    background: var(--bg-main) !important;
    border-bottom: 2px solid var(--brand-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.main-nav {
    position: relative;
    overflow: visible;
    background: transparent !important;
    box-shadow: none !important;
}

.nav-content {
    position: relative;
    justify-content: space-between;
    align-items: center;
    display: flex;
    height: 90px;
}

.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translate(-50%, -50%) scale(1.03);
}

.nav-logo img {
    transition: all var(--transition-base);
    width: auto;
    height: 120px;
    margin-top: 30px;
}

.desktop-nav {
    display: none;
}

.nav-toggle .toggle-line {
    background: var(--text-dark) !important;
}

.mobile-menu {
    overflow: hidden;
    z-index: var(--z-modal);
    transition: transform var(--transition-slow);
    transform: translateX(-100%);
    height: 100vh;
    height: 100dvh;
    max-width: 300px;
    width: 85%;
    left: 0;
    top: 0;
    position: fixed;
    background: var(--bg-main) !important;
}

.mobile-link {
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
    padding: 0 14px;
    align-items: center;
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-link-text {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 25px;
    font-family: var(--font-display);
    flex: 1;
    color: var(--text-dark);
}

.mobile-link-icon {
    flex-shrink: 0;
    margin-right: 8px;
    font-size: 0.7rem;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 26px;
    width: 26px;
    background: var(--bg-cream) !important;
    color: var(--brand-red) !important;
}

.mobile-link.active .mobile-link-icon {
    background: var(--brand-red) !important;
    color: #fff !important;
}

.mobile-menu-footer {
    flex-shrink: 0;
    border-top: 1px solid var(--sand);
    padding: 8px 14px;
    background: var(--bg-cream);
}

.bg-burgundy-gradient {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%) !important;
}

.section-margin-top {
    margin-top: 3rem;
    text-align: center;
}

.cta-section {
    text-align: center;
    padding: var(--space-3xl) 0;
    background: var(--gold-shimmer);
    position: relative;
    overflow: hidden;
}

.cta-svg-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 5L35 15L45 15L37 22L40 32L30 25L20 32L23 22L15 15L25 15Z" fill="%23D4A853" fill-opacity="0.05"/%3E%3C/svg%3E');
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white, #fff);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--text-white, #fff);
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-align-start {
    align-items: start;
}

.contact-align-start .section-label {
    justify-content: flex-start;
}

.contact-align-start .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--text-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.contact-selected-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-selected-info .selected-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: var(--bg-cream);
    border: 1px solid var(--brand-gold);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    color: var(--brand-red);
    font-weight: 600;
}

.contact-selected-info .selected-tag i {
    color: var(--brand-gold);
    font-size: 0.7rem;
}

.home-stats-bar .hero-stats {
    margin-top: 0;
    transform: translateY(-50px);
    position: relative;
    z-index: 10;
}

.services-grid,
.packages-grid,
.testimonials-grid,
.contact-info-cards {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.services-grid {
    gap: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
}

.packages-grid {
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin-inline: auto;
}

.package-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.package-desc {
    color: #000;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.package-features {
    text-align: left;
    margin: 0.75rem 0;
    width: 100%;
    list-style: none;
    padding: 0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-card .btn {
    margin-top: auto;
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-sizing: border-box;
    padding: 0.7rem 1.5rem;
    font-size: 25px;
    font-weight: 600;
}

.package-image-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    margin: -2rem -2rem 1.25rem -2rem;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image {
    transform: scale(1.05);
}

.package-card.has-image .package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.package-card.has-image {
    position: relative;
}

.service-image-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
}

.service-image-wrapper .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-main {
    min-width: 0;
    overflow: hidden;
}

.service-main > .service-image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
	justify-items: center;
}

.service-main > .service-image img {
    object-fit: cover;
    display: block;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #000;
    font-size: 20px;
}

.service-card-features li i {
    color: var(--brand-gold);
    font-size: 0.75rem;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reference-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: var(--border-radius-lg, 8px);
    text-align: center;
    transition: all 0.3s;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reference-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reference-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reference-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reference-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--brand-gold);
}

.reference-card h4 {
    margin-bottom: 0.5rem;
}

.reference-company {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.reference-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-gold-dark, #a8843c);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2rem;
    text-align: center;
    color: var(--text-white, #fff);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.hero-slider-section {
    position: relative;
    width: 100%;
    margin-top: 90px;
}

.main-slider {
    width: 100%;
    height: 75vh;
    min-height: 500px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 10s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(255 255 255 / 50%) 0%, rgb(255 255 255 / 75%) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 15px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.slide-subtitle {
    display: block;
    color: var(--brand-red);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    text-align: center;
}

.slide-title {
    color: var(--text-dark);
    font-size: clamp(50px, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: none;
    text-align: center;
}

.slide-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.slide-buttons .btn-gold {
    background: var(--brand-red);
    border: none;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(163, 29, 36, 0.2);
}

.slide-buttons .btn-gold:hover {
    background: var(--brand-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 29, 36, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--brand-red);
    background: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--brand-red);
    opacity: 1;
}

.hero-stats {
    animation: fadeInUp 0.6s ease 0.4s both;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    padding-top: var(--space-xl);
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    background: #ffffff;
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.hero-stat-value {
    margin-bottom: var(--space-2xs);
    line-height: 1;
    color: var(--brand-red);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-stat-label {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw, 3rem);
    justify-self: center;
}

.section-label {
    font-size: 0.8125rem;
    gap: var(--space-sm);
    align-items: center;
    color: var(--brand-red);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(163, 29, 36, 0.05);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.service-card,
.package-card,
.testimonial-card,
.contact-card {
    background: #ffffff;
    border: 2px solid #c69f54;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 2rem;
    box-sizing: border-box;
}

.service-card::before,
.package-card::before {
    display: none;
}

.service-card:hover,
.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-gold-light);
    box-shadow: var(--shadow-md);
}

.service-icon,
.package-icon {
    background: rgba(198, 159, 84, 0.1);
    color: var(--brand-gold);
    border-radius: 50%;
    border: none;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-title,
.package-title {
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    font-size: 40px;
    line-height: 1.3;
}

.package-price {
    color: var(--brand-red);
    font-family: var(--font-display);
    border-bottom: 1px solid var(--sand);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.package-badge {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    border-radius: 50px;
    border: none;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 4px 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.package-features li {
    font-size: 20px;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--sand);
    padding: 6px 0;
    color: #000;
}

.package-features li i {
    font-size: 0.8rem;
    color: var(--brand-gold);
}

section[style*="var(--ottoman-burgundy)"] {
    background: var(--brand-red) !important;
}

section[style*="var(--ottoman-burgundy)"] h2 {
    color: #ffffff !important;
}

section[style*="var(--ottoman-burgundy)"] .btn-gold {
    background: var(--brand-gold);
    border: none;
    color: #fff;
    border-radius: 50px;
}

section[style*="var(--ottoman-burgundy)"] .btn-gold:hover {
    background: var(--gold-dark);
}

.footer-title {
    color: var(--text-dark) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer-link {
    color: var(--text-muted) !important;
}

.footer-link:hover {
    color: var(--brand-red) !important;
}

.pagination .page-item .page-link {
    background: #ffffff;
    color: var(--text-dark);
    border-color: var(--sand);
}

.pagination .page-item.active .page-link {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
}

.service-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.service-content p {
    margin-bottom: var(--space-lg);
}

.service-features-box {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-cream);
    border-radius: var(--border-radius-lg);
}

.service-features-box h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-item i {
    color: var(--color-gold);
}

.service-packages-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.service-packages-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-package-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-cream);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-packages-section {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--bg-light);
    background: var(--bg-white);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
    overflow: hidden;
}

.service-package-item:hover {
    background: var(--bg-light);
}

.package-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.package-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-package-item.popular {
    border: 2px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05), transparent);
    min-height: 100px;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 0 var(--border-radius) 0 10px;
}

.package-info {
    flex: 1;
    min-width: 0;
}

.package-info h4 {
    margin: 0 0 var(--space-xs);
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-person {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.package-price-box {
    flex-shrink: 0;
    text-align: right;
}

.package-price-box .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-bordo);
}

.service-package-item .btn {
    flex-shrink: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.sidebar-contact-box {
    background: linear-gradient(135deg, var(--color-bordo), var(--color-bordo-dark));
    color: var(--text-white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-xl);
}

.sidebar-contact-box h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.sidebar-contact-box p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.sidebar-contact-box .btn {
    margin-bottom: var(--space-md);
}

.sidebar-contact-box .btn:last-child {
    margin-bottom: 0;
}

.sidebar-info-box {
    background: var(--bg-cream);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
}

.sidebar-info-box h4 {
    margin-bottom: var(--space-lg);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.info-item i {
    color: var(--color-gold);
    width: 20px;
}

.info-item a {
    color: var(--text-dark);
}

.sidebar-services h4 {
    margin-bottom: var(--space-lg);
}

.other-services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.other-service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.service-icon-small {
    width: 40px;
    height: 40px;
    background: var(--bg-cream);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-small i {
    color: var(--color-bordo);
}

.service-thumb-small {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.service-thumb-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-service-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.sidebar-hayir-box {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--text-dark);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.hayir-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.hayir-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.sidebar-hayir-box h4 {
    margin-bottom: var(--space-sm);
}

.sidebar-hayir-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info-cards {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: var(--bg-cream);
    transform: translateX(5px);
}

.contact-card-icon {
    font-size: 1.125rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-bordo), var(--color-bordo-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-card-content h4 {
    margin-bottom: var(--space-2xs);
    font-family: var(--font-display);
    margin: 0 0 var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-card-content p,
.contact-card-content a {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-card-content a:hover {
    color: var(--color-bordo);
}

.contact-form {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-light);
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    font-family: var(--font-display);
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 20px;
}

.form-input,
.form-textarea,
select.form-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid #999;
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-input option,
.form-textarea option {
    background: #ffffff;
    color: #1a1a1a;
}

select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fffdf8;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
    color: #1a1a1a;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.map-container.custom-map-height {
    height: 450px;
    border-radius: 0;
    margin: 0;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: var(--space-xl);
}

.blog-detail-image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

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

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--bg-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.blog-content {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.blog-content p {
    margin-bottom: var(--space-md);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.blog-content li {
    margin-bottom: var(--space-sm);
}

.blog-content img {
    border-radius: var(--border-radius);
    margin: var(--space-lg) 0;
    max-width: 100%;
}

.blog-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: var(--space-lg);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--text-muted);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: var(--space-xl);
}

.certificate-card {
    border: 1px solid rgba(212, 168, 83, 0.1);
    text-align: center;
    box-shadow: var(--shadow-sm);
    background: var(--bg-cream);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
}

.certificate-image-wrapper {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.certificate-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-placeholder {
    width: 120px;
    height: 120px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.certificate-placeholder i {
    font-size: 3.5rem;
}

@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-packages-section {
        padding: var(--space-sm);
    }

    .service-package-item {
        gap: var(--space-sm);
        padding: var(--space-sm);
        overflow: hidden;
    }

    .service-package-item .package-item-image {
        width: 50px;
        height: 50px;
    }

    .service-package-item .package-info {
        flex: 1;
        min-width: 0;
    }

    .service-package-item .package-info h4 {
        font-size: 25px;
    }

    .service-package-item .package-price-box {
        flex-shrink: 1;
    }

    .service-package-item .package-price-box .price {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .service-package-item .btn {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        white-space: nowrap;
        flex-shrink: 1;
    }

    .blog-layout-grid,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
}

.col-full {
    grid-column: 1 / -1;
}

.relative-z1 {
    position: relative;
    z-index: 1;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    position: relative;
    width: 100%;
}

.about-image .position-relative {
    position: relative;
}

.about-image-main {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--brand-gold);
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main img {
    max-width: 100%;
    max-height: 100%;
}

.about-placeholder-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.about-placeholder-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(163, 29, 36, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 1.1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.stat-icon {
    font-size: 2rem;
    color: var(--brand-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.value-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

@media (min-width: 600px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-cream);
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.reason-item h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.reason-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.reason-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(163, 29, 36, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 1.1rem;
}

.bg-brand-red {
    background: var(--brand-red) !important;
}

.bg-brand-gold {
    background: var(--brand-gold) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-light-color {
    color: var(--text-light) !important;
}

.text-white {
    color: #fff !important;
}

.text-center {
    text-align: center !important;
}

.text-start {
    text-align: left !important;
}

.position-relative {
    position: relative !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-1 {
    flex: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.fs-1 {
    font-size: 2.5rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.font-display {
    font-family: var(--font-display) !important;
}

.fst-italic {
    font-style: italic !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mt-3 {
    margin-top: var(--space-md) !important;
}

.mt-4 {
    margin-top: var(--space-lg) !important;
}

.mt-5 {
    margin-top: var(--space-2xl) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--space-xs) !important;
}

.mb-3 {
    margin-bottom: var(--space-md) !important;
}

.pt-4 {
    padding-top: var(--space-lg) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.border-top {
    border-top: 1px solid var(--sand) !important;
}

.border-0 {
    border: none !important;
}

.h-100 {
    height: 100% !important;
}

.small {
    font-size: 0.875rem !important;
}

.opacity-10 {
    opacity: 0.1 !important;
}

.ml-2 {
    margin-left: var(--space-sm) !important;
}

.package-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--sand);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.package-service {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1;
}

.price-value {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1;
}

.price-currency {
    font-size: 30px;
    font-weight: 600;
    color: var(--brand-red);
}

.price-person {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.package-persons {
    color: #000;
    font-size: 20px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.package-persons i {
    color: var(--brand-gold);
}

.testimonial-rating {
    margin-bottom: var(--space-md);
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: #ccb99a;
    font-size: 0.875rem;
}

.testimonial-rating i.active {
    color: var(--brand-gold);
}

.testimonial-content {
    color: var(--text-body);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }

    .section {
        padding: var(--space-5xl) 0;
    }

    .nav-logo img {
        height: 68px;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.8125rem;
    }

    .footer-phone-number {
        font-size: 2rem;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .footer-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .footer-contact-list {
        align-items: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .about-content {
        text-align: left;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-logo-badge img {
        height: 120px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 2rem;
        --header-height: calc(90px + var(--top-bar-height));
    }

    .nav-content {
        justify-content: flex-start;
        gap: var(--space-3xl);
    }

    .header-phone {
        display: flex;
        margin-left: auto;
        order: 99;
    }

    .header-phone-number {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }

    .header-phone-label {
        font-size: 0.6rem;
        letter-spacing: 4px;
    }

    .footer-logo img {
        height: 100px;
    }

    .footer-phone-number {
        font-size: 2.25rem;
    }

    .nav-menu {
        display: flex;
        justify-content: center;
        gap: var(--space-xs);
        padding: var(--space-sm) 0;
    }

    .nav-link {
        padding: var(--space-sm) var(--space-lg);
        font-family: var(--font-accent);
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-dark);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        position: relative;
        transition: color var(--transition-fast);
    }

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

    .nav-link:hover,
    .nav-link.active {
        color: var(--ottoman-burgundy);
    }

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

    .hero-content {
        max-width: 700px;
        text-align: center;
    }

    .hero-decoration {
        display: block;
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(212, 168, 83, 0.1);
        border-radius: 50%;
        animation: rotate 60s linear infinite;
    }

    .hero-decoration::before {
        content: '';
        position: absolute;
        inset: 40px;
        border: 1px solid rgba(212, 168, 83, 0.08);
        border-radius: 50%;
    }

    @keyframes rotate {

        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    
    }

    .hero-stat-value {
        font-size: 2.5rem;
    }

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

    .service-card:hover .service-icon {
        background: linear-gradient(135deg, var(--ottoman-burgundy) 0%, var(--ottoman-burgundy-dark) 100%);
    }

    .service-card:hover .service-icon i {
        color: var(--gold);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links a:hover {
        color: var(--brand-gold);
    }

    .float-buttons {
        bottom: 30px;
        right: 30px;
    }

    .phone-float {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .phone-float:hover {
        transform: scale(1.1) translateY(-4px);
        box-shadow: 0 6px 25px rgba(139, 21, 56, 0.5);
    }

    .whatsapp-float {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-4px);
    }

    .back-to-top {
        width: 54px;
        height: 54px;
    }

    .back-to-top:hover {
        background: var(--gold);
        color: var(--ottoman-navy);
        transform: translateY(-4px);
    }

    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-logo-badge img {
        height: 140px;
    }

    .nav-toggle {
        display: none;
    }

    .desktop-nav {
        background: rgba(212, 168, 83, 0.05);
        display: block;
        flex: 1;
    }

    .site-header {
        display: block;
        border-bottom: 2px solid var(--brand-gold);
    }

    .nav-logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .nav-logo:hover {
        transform: scale(1.05);
    }

    .nav-logo img {
        height: 120px;
        filter: none;
        border-radius: 0;
        background: none;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .desktop-nav .nav-menu {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
    }

    .desktop-nav .nav-link {
        font-family: var(--font-body);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark) !important;
        position: relative;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    .desktop-nav .nav-link:hover,
    .desktop-nav .nav-link.active {
        color: var(--brand-red) !important;
        border-color: var(--brand-red);
    }

    .desktop-nav .nav-link::after {
        display: none !important;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    color: var(--text-white);
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
}

.gallery-category {
    color: var(--brand-gold);
    font-size: 0.8125rem;
    margin-top: 2px;
}

.blog-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--sand);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-placeholder-img {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category-badge {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-display);
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--brand-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
}

.blog-card-body {
    padding: var(--space-xl);
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.blog-card-meta i {
    color: var(--brand-gold);
    margin-right: 0.25rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--brand-red);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.blog-card-footer {
    border-top: 1px solid var(--sand);
    padding-top: var(--space-md);
}

.blog-read-more {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--brand-red);
    font-size: 0.875rem;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    gap: var(--space-md);
}

.pagination-item {
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--sand);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.pagination-item.active,
.pagination-item:hover {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
}

.sidebar-widget {
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-xl);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--sand);
    color: var(--text-dark);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.category-list-item {
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: #fff;
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.category-list-item:hover {
    background: var(--brand-red);
    color: #fff !important;
}

.featured-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.featured-post-item {
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--sand);
    transition: color 0.2s ease;
}

.featured-post-item:last-child {
    border-bottom: none;
}

.featured-post-item:hover {
    color: var(--brand-red) !important;
}

.featured-post-img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.featured-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 var(--space-xs);
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-share-section {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
}

.social-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.social-share-btn.facebook {
    background: #1877F2;
}

.social-share-btn.twitter {
    background: #1DA1F2;
}

.social-share-btn.whatsapp {
    background: #25D366;
}

.social-share-btn.linkedin {
    background: #0A66C2;
}

.author-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.faq-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--space-xl);
}

.faq-info-card {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-info-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-info-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.faq-info-icon.red {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: #fff;
}

.faq-info-icon.gold {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--text-dark);
}

.quality-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quality-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.quality-check-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    flex-shrink: 0;
}

.accordion-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-gold);
    font-family: var(--font-display);
    min-width: 2.5rem;
}

.accordion-question {
    flex: 1;
}

.working-hours-box {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-cream);
    border-radius: var(--border-radius-lg);
}

.working-hours-box h4 {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.working-hours-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.cta-inner-box {
    padding: 3rem;
    border-radius: inherit;
}

.quality-award-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem;
    color: #fff;
}

.bg-light {
    background-color: var(--parchment) !important;
}

.bg-white {
    background: var(--bg-main) !important;
    background-color: #ffffff !important;
}

.bg-cream {
    background: var(--bg-cream) !important;
    background-color: var(--cream) !important;
}

.section-sm {
    padding: var(--space-xl) 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-12 {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.text-gold {
    color: var(--brand-gold) !important;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.fw-500 {
    font-weight: 500;
}

.opacity-25 {
    opacity: 0.25;
}

.custom-map-height {
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.home-stats-bar {
    background-color: var(--bg-main);
    position: relative;
    z-index: 5;
}

@media (max-width: 767px) {
    .home-stats-bar .hero-stats {
        transform: none;
    }
}

.contact-card-icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.value-icon--gold {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
}

.gallery-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl) 0;
}

.gallery-empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    display: block;
}

.gallery-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.error-page-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-page-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.error-page-code {
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xl);
    color: var(--brand-red);
    font-family: var(--font-display);
}

.error-page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-md);
}

.error-page-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-3xl);
    color: var(--text-muted);
}

.hero-fallback {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
}

.hero-fallback .hero-title {
    color: var(--brand-red);
}

.blog-empty-icon {
    font-size: 3rem;
    opacity: 0.25;
}

.certificate-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.certificate-issuer {
    color: var(--brand-gold-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.certificate-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.certificate-date {
    font-size: 0.8125rem;
}

.certificate-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl) 0;
}

.certificate-empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    display: block;
}

.quality-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-desc.text-start {
    text-align: left;
}

.faq-container {
    max-width: 900px;
}

.faq-empty-state {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.faq-empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    display: block;
}

.contact-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info-box {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
}

.contact-info-box-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.contact-info-box-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-box h4 {
    color: var(--text-white);
    margin: 0;
}

.contact-info-box p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.selected-package-box {
    padding: var(--space-md);
    background: var(--bg-cream);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--brand-gold);
}

.selected-package-box strong {
    display: block;
    color: var(--brand-red);
}

.form-privacy-note {
    font-size: 0.8rem;
    text-align: center;
}

.franchise-banner {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin: 0 auto var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-cream);
}

.franchise-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: var(--border-radius-lg);
}

.franchise-section {
    background: var(--bg-cream);
    padding-top: calc(var(--header-height) + var(--space-3xl)) !important;
}

.franchise-wrap {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.franchise-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.franchise-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: #1a1a1a;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.franchise-desc {
    color: #444444;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto var(--space-xl);
}

.franchise-form {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand);
    box-sizing: border-box;
}

.franchise-field {
    margin-bottom: var(--space-lg);
}

.franchise-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}

.franchise-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #999;
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

select.franchise-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.franchise-input:focus {
    outline: none;
    border-color: var(--gold, #D4A853);
    background: #fffdf8;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.18);
}

.franchise-input::placeholder {
    color: #aaa;
}

.franchise-input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.franchise-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.franchise-kvkk {
    margin-top: var(--space-sm);
}

.kvkk-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
}

.kvkk-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.kvkk-checkbox-label a {
    color: var(--ottoman-burgundy);
    font-weight: 600;
    text-decoration: underline;
}

.kvkk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kvkk-modal-overlay.active {
    display: flex;
}

.kvkk-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.kvkk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.kvkk-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--ottoman-burgundy);
}

.kvkk-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.kvkk-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.7;
}

.franchise-submit {
    width: 100%;
    margin-top: var(--space-xs);
    padding: 0.85rem;
    font-size: 1.05rem;
    gap: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 360px) {
    .franchise-form {
        padding: var(--space-sm);
    }

    .franchise-field {
        margin-bottom: 0.5rem;
    }

    .franchise-label {
        font-size: 0.82rem;
        margin-bottom: 0.2rem;
    }

    .franchise-input,
    .ssd-trigger {
        font-size: 16px;
        padding: 0.6rem 0.65rem;
    }
}

.ssd-wrap {
    position: relative;
}

.ssd-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    border: 2px solid #999;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #1a1a1a;
    min-height: 48px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.ssd-trigger:focus {
    outline: none;
    border-color: var(--gold, #D4A853);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.18);
}

.ssd-trigger.open {
    border-color: var(--gold, #D4A853);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.18);
}

.ssd-trigger.disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #999;
}

.ssd-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ssd-value.placeholder {
    color: #aaa;
}

.ssd-arrow {
    font-size: 0.75rem;
    color: #666;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.ssd-trigger.open .ssd-arrow {
    transform: rotate(180deg);
}

.ssd-panel {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    min-width: 200px;
    background: #fff;
    border: 2px solid var(--gold, #D4A853);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 300;
}

.ssd-panel.open {
    display: block;
}

.ssd-search-wrap {
    padding: 8px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.ssd-search {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.ssd-search:focus {
    border-color: var(--gold, #D4A853);
}

.ssd-list {
    max-height: 200px;
    overflow-y: auto;
}

.ssd-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: background 0.12s;
}

.ssd-item:hover,
.ssd-item.focused {
    background: #f5ede0;
    color: #8b1538;
}

.ssd-item.selected {
    background: #fdf3e3;
    color: #8b1538;
    font-weight: 600;
}

.ssd-empty {
    padding: 0.75rem 1rem;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.ss-empty {
    padding: 0.7rem 1rem;
    color: #666666;
    font-size: 0.875rem;
    font-style: italic;
}

@media (max-width: 640px) {
    .franchise-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .franchise-wrap {
        max-width: 100%;
        margin-top: 20px;
    }

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

    .franchise-form {
        padding: var(--space-md);
        border-radius: var(--border-radius);
        border-left: none;
        border-right: none;
    }

    .franchise-field {
        margin-bottom: 0.75rem;
    }

    .franchise-label {
        margin-bottom: 0.25rem;
    }

    .franchise-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .franchise-desc {
        margin-bottom: var(--space-md);
    }

    .franchise-banner {
        border-radius: var(--border-radius);
    }

    .franchise-input,
    .ssd-trigger {
        font-size: 16px;
        padding: 0.65rem 0.75rem;
        min-height: 44px;
    }

    select.franchise-input {
        padding-right: 36px;
        background-position: right 8px center;
    }

    .franchise-submit {
        font-size: 25px;
        padding: 0.75rem;
    }


    .footer-phone-number {
        font-size: 50px;
        font-weight: 900;
        color: #ffffff;
        text-transform: uppercase;
        padding: 0.3rem 0.9rem;
        letter-spacing: 2px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-hero {
        padding: 2rem 0 1.5rem;
    }

    .footer-main {
        padding: 1.5rem 0;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .ssd-panel {
        background: #fff;
        z-index: 1000;
    }
}

.toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    animation: toastOverlayIn 0.25s ease;
}

.toast-overlay.toast-hiding {
    animation: toastOverlayOut 0.4s ease forwards;
}

.toast-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: toastCardIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.toast-overlay.toast-hiding .toast-card {
    animation: toastCardOut 0.35s ease forwards;
}

.toast-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
}

.toast-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.toast-message {
    font-size: 1.05rem;
    color: #2d2d2d;
    line-height: 1.6;
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.toast-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-red);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--brand-red);
    border-radius: 50px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.toast-phone i {
    font-size: 1rem;
}

.toast-phone:hover {
    background: var(--brand-red);
    color: #fff;
}

.toast-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    line-height: 1;
}

.toast-close:hover {
    color: #555;
    background: #f0f0f0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #D4A853, #8B1538);
    border-radius: 0 0 16px 16px;
    transform-origin: left;
}

@keyframes toastOverlayIn {

    from { opacity: 0; }
    to   { opacity: 1; }

}

@keyframes toastOverlayOut {

    from { opacity: 1; }
    to   { opacity: 0; }

}

@keyframes toastCardIn {

    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }

}

@keyframes toastCardOut {

    from { opacity: 1; transform: scale(1) translateY(0); }
    to   { opacity: 0; transform: scale(0.9) translateY(-10px); }

}

@media (max-width: 480px) {
    .toast-card {
        padding: 2rem 1.5rem 1.75rem;
    }
}