/* 
   AYMEDYA PHOTOGRAPHY - STABLE PREMIUM STUDIO DESIGN
   Focus: Clarity, Professionalism, Gray & White Sophistication
   Standard, Reliable UI/UX for Photography Services
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-gray: #f8f8f8;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --border-color: #eeeeee;
    --primary-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* 
   HEADER: Redefined UX (Floating & Glassmorphism)
*/
/* HEADER: Shortened Design */
header {
    position: fixed;
    top: 20px; /* Thinner top offset */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    z-index: 1000;
    padding: 8px 40px; /* Reduced padding for shorter height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled, header.scrolled, header.no-hero {
    top: 10px;
    padding: 8px 30px; /* Even shorter on scroll */
    background: #ffffff; /* Solid white */
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    width: 90%; /* Slightly wider for better presence on light pages */
}

header .logo img {
    height: 55px; /* Proportioned to shorter header */
    transition: all 0.5s ease;
    filter: brightness(0) invert(1); /* Default: White for dark hero */
}

header.scrolled .logo img, header.no-hero .logo img {
    height: 45px;
    filter: brightness(0); /* On Scroll: Black for white header */
}

/* FOOTER: Minimalist Centered Structure */
footer {
    background: #fdfdfd;
    color: #1a1a1a;
    padding: 80px 8% 40px;
    border-top: 1px solid #eeeeee;
    text-align: center; /* Centered focus */
}

