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

/* ========== VISUALLY HIDDEN (SEO) ========== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
}

/* Header Top - Logo */
.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    position: relative;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(201, 168, 76, 0)); }
    50% { filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.6)); }
}

/* Header Bottom - Navigation */
.header-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #c9a84c;
}

.nav-menu > li > a .arrow {
    font-size: 14px;
    transform: rotate(-90deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-menu > li.has-dropdown:hover > a .arrow {
    transform: rotate(0deg);
}

/* CTA Button */
.nav-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #c9a84c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 24px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #b8953e;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 8px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: #ccc;
    font-weight: 400;
    transition: all 0.2s ease;
}

.dropdown li a:hover {
    color: #c9a84c;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 30px;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.slide-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 8px;
    margin-bottom: 16px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #c9a84c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
    position: relative;
    overflow: visible;
}

.slide.active .slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a84c;
    animation: ctaRipple 2.5s ease-out infinite;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn:hover {
    background: #b8953e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.slide.active .slide-btn:hover {
    transform: translateY(-2px);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    bottom: 32px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.slider-prev { left: 40px; }
.slider-next { right: 40px; }

.slider-arrow:hover {
    background: rgba(201,168,76,0.3);
    border-color: #c9a84c;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* About Image */
.about-image {
    position: relative;
    flex: 0 0 45%;
}

.about-image-border {
    position: absolute;
    top: -25px;
    right: auto;
    left: -25px;
    bottom: 25px;
    width: calc(100% - 25px);
    border: 3px solid #c9a84c;
    z-index: 0;
}

.about-image img {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* About Reverse */
.about-reverse {
    border-bottom: none;
    border-top: 1px solid #eee;
}

.about-reverse .about-container {
    flex-direction: row;
}

.about-border-reverse {
    top: -25px;
    left: 25px;
    right: -25px;
    bottom: 25px;
    width: auto;
}

/* About Content */
.about-content {
    flex: 1;
}

.about-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* About Features */
.about-features {
    display: flex;
    gap: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 50px;
    color: #D8B251;
    line-height: 1;
    display: inline-block;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

/* ========== ABOUT ALT SECTION ========== */
.about-alt-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.about-alt-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-alt-content {
    flex: 1;
}

.about-alt-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    font-style: italic;
    color: #222;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #c9a84c;
}

.about-alt-subtitle {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.subtitle-bar {
    width: 4px;
    height: 30px;
    background: #c9a84c;
}

.about-alt-subtitle p {
    font-size: 18px;
    color: #444;
}

.about-alt-subtitle .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c9a84c;
    font-size: 20px;
}

.about-alt-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 28px;
}

.about-alt-text strong {
    color: #333;
}

.about-alt-list {
    list-style: none;
    margin-bottom: 36px;
}

.about-alt-list li {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-alt-list li i {
    color: #c9a84c;
    font-size: 14px;
}

.about-alt-footer {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-alt-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-alt-logo img {
    height: 45px;
    width: auto;
}

.about-alt-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name-alt {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.1;
}

.logo-sub-alt {
    font-size: 10px;
    color: #888;
    letter-spacing: 2px;
}

.about-alt-btn {
    padding: 10px 30px;
    border: 2px solid #c9a84c;
    color: #c9a84c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.about-alt-btn:hover {
    background: #c9a84c;
    color: #fff;
}

/* About Alt Image */
.about-alt-image {
    flex: 0 0 40%;
}

.about-alt-image-frame {
    position: relative;
    border: 4px solid #c9a84c;
    padding: 12px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
}

.about-alt-image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 40px 100px;
    background: #fff;
}

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

.services-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #222;
}

/* Services Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    position: relative;
    background: #f9f9f9;
    padding: 50px 30px 40px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #c9a84c;
}

/* Background decoration */
.service-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M160 20 C140 40 120 80 140 120 C160 160 180 140 180 100' stroke='%23f0d0d0' stroke-width='1' opacity='0.5'/%3E%3Cpath d='M140 10 C120 30 100 70 120 110 C140 150 160 130 160 90' stroke='%23f0d0d0' stroke-width='1' opacity='0.4'/%3E%3Cpath d='M180 40 C160 60 140 100 160 140 C180 180 200 160 200 120' stroke='%23f0d0d0' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

/* Service Image */
.service-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(201, 168, 76, 0.15);
}

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

/* Service Name */
.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #c9a84c;
    margin-bottom: 16px;
}

/* Service Description */
.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    padding: 0 10px;
}

/* Service Line */
.service-line {
    width: 80px;
    height: 1px;
    background: #ddd;
    margin: 0 auto 20px;
}

/* Service Link */
.service-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    transition: color 0.3s ease;
}

.service-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #c9a84c;
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ========== WHY SECTION ========== */
.why-section {
    background: #000000;
    padding: 100px 40px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-image {
    flex: 0 0 40%;
}

.why-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.why-full {
    display: block;
    text-align: center;
}

.why-full .why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-full .why-header {
    justify-content: center;
}

.why-full .why-grid {
    text-align: left;
}

.why-content {
    flex: 1;
}

.why-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.why-header-icon {
    font-size: 28px;
    color: #c9a84c;
}

.why-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c9a84c;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.why-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-icon {
    font-size: 24px;
    color: #c9a84c;
}

.why-item-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.why-item-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 14px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 100px 40px;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonials-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #222;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 50%;
    padding: 0 20px;
    opacity: 0.4;
    transform: scale(0.92);
    transition: all 0.6s ease;
}

