/* ================= CSS VARIABLES & THEMING ================= */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

/* Dark Theme (Default) */
[data-theme="dark"] {
    --bg-main: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #141414;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --accent-gold: #C5A059;
    --accent-gold-hover: #dcb365;
    --border-color: rgba(197, 160, 89, 0.15);
    --border-strong: rgba(197, 160, 89, 0.4);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Light Theme */
[data-theme="light"] {
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-main: #171717;
    --text-muted: #52525b;
    --accent-gold: #C5A059;
    --accent-gold-hover: #b48e48;
    --border-color: rgba(197, 160, 89, 0.25);
    --border-strong: rgba(197, 160, 89, 0.6);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#preloaderCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#mouseCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.neon-text {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(197, 160, 89, 0.6),
        0 0 20px rgba(197, 160, 89, 0.4);
    animation: pulsate 1.5s ease-in-out infinite alternate;
}

.neon-line {
    width: 0;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 0 10px var(--accent-gold), 0 0 20px var(--accent-gold);
    margin-bottom: 20px;
    animation: drawLine 0.6s ease forwards 0.3s;
}

.neon-subtitle {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.6s ease forwards 0.8s;
}

@keyframes pulsate {
    100% {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.9),
            0 0 15px rgba(197, 160, 89, 0.8),
            0 0 30px rgba(197, 160, 89, 0.5);
    }

    0% {
        text-shadow:
            0 0 2px rgba(255, 255, 255, 0.5),
            0 0 5px rgba(197, 160, 89, 0.4),
            0 0 15px rgba(197, 160, 89, 0.2);
    }
}

@keyframes drawLine {
    to {
        width: 100px;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESET & GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-primary);
    color: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 80px 0;
}

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

.mt-40 {
    margin-top: 40px;
}

/* ================= TYPOGRAPHY ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

.subtitle {
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.highlight {
    color: var(--accent-gold);
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-outline-light {
    border: 1px solid var(--border-strong);
    color: var(--text-main);
}

.btn-outline-light:hover {
    border-color: var(--accent-gold);
    background-color: rgba(197, 160, 89, 0.1);
}

/* ================= HEADER & NAVBAR ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.3));
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    font-size: 20px;
    color: var(--accent-gold);
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-main);
}

/* ================= HERO SECTION ================= */
.hero {
    padding: 180px 0 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background effects */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 25px;
}

.hero .description {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 20px;
}

.feature-item span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
    white-space: nowrap;
}

.hero-image {
    flex: 1.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* align-self: stretch and overflow: hidden removed to allow image to grow */
}

.hero-image img {
    width: 150%;
    /* Makes the image larger than its container */
    max-width: none;
    /* Removes the max-width restriction */
    height: auto;
    margin-right: -30%;
    margin-top: 10%;
    /* Pushes it slightly to the right to balance */
    object-fit: contain;
    z-index: 10;

    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= SERVICES SECTION ================= */
.services {
    background-color: var(--bg-secondary);
}

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

.section-header h2 {
    font-size: 36px;
}

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

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-icon i {
    font-size: 40px;
    color: var(--accent-gold);
}

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

.service-card:hover .service-icon i {
    color: #000;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.read-more {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* ================= ABOUT SECTION ================= */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content .description {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-features .feature:last-child {
    border-right: none;
    padding-right: 0;
}

.about-features .feature i {
    color: var(--accent-gold);
    font-size: 28px;
}

.about-features .feature span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

/* ================= PROJECTS SECTION ================= */
.projects {
    background-color: var(--bg-secondary);
}

.projects-carousel {
    position: relative;
    padding: 0 60px;
    /* Space for navigation buttons */
    margin: 0 -20px;
    /* Offset container padding if necessary */
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-strong);
    background-color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-gold);
    transition: var(--transition);
}

.nav-btn.prev {
    left: 0;
}

.nav-btn.next {
    right: 0;
}

.nav-btn:hover {
    background-color: var(--accent-gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.projects-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
    width: 100%;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 350px;
    /* Fixed width for carousel items */
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-card);
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
    opacity: 1;
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.project-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.project-info p {
    font-size: 12px;
    color: var(--accent-gold);
}

/* ================= STATS & TESTIMONIAL ================= */
.stats-testimonial {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: #050505;
    background-image: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('../../image/mermer.png');
    background-size: cover;
    background-position: center;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--border-color);
}

