/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1C2833;
    min-height: 100vh;
}

/* Navbar stilleri */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 40, 51, 0.95);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
    background-color: rgba(28, 40, 51, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #D4AF37;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 100;
}

.mobile-menu-btn span,
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
    content: '';
    position: absolute;
}

.mobile-menu-btn span::before {
    top: -8px;
}

.mobile-menu-btn span::after {
    bottom: -8px;
}

.mobile-menu-btn.active span {
    background: transparent;
}

.mobile-menu-btn.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 40, 51, 0.95);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Language selector styles */
.language-selector {
    position: relative;
    z-index: 100;
}

.selected-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #fff;
    padding: 0.5rem;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    display: none;
    min-width: 120px;
}

.language-selector:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: #1C2833;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

/* Responsive navbar */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(28, 40, 51, 0.98);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        z-index: 99;
        transition: all 0.3s ease;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .language-selector {
        order: 1;
    }

    .selected-lang span {
        display: none;
    }

    .selected-lang {
        padding: 0.3rem;
    }

    .selected-lang i {
        display: none;
    }
}

/* Navbar altındaki içeriği düzeltmek için */
main {
    padding-top: 80px; /* navbar yüksekliği kadar padding */
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s linear infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(28, 40, 51, 0.7),
        rgba(28, 40, 51, 0.4)
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    z-index: 4;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
}

.text-animate:nth-child(1) { animation-delay: 0.2s; }
.text-animate:nth-child(2) { animation-delay: 0.4s; }
.text-animate:nth-child(3) { animation-delay: 0.6s; }
.text-animate:nth-child(4) { animation-delay: 0.8s; }

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards 1s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background: #D4AF37;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #D4AF37;
}

.btn:hover::before {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 1.5s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arrows span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: arrow 1.5s ease infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive tasarım için hero section düzenlemeleri */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1C2833;
    position: relative;
    text-align: center;
}

.title-accent {
    color: #D4AF37;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-text {
    font-size: 1.2rem;
    color: #1C2833;
    line-height: 1.6;
    font-weight: 500;
}

.highlight-text strong {
    color: #D4AF37;
    font-weight: 700;
}

.main-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: 650px;
}

.main-image {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
    object-fit: cover;
}

.image-container:hover .main-image {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(28, 40, 51, 0.2),
        rgba(212, 175, 55, 0.1)
    );
    transition: opacity 0.3s ease;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #D4AF37;
    color: #fff;
    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive tasarım için about section düzenlemeleri */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-image {
        order: -1;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 1.2rem;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .main-text {
        font-size: 1rem;
    }

    .experience-badge {
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: #1C2833;
    text-align: center;
    margin-bottom: 1rem;
}

.services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-hover {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.4s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
}

.service-text h3 {
    color: #1C2833;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
    transition: width 0.4s ease;
}

.service-card:hover .service-text h3::after {
    width: 60px;
}

.service-text p {
    color: #1C2833;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design for services */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-description {
        font-size: 1rem;
        margin: 1.5rem auto 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-text h3 {
        font-size: 1.3rem;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.partners-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.partner-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background: #fff;
    transition: transform 0.6s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.05);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-info {
    padding: 2rem;
    text-align: center;
    background: #fff;
    position: relative;
}

.partner-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #D4AF37;
    transition: width 0.4s ease;
}

.partner-card:hover .partner-info::before {
    width: 100px;
}

.partner-info h3 {
    color: #1C2833;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-title {
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.partner-social {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    width: auto;
    height: auto;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.social-link:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-5px);
}

/* Responsive design for partners */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }

    .partners-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .partner-image {
        height: 300px;
    }

    .partner-info h3 {
        font-size: 1.3rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 50px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive design for gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 30px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .gallery-item {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.info-item h3 {
    color: #1C2833;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #1C2833;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

/* Responsive design for contact */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .info-item h3 {
        font-size: 1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .form-group textarea {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 0.75rem;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-item p {
        font-size: 0.85rem;
        word-break: break-word;
    }
}

/* Footer */
.footer {
    background: #1C2833;
    color: #fff;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Mediated Services Section */
.mediated-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mediated-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mediated-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.mediated-services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mediated-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mediated-service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mediated-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, #1C2833 0%, #2C3E50 100%);
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-header .subtitle {
    color: #D4AF37;
    font-size: 1rem;
    opacity: 0.9;
}

.service-list {
    padding: 2rem;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #1C2833;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #D4AF37;
    font-size: 1rem;
}

.service-list li:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

/* Responsive design for mediated services */
@media (max-width: 992px) {
    .mediated-services {
        padding: 80px 0;
    }

    .service-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .mediated-services {
        padding: 60px 0;
    }

    .mediated-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-list {
        padding: 1.5rem;
    }
}

/* Form message styles */
.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading spinner styles */
.fa-spinner {
    margin-left: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Disabled button styles */
.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Certificate Section */
.certificate {
    padding: 100px 0;
    background: linear-gradient(135deg, #1C2833 0%, #2C3E50 100%);
    position: relative;
    overflow: hidden;
}

.certificate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.certificate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.certificate .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.certificate-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.certificate-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-frame {
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.3);
    position: relative;
    max-width: 800px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    aspect-ratio: 1.4 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.5);
}

.certificate-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    border-radius: 23px;
    z-index: -1;
}

.certificate-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    display: block;
    transform: rotate(90deg); 
    object-fit: contain;
}

.certificate-pdf {
    width: 100%;
    height: 500px;
    display: block;
    border-radius: 12px;
    border: none;
}

.certificate-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #1C2833;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.certificate-badge i {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.certificate-badge span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.certificate-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cert-info-item {
    text-align: center;
    color: #fff;
}

.cert-info-item .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

.cert-info-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D4AF37;
}

/* Responsive design for certificate */
@media (max-width: 992px) {
    .certificate-frame {
        max-width: 600px;
    }

    .certificate-image {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .certificate {
        padding: 60px 0;
    }

    .certificate-container {
        padding: 0 1rem;
    }

    .certificate-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .certificate-frame {
        padding: 0.5rem;
        aspect-ratio: auto;
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }

    .certificate-image {
        max-height: 350px;
        max-width: 90%;
    }

    .certificate-badge {
        width: 60px;
        height: 60px;
        top: -15px;
        right: -15px;
    }

    .certificate-badge i {
        font-size: 1.4rem;
    }

    .certificate-badge span {
        font-size: 0.55rem;
    }

    .certificate-info {
        gap: 1.5rem;
    }

    .cert-info-item .value {
        font-size: 1rem;
    }

    .certificate-pdf {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .certificate {
        padding: 40px 0;
    }

    .certificate-frame {
        min-height: 250px;
        border-radius: 12px;
    }

    .certificate-image {
        max-height: 280px;
    }

    .certificate .section-title {
        font-size: 1.6rem;
    }

    .certificate-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
} 