/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    margin-top: 0 !important;
    padding-top: 0;
    background: linear-gradient(135deg, rgba(43, 158, 217, 0.95), rgba(27, 122, 176, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%232B9ED9" width="1920" height="1080"/><g fill="%23ffffff" opacity="0.05"><circle cx="300" cy="200" r="120"/><circle cx="1500" cy="300" r="180"/><circle cx="600" cy="800" r="150"/><circle cx="1600" cy="900" r="130"/><rect x="100" y="600" width="200" height="200" transform="rotate(45 200 700)"/><rect x="1200" y="700" width="180" height="180" transform="rotate(30 1290 790)"/><path d="M 800 100 L 900 300 L 700 300 Z"/><path d="M 400 400 L 550 600 L 250 600 Z"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-red) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {

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

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

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.hero-flag {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
}

.flag-tr,
.flag-de {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.flag-tr div,
.flag-de div {
    width: 50px;
    height: 35px;
}

.flag-connector {
    color: white;
    font-weight: 700;
    font-size: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 6rem 2rem;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--light);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: auto;
    text-align: center;
    align-items: center;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 158, 217, 0.2);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-know-more {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-align: center;
    text-decoration: none;
}

.service-know-more:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 158, 217, 0.3);
}

/* ===== CONNECT WITH US SECTION ===== */
.connect-section {
    padding: 6rem 2rem;
    background: white;
}

.connect-container {
    max-width: 1200px;
    margin: 0 auto;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.connect-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.connect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.connect-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.connect-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.connect-link:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 158, 217, 0.3);
}

/* WhatsApp Green */
.connect-whatsapp .connect-icon {
    color: #25D366;
}

.connect-whatsapp .connect-link {
    background: #25D366;
}

.connect-whatsapp .connect-link:hover {
    background: #1da851;
}

/* Instagram Solid Color */
.connect-instagram .connect-icon {
    color: #E1306C;
}

.connect-instagram .connect-link {
    background: #E1306C;
}

.connect-instagram .connect-link:hover {
    background: #c81c5a;
}

/* YouTube Red */
.connect-youtube .connect-icon {
    color: #FF0000;
}

.connect-youtube .connect-link {
    background: #FF0000;
}

.connect-youtube .connect-link:hover {
    background: #cc0000;
}

/* ===== LATEST BLOG SECTION ===== */
.latest-blog-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-container .section-header {
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-grid .blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-grid .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-grid .blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-grid .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-grid .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-grid .blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #2B9ED9, #1B7AB0);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(43, 158, 217, 0.3);
    z-index: 10;
}

.blog-grid .blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2B9ED9, #1B7AB0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-grid .blog-image-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.blog-grid .blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-grid .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.blog-grid .blog-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-grid .blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-grid .blog-card-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-grid .blog-read-more {
    display: block;
    width: fit-content;
    background: linear-gradient(135deg, #2B9ED9, #1B7AB0);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(43, 158, 217, 0.2);
}

.blog-grid .blog-read-more:hover {
    background: linear-gradient(135deg, #1B7AB0, #0f4d7a);
    box-shadow: 0 4px 12px rgba(43, 158, 217, 0.3);
}

.blog-cta {
    display: flex;
    justify-content: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 2rem;
    background: var(--light);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    line-height: 1.9;
    font-size: 1.05rem;
}

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

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.highlight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-container .btn-primary {
    background: white;
    color: var(--primary-blue);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

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

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

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

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-section,
    .connect-section,
    .about-section,
    .cta-section,
    .contact-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .about-content {
        padding: 2rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-container p {
        font-size: 1.05rem;
    }

    .services-section,
    .connect-section,
    .about-section,
    .cta-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.3rem;
    }

    .about-content {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-card h4 {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .cta-container h2 {
        font-size: 1.7rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 2rem 4rem;
    }
}