.quote-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-strong);
    cursor: pointer;
}

.dot.active {
    background-color: var(--accent-gold);
}

/* ================= FOOTER ================= */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.footer-col h4 {
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

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

.footer-col ul li a,
.footer-col ul li p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.contact-col ul li {
    display: flex;
    gap: 10px;
}

.contact-col i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.newsletter-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--text-main);
    outline: none;
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--accent-gold);
    color: #000;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 42px;
    }

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

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 60px;
        min-height: auto;
    }

    .hero-container,
    .about-container,
    .stats-container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features,
    .about-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .feature-item,
    .about-features .feature {
        border-right: none !important;
        padding-right: 0 !important;
    }

    .hero-image {
        margin-top: 40px;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        margin: 0;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* In real app, toggle this with JS */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header .btn-outline {
        display: none;
    }

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

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features,
    .about-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

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

/* ================= CONTACT PAGE STYLES ================= */
.contact-header {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.page-header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-header-content p {
    color: var(--text-muted);
    font-size: 16px;
}

.header-decor {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 0;
}

.header-decor i {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.3;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
}

.header-decor .icon-1 {
    font-size: 60px;
    top: 10%;
    left: 20%;
    transform: rotate(-15deg);
}

.header-decor .icon-2 {
    font-size: 45px;
    top: 30%;
    right: 10%;
    transform: rotate(15deg);
}

.header-decor .icon-3 {
    font-size: 55px;
    bottom: 20%;
    right: 30%;
    transform: rotate(-10deg);
}

.header-decor .icon-4 {
    font-size: 40px;
    bottom: 30%;
    left: 10%;
    transform: rotate(20deg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    pointer-events: none;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin-right: 12px;
    transition: var(--transition);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.cb-text {
    font-size: 13px;
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.security-note {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-note i {
    color: var(--text-muted);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.info-card .icon-box {
    margin-bottom: 20px;
}

.info-card .icon-box i {
    font-size: 32px;
    color: var(--accent-gold);
}

.info-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.info-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.map-section {
    position: relative;
    height: 400px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.custom-map-marker {
    background: none !important;
    border: none !important;
}

#contact-map {
    filter: brightness(0.85) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.5) 50%, transparent 100%);
}

.map-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.map-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.map-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 400px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.faq-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.faq-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.faq-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
    padding-right: 20px;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 25px;
    color: var(--accent-gold);
    font-size: 14px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(197, 160, 89, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-icon {
    font-size: 60px;
    color: var(--accent-gold);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 16px;
}

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

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

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .map-overlay {
        background: rgba(5, 5, 5, 0.8);
        text-align: center;
    }

    .map-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

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

/* Projects Page Styles */
.project-hero {
    padding: 160px 0 0;
    background: radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
        #050505;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.02" fill-rule="evenodd"><circle cx="3" cy="3" r="1"/></g></svg>');
    pointer-events: none;
}

.project-hero-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.project-hero-content {
    flex: 1.2;
    text-align: left;
    position: relative;
    z-index: 2;
}

.project-hero-content .subtitle {
    color: var(--accent-gold);
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
}

.project-hero-content h1 {
    font-size: 4.2rem;
    margin: 0 0 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.project-hero-content h1 .highlight {
    background: linear-gradient(135deg, #C5A059 0%, #F5D69E 50%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.project-hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 550px;
}

.project-hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.project-hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.project-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.3));
    animation: floatHero 6s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(1deg);
    }
}

.project-hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.project-hero-decor i {
    position: absolute;
    color: var(--accent-gold);
}

.project-hero-decor .icon-1 {
    top: 20%;
    left: 10%;
    font-size: 100px;
    transform: rotate(-15deg);
}

.project-hero-decor .icon-2 {
    top: 15%;
    right: 15%;
    font-size: 80px;
    transform: rotate(15deg);
}

.project-hero-decor .icon-3 {
    bottom: 10%;
    left: 30%;
    font-size: 120px;
    transform: rotate(5deg);
}

.project-filter-section {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #080808;
    position: sticky;
    top: 80px;
    z-index: 10;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.filter-tab i {
    font-size: 0.8rem;
}

.filter-tab.active {
    border-color: var(--accent-gold);
    color: #000;
    background: var(--accent-gold);
    font-weight: 600;
}

/* Featured Project Card */
.featured-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(145deg, #0f0f0f, #080808);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.featured-project-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.05);
}

.featured-img {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.featured-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.featured-project-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.featured-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.featured-mini-stats {
    display: flex;
    gap: 40px;
}

.mini-stat h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.mini-stat p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-project-section {
    padding-bottom: 30px;
}

.projects-page-grid-section {
    padding-top: 30px;
}

/* Projects Grid */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pp-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.pp-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.pp-card-img {
    height: 250px;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pp-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.pp-card:hover .pp-card-img img {
    transform: scale(1.1);
}

.pp-card-info {
    padding: 25px;
}

.pp-card-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.pp-card-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Project Stats Bar */
.project-stats-bar {
    padding: 60px 0;
    background-color: #050505;
    background-image: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('../../image/mermer.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ps-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ps-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.8;
}

.ps-data h3 {
    font-size: 1.8rem;
    line-height: 1;
}

.ps-data p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.02);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.2;
}

/* Blog Page Styles */
.blog-hero {
    padding: 160px 0 0;
    background: radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
        #050505;
    position: relative;
    overflow: hidden;
}

.blog-hero-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.blog-hero-content {
    flex: 1.2;
}

.blog-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
}

.blog-hero-image {
    flex: 1;
}

.blog-hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.2));
    animation: floatHero 6s ease-in-out infinite;
}

.blog-filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

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

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.blog-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.blog-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-card-info {
    padding: 25px;
}

.blog-card-info h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-card:hover .blog-card-info h3 {
    color: var(--accent-gold);
}

.blog-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.blog-card-btn:hover {
    gap: 12px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-card-meta i {
    color: var(--accent-gold);
    margin-right: 5px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background: var(--accent-gold);
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px 50px 15px 20px;
    border-radius: 10px;
    color: #fff;
}

.sidebar-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    transition: var(--transition);
}

.sidebar-categories li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.popular-post-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.popular-post-info h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-post-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sidebar-newsletter input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 15px;
}

.sidebar-newsletter button {
    width: 100%;
    background: var(--accent-gold);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-newsletter button:hover {
    background: #fff;
}

/* Pagination */
.blog-pagination {
    display: flex;
    gap: 10px;
    margin-top: 50px;
    justify-content: center;
}

.page-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn.active,
.page-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
}

@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero-content h1 {
        font-size: 3rem;
    }
}

