:root {
    --primary-color: #0A1128;
    --secondary-color: #D4AF37;
    --tertiary-color: #F2E8CF;
    --text-color: #333;
}

body {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    padding-top: 76px;
    background-color: var(--tertiary-color);
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav {
    align-items: center;
}

.navbar .nav-link {
    padding: 8px 16px !important;
    line-height: 24px;
}

/* Button Styles */
.btn-premium {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.navbar .btn-premium {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 24px;
    margin-top: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)), url('../images/avukatlara-ozel-ofis.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -76px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white !important;
    opacity: 0.9;
}

.hero-content .btn-premium {
    color: var(--primary-color) !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.hero-content .btn-premium:hover {
    color: white !important;
    background-color: transparent !important;
    border-color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-content .btn-premium {
    margin-top: 1rem;
}

/* Sub Hero Section */
.sub-hero {
    height: 40vh;
    background: linear-gradient(rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.8)), url('../images/avukatlara-ozel-ofis.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -76px;
    color: white;
}

.sub-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sub-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Form Styles */
.contact-form-section {
    padding: 60px 0;
}

.contact-form-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-control, .form-select {
    border: 2px solid #eee;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.feature-item {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sub-hero h1 {
        font-size: 2rem;
    }
    
    .sub-hero p {
        font-size: 1rem;
    }
    
    .navbar .btn-premium {
        margin-top: 10px;
    }
}

/* Location Section Styles */
.location-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ribbon-corner {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffd700;
    color: #333;
    padding: 8px 30px;
    transform: rotate(45deg) translate(22px, -22px);
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

.location-item h3 {
    color: #333;
    margin-top: 20px;
}

.location-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Teklif Al Page Styles */
.contact-section {
    background: linear-gradient(rgba(10, 17, 40, 0.9), rgba(10, 17, 40, 0.9)), url('../images/contact-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
}

.contact-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--secondary-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: translateY(-10px);
}

.coming-soon-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 40px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

.location-card {
    position: relative;
    overflow: hidden;
}