/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: hsl(217, 32%, 17%);
    background-color: hsl(39, 22%, 96%);
}

/* Container */
.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(217, 32%, 17%);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background-color: #e1b12c;
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: hsl(217, 13%, 47%);
    max-width: 42rem;
    margin: 1rem auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(29, 40, 57, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-family: "Ephesis", cursive;
    text-shadow: 0 0 10px rgba(0,0,0,.5);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 2rem;
}

.hero-cta {
    color: white;
    background-color: #e1b12c;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    font-family: inherit;
}

.hero-cta:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: hsl(39, 22%, 96%);
}

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

.about-paragraph {
    font-size: 1.125rem;
    color: hsl(217, 13%, 47%);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.expertise-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(217, 32%, 17%);
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.expertise-list {
    list-style: none;
    space-y: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    color: hsl(217, 13%, 47%);
    margin-bottom: 1rem;
}
.expertise-item:last-child {
    margin-bottom: 0;
}

.expertise-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #e1b12c;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: hsla(39, 22%, 89%, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transition-duration: 0.3s !important;
    transform: translateY(-0.5rem) !important;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: hsla(39, 22%, 89%, 0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: #e1b12c;
}

.service-icon svg{
    width: 2rem;
    height: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(217, 32%, 17%);
    margin-bottom: 1rem;
    line-height: 1.75rem;
}

.service-description {
    color: hsl(217, 13%, 47%);
    line-height: 1.625;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background-color: hsl(39, 22%, 96%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 2rem;
}

.blog-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    padding: 1.5rem;
    position: relative;
}

.blog-card:hover {
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: hsl(217, 13%, 47%);
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.blog-meta svg{
    margin-bottom: 1px;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(217, 32%, 17%);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: hsl(217, 13%, 47%);
    line-height: 1.625;
    margin-bottom: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #e1b12c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.blog-link:hover {
    opacity: 0.8;
}

.blog-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(0.25rem);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: hsla(39, 22%, 89%, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(217, 32%, 17%);
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(217, 32%, 17%);
    margin-bottom: 0.5rem;
}

.form-label i{
    color: red;
    font-style: normal;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(39, 15%, 87%);
    border-radius: 0.375rem;
    background-color: hsl(39, 22%, 96%);
    font-size: .875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e1b12c;
    box-shadow: 0 0 0 3px hsla(217, 91%, 25%, 0.1);
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: .75rem 1.5rem;
    background-color: #e1b12c;
    color: white;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-submit:hover {
    opacity: 0.8;
}

/* Contact Info */
.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(217, 32%, 17%);
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: hsla(39, 22%, 89%, 0.3);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    color: #e1b12c;
}

.contact-info-label {
    font-size: 0.875rem;
    color: hsl(217, 13%, 47%);
    line-height: 1.25;
}

.contact-info-value {
    color: hsl(217, 32%, 17%);
    font-weight: 500;
    text-decoration: none;
}
a.contact-info-value:hover {
    opacity: 0.8;
}

.map-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 300px;
}

/* Footer */
.footer {
    background-color: rgb(29, 40, 57);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.75rem;
    font-family: "Ephesis", cursive;
    letter-spacing: 3px;
}

.footer-text {
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.625;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.75rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
}

.footer-bottom p {
    color: hsla(0, 0%, 100%, 0.6);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: #e1b12c;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast.hidden {
    display: none;
}

.toast.error {
    background-color: hsl(0, 84%, 60%);
}
.toast.success {
    background-color: #27ae60;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: start;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .blog-detail h1{
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .service-card,
    .expertise-card {
        padding: 1.5rem;
    }

}





header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.header-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: hsl(217, 13%, 47%);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: hsl(217, 32%, 17%);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

/* Mobil için */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        border-top: 1px solid #eee;
    }

    .menu-toggle {
        display: flex;
    }
}


.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(217, 32%, 17%);
    font-family: 'Ephesis', cursive;
    text-decoration: none;
}

.blog-detail {
    padding: 2rem 1rem 4rem;
}

.blog-detail .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(to bottom, #fffdf7, #ffffff);
    border-left: 6px solid #e1b12c;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.blog-detail .badge {
    display: inline-block;
    font-size: 0.75rem;
    background: #e1b12c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-detail h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(217, 32%, 17%);
}

.blog-detail .meta {
    font-size: 0.875rem;
    color: hsl(217, 13%, 47%);
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.blog-detail img {
    width: 100%;
    border-radius: 0.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.blog-detail p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: hsl(217, 13%, 35%);
}
.blog-detail p:last-child {
    margin-bottom: 0;
}

.blog-detail h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(217, 32%, 17%);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.blog-detail li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: hsl(217, 13%, 40%);
}

.blog-detail blockquote {
    background-color: #fffbe6;
    border-left: 4px solid #e1b12c;
    padding: 1.25rem 1.5rem;
    font-style: italic;
    color: #6b6b6b;
    margin: 2rem 0;
    border-radius: 0.375rem;
}


.consultation-card-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.consultation-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(217, 32%, 17%);
    border: 2px solid hsl(217, 32%, 17%);
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 25px rgba(33, 37, 41, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.consultation-content {
    max-width: 600px;
    text-align: center;
}

.consultation-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.consultation-card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.consultation-btn {
    background-color: #e1b12c;
    color: hsl(217, 32%, 17%);
    border: none;
    padding: 0.75rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 177, 44, 0.4);
    font-family: 'Inter', sans-serif;
}

.consultation-btn:hover {
    opacity: 0.85;
}

.pt-0{
    padding-top: 0;
}