.process-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.process-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .projects-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .featured-project-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-hero-content h1 {
        font-size: 2.5rem;
    }

    .projects-page-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Hakkımızda Sayfası CSS */

    .about-hero {
        background: linear-gradient(135deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .9));
        padding: 100px 0;
        text-align: center;
    }

    .about-hero h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 52px;
        color: #f7f2e7;
    }

    .about-hero h1 span {
        color: #d4a43a;
    }

    .about-hero p {
        color: #bdb7aa;
        font-size: 18px;
        margin-top: 18px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        padding: 80px 0;
    }

    .about-grid {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .about-image img {
        width: 100%;
        max-width: 540px;
        border-radius: 18px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    }

    .about-text h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 36px;
        color: #f7f2e7;
        margin-bottom: 20px;
    }

    .about-text p {
        color: #bdb7aa;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .about-text .btn.gold {
        margin-top: 16px;
        padding: 14px 24px;
        font-weight: 700;
        font-size: 15px;
        border-radius: 8px;
    }

    .about-mission {
        padding: 60px 0;
        background: #101010;
    }

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

    .mission-box {
        background: rgba(212, 164, 58, .08);
        border: 1px solid rgba(212, 164, 58, .25);
        border-radius: 16px;
        padding: 28px;
        text-align: center;
        transition: transform .3s;
    }

    .mission-box:hover {
        transform: translateY(-6px);
    }

    .mission-box h3 {
        color: #d4a43a;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mission-box p {
        color: #bdb7aa;
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Hakkımızda Sayfası CSS */

.about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .9));
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #f7f2e7;
}