.testimonial-card.active,
.testimonial-card.active + .testimonial-card {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card > div:first-child,
.testimonial-card > p,
.testimonial-card > .testimonial-author {
    position: relative;
}

.testimonial-card-inner {
    position: relative;
}

.testimonial-card {
    min-width: 50%;
    padding: 0 20px;
    opacity: 0.4;
    transform: scale(0.92);
    transition: all 0.6s ease;
}

.testimonial-card > *:not(.testimonial-quote) {
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #c9a84c;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 28px;
    min-height: 90px;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #c9a84c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: #c9a84c;
    font-weight: 500;
}

.testimonial-quote {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 0;
}

.testimonial-quote i {
    font-size: 80px;
    color: rgba(201, 168, 76, 0.08);
}

/* Testimonials Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.test-prev, .test-next {
    width: 48px;
    height: 48px;
    border: 2px solid #c9a84c;
    background: transparent;
    color: #c9a84c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.test-prev:hover, .test-next:hover {
    background: #c9a84c;
    color: #fff;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #222;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.faq-question i {
    font-size: 16px;
    color: #c9a84c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question span {
    color: #c9a84c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
    padding: 80px 0 0;
    background: #000;
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 40px;
}

.instagram-icon {
    font-size: 40px;
    color: #c9a84c;
    margin-bottom: 14px;
    display: block;
}

.instagram-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #c9a84c;
    margin-bottom: 10px;
}

.instagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.insta-item {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
}

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

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 168, 76, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insta-overlay i {
    font-size: 36px;
    color: #fff;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

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

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

/* ========== SEO SECTION ========== */
.seo-section {
    padding: 80px 40px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.seo-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.seo-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.seo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #c9a84c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.seo-line {
    width: 2px;
    height: 80px;
    background: #c9a84c;
    opacity: 0.3;
}

.seo-right {
    flex: 1;
}

.seo-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 20px;
}

.seo-title span {
    color: #c9a84c;
}

.seo-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 14px;
}

/* ========== FOOTER ========== */
.footer {
    background: #000000;
    padding: 80px 40px 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Footer About */
.footer-logo img {
    height: 65px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 16px;
}

.footer-slogan {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
}

/* Footer Columns */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li::before {
    content: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid #c9a84c;
    flex-shrink: 0;
}

.footer-links li a {
    font-size: 14px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #c9a84c;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #999;
}

.footer-contact li i {
    color: #c9a84c;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #fff;
}

.footer-credit {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* ========== BEFORE AFTER SECTION ========== */
.ba-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.ba-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.ba-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #222;
}

/* Compare Slider */
.ba-compare {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ba-compare-wrapper {
    position: relative;
    overflow: hidden;
    border: 3px solid #c9a84c;
    cursor: ew-resize;
    user-select: none;
}

.ba-compare-after {
    width: 100%;
}

.ba-compare-after img {
    width: 100%;
    display: block;
}

.ba-compare-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-compare-before img {
    display: block;
    height: 100%;
    width: auto;
    min-width: 200%;
    max-width: none;
    object-fit: cover;
}

.ba-compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.ba-compare-line {
    flex: 1;
    width: 3px;
    background: #c9a84c;
}

.ba-compare-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c9a84c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.ba-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ba-card {
    text-align: center;
}

.ba-card-img {
    position: relative;
    overflow: hidden;
    border: 3px solid #c9a84c;
}

.ba-card-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ba-card:hover .ba-card-img img {
    transform: scale(1.03);
}

.ba-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.ba-tag-before,
.ba-tag-after {
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.ba-tag-before {
    background: rgba(0, 0, 0, 0.7);
}

.ba-tag-after {
    background: rgba(201, 168, 76, 0.85);
}

.ba-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-top: 16px;
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: #000;
    padding: 80px 40px;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.05);
}

.stat-item i {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
    color: #c9a84c;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #c9a84c;
}

.stat-item p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 12px;
    color: #888;
    text-transform: uppercase;
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    padding: 100px 40px;
    background: url('../images/cta-arka-plan-masaustu.avif') center/cover no-repeat;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary {
    padding: 16px 44px;
    background: #c9a84c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #b8953e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.cta-btn-secondary {
    padding: 16px 44px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #c9a84c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
    transition: opacity 0.3s ease;
    z-index: 999;
    animation: whatsappRipple 2.5s ease-out infinite;
}

.whatsapp-btn::before,
.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #c9a84c;
    animation: rippleWave 2.5s ease-out infinite;
}

.whatsapp-btn::after {
    animation-delay: 0.8s;
}

@keyframes rippleWave {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #b8953e;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
}

/* ========== BACK TO TOP ========== */
.nav-cta {
    position: relative;
    overflow: visible;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a84c;
    animation: ctaRipple 2.5s ease-out infinite;
}

@keyframes ctaRipple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scaleX(1.4) scaleY(2); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #c9a84c;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b8953e;
    transform: translateY(-3px);
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== HEADER SCROLL ========== */
.header.scrolled .header-top {
    padding: 10px 40px;
}

.header.scrolled .logo-img {
    height: 55px;
    transition: height 0.3s ease;
}

.header-top, .logo-img {
    transition: all 0.3s ease;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #fff;
    padding: 25px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 5px solid #c9a84c;
    border-radius: 8px;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.cookie-content a {
    color: #c9a84c;
    font-weight: 600;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-btn--accept {
    background: #c9a84c;
    color: #fff;
}

.cookie-btn--accept:hover {
    background: #b3933a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
