/* ============================================
   CUSTOM CSS FOR CIGDEM UYSAL THEME
   ============================================ */

:root {
    --color-gold: #C5A059;
    --color-gold-dark: #B38F4D;
    --color-navy: #0F172A;
    --color-slate-50: #f8fafc;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-slate-900);
    background: white;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gold { color: var(--color-gold); }
.bg-gold { background-color: var(--color-gold); }
.bg-navy { background-color: var(--color-navy); }
.bg-slate-50 { background-color: var(--color-slate-50); }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.bold { font-weight: bold; }

.transition { transition: all 0.3s ease; }
.hidden { display: none; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-slate-800);
    color: white;
}

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

.logo {
    text-decoration: none;
    color: white;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: block;
}

.logo-subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    display: block;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: white !important;
    text-decoration: none;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-gold) !important;
}

nav a.cta-button {
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1rem;
}

nav a.cta-button:hover {
    background-color: var(--color-gold);
    color: var(--color-slate-900) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

#mobileMenu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-navy);
    padding: 2rem;
    text-align: center;
}

#mobileMenu a {
    display: block;
    color: white !important;
    text-decoration: none;
    padding: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a2642 100%);
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero h1 .highlight {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-slate-300);
    max-width: 40rem;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--color-gold);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-navy);
}

/* Sections */
section {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.about-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image {
    width: 100%;
    display: block;
    filter: brightness(1.05) contrast(1.05);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-badge i {
    font-size: 1.5rem;
}

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

.about-badge-text .label {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
}

.about-badge-text .value {
    font-size: 0.875rem;
    font-weight: bold;
}

.about-content {
    color: var(--color-slate-600);
    line-height: 1.8;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--color-slate-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.info-card h4 {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--color-slate-900);
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--color-gold);
    margin: 1.5rem auto;
}

/* Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-card {
    padding: 2rem;
    background-color: var(--color-slate-50);
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-left: 3px solid transparent;
}

.expertise-card:hover {
    background-color: white;
    border-left-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.expertise-card i {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.expertise-card p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
}

/* Pricing */
.pricing-section {
    background-color: var(--color-navy);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pricing-category h4 {
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--color-slate-700);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-item span:first-child {
    color: var(--color-slate-300);
    max-width: 70%;
}

.pricing-item span:last-child {
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.5625rem;
    color: var(--color-slate-500);
    font-style: italic;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--color-slate-500);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-method a {
    color: var(--color-slate-900);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--color-gold);
}

.contact-form {
    background-color: var(--color-slate-50);
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-slate-300);
    padding: 0.75rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    background-color: var(--color-navy);
    color: white;
    padding: 1rem;
    border: none;
    font-weight: bold;
    letter-spacing: 0.2em;
    font-size: 0.625rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background-color: var(--color-slate-800);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--color-navy);
    color: white;
    padding: 5rem 0 2.5rem;
    text-align: center;
}

footer .logo-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

footer .logo-subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.4em;
    margin-bottom: 2.5rem;
}

.legal-notice {
    max-width: 56rem;
    margin: 0 auto 2rem;
    font-size: 0.5625rem;
    color: var(--color-slate-500);
    font-style: italic;
    border-top: 1px solid var(--color-slate-800);
    padding-top: 2rem;
}

.copyright {
    font-size: 0.625rem;
    color: var(--color-slate-600);
    letter-spacing: 0.1em;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsive */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h1 .highlight {
        font-size: 4rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    #mobileMenu {
        display: none !important;
    }
}

@media (max-width: 767px) {
    nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h1 .highlight {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h1 .highlight {
        font-size: 5rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