.about-hero h1 span {
    color: #d4a43a;
}

.about-hero p {
    color: #bdb7aa;
    font-size: 18px;
    margin-top: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #f7f2e7;
    margin-bottom: 20px;
}

.about-text p {
    color: #bdb7aa;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text .btn.gold {
    margin-top: 16px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
}

.about-mission {
    padding: 60px 0;
    background: #101010;
}

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

.mission-box {
    background: rgba(212, 164, 58, .08);
    border: 1px solid rgba(212, 164, 58, .25);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: transform .3s;
}

.mission-box:hover {
    transform: translateY(-6px);
}

.mission-box h3 {
    color: #d4a43a;
    font-size: 20px;
    margin-bottom: 12px;
}

.mission-box p {
    color: #bdb7aa;
    font-size: 15px;
    line-height: 1.6;
}

/* Genel */
.about-page {
    background: #050505;
    color: #f5f1e8;
    font-family: 'Inter', sans-serif;
}

.about-page .container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* Etiketler */
.about-label {
    display: inline-block;
    color: #d4a43a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

/* Başlıklar */
.about-page h1,
.about-page h2,
.about-page h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
}

.about-page h1 span,
.about-page h2 span {
    color: #d4a43a;
}

/* Paragraflar */
.about-page p {
    color: #c8c0b1;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

/* Butonlar */
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    border: 1px solid rgba(212, 164, 58, 0.25);
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn-gold {
    background: linear-gradient(135deg, #d4a43a, #f1c75b);
    color: #111;
    border: none;
    box-shadow: 0 14px 28px rgba(212, 164, 58, .18);
}

.about-btn-dark {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

/* HERO */
.about-hero {
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: clamp(44px, 6vw, 82px);
    margin-bottom: 24px;
    color: #fff;
}

.about-hero-content p {
    max-width: 700px;
    font-size: 18px;
    margin-bottom: 28px;
}

.about-mini-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.mini-box {
    min-width: 150px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 164, 58, 0.16);
    border-radius: 14px;
    text-align: center;
}

.mini-box span {
    display: block;
    color: #d4a43a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mini-box small {
    color: #c8c0b1;
    font-size: 13px;
}

/* Hero Görseli */
.about-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-visual img {
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(212, 164, 58, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

/* Biz Kimiz */
.about-story {
    padding: 60px 0 40px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
}

.about-story-content h2 {
    font-size: clamp(34px, 4vw, 58px);
    color: #fff;
    margin-bottom: 18px;
}

/* Values / Misyon & Vizyon */
.about-values {
    padding: 50px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 164, 58, 0.18);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 164, 58, 0.38);
}

.value-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 164, 58, 0.08);
    color: #d4a43a;
    font-size: 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 164, 58, 0.22);
}

.value-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #c8c0b1;
}

/* Team / Ekip */
.about-team {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 164, 58, 0.16);
    transition: transform .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 164, 58, 0.34);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-info {
    padding: 16px;
}

.team-info h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}

.team-info span {
    color: #d4a43a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.team-info p {
    font-size: 14px;
    color: #c8c0b1;
}

/* CTA */
.about-cta {
    padding: 50px 0;
}

.about-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(212, 164, 58, 0.18);
    background: rgba(255, 255, 255, 0.025);
}

.about-cta-box h2 {
    font-size: clamp(34px, 4vw, 50px);
    color: #fff;
}

.about-cta-box p {
    color: #c8c0b1;
    font-size: 16px;
}

/* Responsive */
@media(max-width:1200px) {

    .about-hero-grid,
    .about-story-grid,
    .about-values-grid,
    .team-grid,
    .about-cta-box {
        grid-template-columns: 1fr;
    }
}