.footer-logo img {
    height: 120px;
    margin-bottom: 40px;
    filter: brightness(0);
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links-row li a {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links-row li a:hover {
    opacity: 0.5;
}

.footer-info-row {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff; /* White initially */
    position: relative;
    opacity: 0.8;
}

header.scrolled .nav-links li a, header.no-hero .nav-links li a {
    color: #000000; /* Pure black for maximum readability */
    opacity: 1;
}

.nav-links li a:hover {
    opacity: 1;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.btn-cta {
    padding: 10px 22px;
    background: var(--primary-black);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* 
   HERO: Redefined UI (Professional Cinematic Split)
*/
/* 
   HERO: CINEMATIC FULL-SCREEN ARCHITECTURE
*/
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-bg-media img.active {
    opacity: 0.6;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.25); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 
   HUD (Heads Up Display) Elements 
   Ammodya Branding Overlay
*/
.hero-hud {
    position: absolute;
    bottom: 50px;
    left: 80px;
    right: 80px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}

.hud-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hud-item span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
}

.hud-item strong {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 10;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: translateX(-50%) translateY(-20px); opacity: 0; }
    50% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* SECTIONS & GRIDS */
section {
    padding: 120px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title span {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 700;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-top: 15px;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #f2f2f2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    border-color: #000;
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 35px;
    display: block;
    color: #111;
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.service-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* PACKAGES SECTION: Minimalist Price Cards */
/* ============================================================ */
/* ULTRA-PREMIUM PACKAGES REDESIGN                              */
/* ============================================================ */
.packages {
    background: #fafafa;
    padding: 140px 8%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: start;
}

/* Base Card Styling */
.package-card {
    background: #fff;
    border: 3px solid #1a1a1a; /* Kalınlaştırılmış zarif siyah çerçeve */
    border-radius: 12px; /* Çok hafif oval görünüm */
    padding: 40px 30px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Yumuşak gölge */
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: #000000;
}

/* TOP 2: Digital & Video (Horizontal & Compact) */
.packages-grid .package-card:nth-child(1),
.packages-grid .package-card:nth-child(2) {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    padding: 30px 40px;
    gap: 30px;
    min-height: 160px;
    background: linear-gradient(to right, #ffffff, #fcfcfc);
}

.packages-grid .package-card:nth-child(1) .pkg-header,
.packages-grid .package-card:nth-child(2) .pkg-header {
    flex: 1;
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #222;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    display: block;
}

/* Premium Styling */
.package-card.premium {
    grid-column: span 6;
    background: #000;
    color: #fff;
    border: none;
    padding: 50px 80px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    overflow: visible;
}

.package-card.premium h3 {
    color: #f59e0b;
    font-size: 2.2rem;
}

.package-card.premium .package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
}

.package-card.premium .package-features li {
    color: #999;
}

.package-card.premium .package-features li::before {
    color: #f59e0b;
}

.package-card.premium .package-price {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Compact middle row (3 items) */
.packages-grid .package-card:nth-child(3),
.packages-grid .package-card:nth-child(4),
.packages-grid .package-card:nth-child(5) {
    grid-column: span 2;
    min-height: 440px; /* Force equal height for a tidy row */
}

/* Modern Button */
.btn-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
}

.btn-package:hover {
    background: #333;
    transform: scale(1.05);
}

.package-card.premium .btn-package {
    background: #f59e0b;
    color: #000;
}

/* Animated subtle background glow for all cards on hover */
.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(0,0,0,0.01), transparent);
    z-index: -1;
}

@media (max-width: 1100px) {
    .packages-grid .package-card:nth-child(n) { grid-column: span 6; flex-direction: column; text-align: center; }
    .package-card.premium .package-features { justify-content: center; margin: 30px 0; }
    .package-card.premium { padding: 40px; }
}

.package-card.premium h3 {
    color: #f59e0b;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.package-card.premium .package-features li {
    color: #bbb;
}

.package-card.premium .package-price {
    color: #f59e0b;
}

.package-card.premium .btn-package {
    border-color: #f59e0b;
    color: #f59e0b;
    background: transparent;
}

.package-card.premium:hover .btn-package {
    background: #f59e0b;
    color: #000;
}

/* Animated Glow for Premium */
.package-card.premium::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #f59e0b, #fff, #f59e0b);
    background-size: 400%;
    z-index: -1;
    border-radius: inherit;
    opacity: 0.3;
    animation: goldGlow 8s linear infinite;
}

@keyframes goldGlow {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 480px;
    overflow: hidden;
    border-radius: 12px; /* Çok hafif oval görünüm */
    border: 3px solid #1a1a1a; /* Kalınlaştırılmış zarif siyah çerçeve */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Yumuşak gölge */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    border-color: #000000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FOOTER Redesign: Light Theme for Black Logo */
footer {
    background: #fdfdfd;
    color: #1a1a1a;
    padding: 100px 8%;
    border-top: 1px solid #eeeeee;
    text-align: center; /* Centered focus on all pages */
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 0px;
    filter: brightness(0); /* Black logo as requested */
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #000;
}

.footer-links ul li a {
    color: #666;
}

.footer-links ul li a:hover {
    color: #000;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    text-align: left;
    font-size: 0.8rem;
    color: #555;
}

.footer-socials {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials a {
    color: #1a1a1a;
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: #f59e0b; /* Gold accent on hover */
}

.footer-designer {
    flex: 1;
    text-align: right;
    font-size: 0.8rem;
    color: #555;
}

.footer-designer a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-designer a:hover {
    color: #f59e0b;
}

/* CONTACT & FORMS */
.minimal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.minimal-form label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}

.minimal-form input, 
.minimal-form textarea {
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #f2f2f2;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.minimal-form input:focus, 
.minimal-form textarea:focus {
    outline: none;
    border-color: #000;
}

.contact-info .info-item:hover i {
    transform: scale(1.2);
    color: #000;
}

.contact-info .info-item i {
    transition: all 0.3s ease;
}

.contact-info/* RESPONSIVE DESIGN: MASTER ARCHITECTURE */

/* Mobile Menu Toggle Styling */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

header.scrolled .mobile-toggle span, header.no-hero .mobile-toggle span {
    background: #000;
}

/* Premium Mobile Toggle Open State (Cross Transformation) */
.mobile-toggle.open span {
    background: #000 !important;
}
.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.open span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* MASTER RESPONSIVE ARCHITECTURE: Final Polish */

/* --- FAQ / SSS Accordion --- */

.faq-section {
    padding: 140px 8%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    transition: color 0.3s ease;
}
.faq-item:hover .faq-question {
    color: #f59e0b;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 20px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s ease;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: #000;
    transition: all 0.3s ease;
}
.faq-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- Smooth Homepage Enhancements --- */
.premium-services .ps-num {
    transition: transform 0.5s ease;
}
.ps-row:hover .ps-num {
    transform: translateY(-10px) scale(1.1);
    color: rgba(245, 158, 11, 0.1);
}
.package-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* --- Hakkımızda Görselleri İçin Zarif Çerçeve & Oval Kenarlar --- */
.about-summary img, 
.about-story img, 
.hero-image img {
    border-radius: 12px !important;
    border: 3px solid #1a1a1a !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-summary img:hover, 
.about-story img:hover, 
.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* --- Hakkımızda Resim Köşesindeki Dalgalanan Slogan Rozeti --- */
.about-slogan-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #000000;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 100px;
    border: 3px solid #1a1a1a;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: floatBadge 6s ease-in-out infinite;
}

.about-slogan-badge i {
    font-size: 1.4rem;
    color: #f59e0b; /* Altın rengi vurgu */
}

.about-slogan-badge div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.about-slogan-badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    font-weight: 700;
    line-height: 1.2;
}

.about-slogan-badge strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-top: 2px;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* --- INFINITE TEXT MARQUEE --- */
.marquee-ticker {
    background: transparent; /* Kutu görünümü kaldırıldı, tamamen transparan ve renksiz */
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 65px; /* Herodan ayırmak için yukarıdan boşluk */
    margin-bottom: 25px; /* Portfolyodan ayırmak için aşağıdan boşluk */
}
.marquee-track {
    display: flex;
    width: max-content;
}
.marquee-content {
    display: flex;
    align-items: center;
    animation: marqueeAnimation 105s linear infinite; /* Çok yavaş ve asil akış */
    gap: 40px; /* Zarif ve birbirine yakın boşluklar */
    padding-right: 40px; /* Kesintisiz döngü için eşit son boşluk */
}
.marquee-content span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; /* Zarif ve dengeli boyut */
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    background: linear-gradient(135deg, #111111 30%, #333333 70%, #d97706 100%); /* Beyaz zeminde görünür olması için koyu kömürden altına geçiş */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; /* Temiz tasarım için gölgeler kaldırıldı */
    display: inline-block;
}
.marquee-content .dot {
    color: #d97706; /* Koyu altın rengi nokta */
    font-size: 1.8rem;
    margin: 0;
    -webkit-text-fill-color: initial;
    background: none;
}
@keyframes marqueeAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- REVIEWS MARQUEE BOARDS --- */
.reviews-marquee {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}
.reviews-track {
    display: flex;
    width: max-content;
}
.reviews-content {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    animation: reviewsMarqueeAnimation 40s linear infinite;
}
.review-card {
    background: #111111;
    color: #ffffff;
    border: 3px solid #1a1a1a;
    border-radius: 16px;
    padding: 35px;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}
.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f59e0b; /* Gold hover border */
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.1);
}
.review-card .t-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}
.review-card .t-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
}
.review-card .t-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}
.review-card .t-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.review-card .t-meta {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f59e0b;
    font-weight: 700;
}
@keyframes reviewsMarqueeAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Shift 50% for seamless looping */
}


/* --- PREMIUM SILVER SHINE SWEEP BUTTON EFFECT --- */
.btn-cta, .btn-package {
    position: relative;
    overflow: hidden;
}
.btn-cta::before, .btn-package::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}
.btn-cta:hover::before, .btn-package:hover::before {
    left: 150%;
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- LEVITATION CARD HOVER SCALES --- */
.service-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease, box-shadow 0.6s ease !important;
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: #f59e0b !important; /* Gold border accent flash */
    box-shadow: 0 20px 45px rgba(0,0,0,0.06) !important;
}


