:root {
    --primary-black: #000000;
    --secondary-black: #0d0d0d;
    --tertiary-black: #1a1a1a;
    --gold: #c9a050;
    --gold-dark: #a67c2e;
    --gold-light: #d4af37;
    --silver: #b8b8b8;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --text-gray: #8a8a8a;
}

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

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 30px rgba(201, 160, 80, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    z-index: 10002;
    pointer-events: auto;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.language {
    padding: 8px 20px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.language:hover {
    background: var(--gold);
    color: var(--primary-black);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    padding: 30px 50px;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0d0d0d 50%, #000000 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 160, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 160, 80, 0.03) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28;
    z-index: 1;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.45) 100%);
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    position: relative;
}

/* Baslik: ekran genisligine gore otomatik kucululur, tasma yapmaz.
   Kelimeler asla bolunmez veya tireleme yapilmaz. */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 7vw, 6.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 26px;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out;
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
    text-wrap: balance;
}

.hero-title strong {
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    /* Gradient yazi tipinde alt kesilmeyi onler */
    padding-bottom: 0.08em;
    line-height: 1.1;
    white-space: nowrap;
}

/* Cok kucuk ekranlarda vurgulu kelime de sarmalanabilsin */
@media (max-width: 400px) {
    .hero-title strong {
        white-space: normal;
    }
}

/* ---- Yukari cik butonu ---- */
.scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201, 160, 80, 0.45);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.82);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease,
                background .3s ease, border-color .3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: #0a0a0a;
    outline: none;
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 600px) {
    .scroll-top {
        right: 18px;
        bottom: 18px;
        width: 46px;
        height: 46px;
    }
    .scroll-top svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-top { transition: opacity .2s ease, visibility .2s ease; transform: none; }
    .scroll-top.is-visible { transform: none; }
}

/* Hero Slider */
.hero-slider {
    font-size: clamp(0.85rem, 1.8vw, 1.3rem);
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-bottom: 45px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-transform: uppercase;
    font-weight: 300;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

/* Slogan kalici olarak gorunur; gecis JS ile yapilir */
.hero-slider-text {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-slider-text.is-changing {
    opacity: 0;
    transform: translateY(-14px);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 160, 80, 0.4);
}

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

/* About Section */
.about {
    padding: 150px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 2;
    letter-spacing: 1px;
}

/* Services Slider */
.services-container {
    position: relative;
    margin-bottom: 100px;
    height: 600px;
    overflow: hidden;
}

.services-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.slider-background.active {
    opacity: 0.5;
}

.slider-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
}

.services-nav {
    position: relative;
    z-index: 10;
    display: flex;
    height: 100%;
    border: 1px solid rgba(201, 160, 80, 0.15);
}

.service-item {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-right: 1px solid rgba(201, 160, 80, 0.15);
    background: rgba(0, 0, 0, 0.25);
    /* MENÜ TIKLAMA SORUNU ÇÖZÜLDÜ */
    pointer-events: auto;
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    flex: 2;
    background: rgba(0, 0, 0, 0.1);
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover::before,
.service-item.active::before {
    transform: scaleX(1);
}

.service-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.service-item:hover .service-number {
    opacity: 1;
    letter-spacing: 5px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: 1px;
    transition: all 0.4s ease;
    line-height: 1.2;
}

.service-item:hover .service-name {
    font-size: 3rem;
    color: var(--gold);
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.service-item:hover .service-description {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    cursor: pointer;
}

.service-item:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* CEO Message Section */
.ceo-message {
    padding: 150px 50px;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 50%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 160, 80, 0.02) 35px, rgba(201, 160, 80, 0.02) 70px);
    z-index: 0;
}

.ceo-message-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ceo-image-wrapper {
    position: relative;
}

.ceo-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ceo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.ceo-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: all 0.6s ease;
}

.ceo-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.ceo-quote-mark {
    position: absolute;
    top: -30px;
    left: -30px;
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
}

.ceo-content {
    position: relative;
}

.ceo-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.ceo-message-text {
    color: var(--text-gray);
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.ceo-message-text p {
    margin-bottom: 25px;
}

.ceo-message-text p:first-child {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.ceo-signature {
    position: relative;
    padding-top: 30px;
}

.signature-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    margin-bottom: 20px;
}

.ceo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.ceo-position {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--tertiary-black) 100%);
    padding: 100px 50px;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 160, 80, 0.03) 35px, rgba(201, 160, 80, 0.03) 70px);
}

.stats-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Kutu sayisi azaldiginda duzen bozulmasin */
.stats-grid.stats-count-1 { grid-template-columns: 1fr; max-width: 500px; }
.stats-grid.stats-count-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.stats-grid.stats-count-3 { grid-template-columns: repeat(3, 1fr); max-width: 1200px; }

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
    line-height: 1.05;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(201, 160, 80, 0.2);
    padding: 80px 50px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-container img {
    height: 50px;
    width: auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.footer-desc {
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 30px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 160, 80, 0.1);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-credits .heart {
    color: #e74c3c;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    margin: 0 5px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 160, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .ceo-message-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ceo-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ceo-content {
        text-align: center;
    }
    
    .signature-line {
        margin: 0 auto 20px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .services-nav {
        flex-direction: column;
    }
    
    .service-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 160, 80, 0.15);
    }
    
    .service-item:last-child {
        border-bottom: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 30px;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .hero-slider {
        letter-spacing: 2px;
        min-height: 60px;
    }
    
    .services-container {
        height: auto;
    }
    
    .services-nav {
        flex-direction: column;
    }
    
    .service-item {
        min-height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .mobile-nav-links {
        padding: 30px 30px;
    }
    
    .ceo-title {
        font-size: 2rem;
    }
    
    .ceo-message-text {
        font-size: 1rem;
    }
    
    .ceo-message {
        padding: 100px 30px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 18px;
    }
    
    .hero-slider {
        letter-spacing: 1.5px;
    }
    
    .logo img {
        height: 35px;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .about {
        padding: 100px 30px;
    }
    
    .stats {
        padding: 80px 30px;
    }
    
    footer {
        padding: 60px 30px 30px;
    }
    
    .ceo-message {
        padding: 80px 20px;
    }
    
    .ceo-title {
        font-size: 1.8rem;
    }
}