@media(max-width:640px) {
    .team-card img {
        height: 280px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-story-content h2 {
        font-size: 32px;
    }
}

/* Hakkında sayfası css */

/* Genel Ayarlar */
.about-page {
    background: #050505;
    color: #f5f1e8;
    font-family: 'Inter', sans-serif;
}

.about-page .container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* Etiketler */
.about-label {
    display: inline-block;
    color: #d4a43a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

/* Başlıklar */
.about-page h1,
.about-page h2,
.about-page h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
}

.about-page h1 span,
.about-page h2 span {
    color: #d4a43a;
}

/* Paragraflar */
.about-page p {
    color: #c8c0b1;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

/* Butonlar */
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    border: 1px solid rgba(212, 164, 58, 0.25);
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn-gold {
    background: linear-gradient(135deg, #d4a43a, #f1c75b);
    color: #111;
    border: none;
    box-shadow: 0 14px 28px rgba(212, 164, 58, .18);
}

.about-btn-dark {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

/* HERO */
.about-hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: clamp(44px, 6vw, 82px);
    margin-bottom: 24px;
    color: #fff;
}

.about-hero-content p {
    max-width: 700px;
    font-size: 18px;
    margin-bottom: 28px;
}

.about-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.about-mini-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.mini-box {
    min-width: 150px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 164, 58, 0.16);
    border-radius: 14px;
    text-align: center;
}

.mini-box span {
    display: block;
    color: #d4a43a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mini-box small {
    color: #c8c0b1;
    font-size: 13px;
}

/* Hero Görseli */
.about-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-visual img {
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(212, 164, 58, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

/* Biz Kimiz */
.about-story {
    padding: 60px 0 40px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
}

.about-story-content h2 {
    font-size: clamp(34px, 4vw, 58px);
    color: #fff;
    margin-bottom: 18px;
}

/* Values / Misyon & Vizyon */
.about-values {
    padding: 50px 0;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 164, 58, 0.18);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 164, 58, 0.38);
}

.value-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 164, 58, 0.08);
    color: #d4a43a;
    font-size: 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 164, 58, 0.22);
}

.value-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #c8c0b1;
}

/* TEAM / EKİP */
.about-team {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 164, 58, 0.16);
    transition: transform .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 164, 58, 0.34);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 16px;
}

.team-info h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.team-info span {
    color: #d4a43a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.team-info p {
    font-size: 14px;
    color: #c8c0b1;
}

/* CTA */
.about-cta {
    padding: 50px 0;
}

.about-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(212, 164, 58, 0.18);
    background: rgba(255, 255, 255, 0.025);
}

.about-cta-box h2 {
    font-size: clamp(34px, 4vw, 50px);
    color: #fff;
}

.about-cta-box p {
    color: #c8c0b1;
    font-size: 16px;
}

/* Responsive */
@media(max-width:1200px) {

    .about-hero-grid,
    .about-story-grid,
    .about-values-grid,
    .team-grid,
    .about-cta-box {
        grid-template-columns: 1fr;
    }
}

@media(max-width:640px) {
    .team-card img {
        height: 240px;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-story-content h2 {
        font-size: 32px;
    }
}

/* İstatistikler / Sayaçlar */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin: 50px 0;
}

.stat-item {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 164, 58, 0.16);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 164, 58, 0.35);
}

.stat-item .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #d4a43a;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #c8c0b1;
}

/* Mobil Uyumluluk */
@media (max-width: 980px) {
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* Modal / Popup CSS (Yorum & Değerlendirme) */
body.tm-open #mouseCanvas {
    opacity: 0;
    pointer-events: none;
}

.ulk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.ulk-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.ulk-modal-content {
    background: #0a0a0a;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    margin: 15px;
}

.ulk-modal-overlay.show .ulk-modal-content {
    transform: translateY(0);
}

.ulk-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #111;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.ulk-modal-close:hover {
    background: var(--accent-gold);
    color: #000;
}

.ulk-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.ulk-modal-header h3 {
    color: var(--accent-gold);
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.ulk-modal-header p {
    color: #888;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

.ulk-form-group {
    margin-bottom: 15px;
}

.ulk-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #111;
    color: #fff;
    transition: 0.3s;
}

.ulk-input:focus {
    border-color: var(--accent-gold);
    background: #151515;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.star-rating i {
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    transform: scale(1.1);
}