/*
* DefansXLabs Website
* Ana CSS Dosyası
*/

/* Genel Stil */
:root {
    --primary-color: #27548E;     /* Parliament Mavisi */
    --secondary-color: #000000;   /* Siyah */
    --accent-color: #4B7BBA;      /* Açık Parliament Mavisi */
    --text-color: #333333;
    --light-bg: #F5F8FA;
    --dark-bg: #1A1A1A;          /* Koyu Siyah */
    --light-color: #ffffff;
    --dark-color: #000000;
    --gray-color: #666666;
    --border-color: #e9e9e9;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin-top: 80px; /* Header için yer açıyoruz */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.btn {
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-description {
    font-size: 18px;
    color: var(--gray-color);
}

.bg-light {
    background-color: #f8f9fa;
}

.img-fluid {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Header Stil */
.header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Fix */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: none; /* Varsayılan olarak gizli */
}

.dropdown-menu.show {
    display: block; /* JavaScript ile açıldığında göster */
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: var(--secondary-color);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-color);
    color: #fff;
}

.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.125em;
}

/* Hero Bölümü Stil */
.hero-section {
    background-color: #f4f8fb;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Header yüksekliği kadar margin */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43,89,195,0.05) 0%, rgba(14,43,92,0.1) 100%);
    z-index: 1;
}

.hero-content {
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.hero-content .btn {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.main-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Page Header Stil */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(39, 84, 142, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0 20px;
    margin-bottom: 10px;
    position: relative;
    color: #fff;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

/* Hizmetler Bölümü Stil */
.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-section .row {
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 0;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 84, 142, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(39, 84, 142, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.02;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(43, 89, 195, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-description {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.integration-text {
    font-size: 16px;
    color: var(--gray-color);
    margin-top: 20px;
}

/* Odak Alanları Bölümü Stil */
.focus-areas-section {
    padding: 100px 0;
    background-color: #f4f8fb;
}

.focus-card {
    background-color: #fff;
    border-radius: 0px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(39, 84, 142, 0.1);
}

.focus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(39, 84, 142, 0.15);
}

.focus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(43, 89, 195, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.focus-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.focus-title {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.framework-text {
    font-size: 16px;
    color: var(--gray-color);
    margin-top: 20px;
}

.focus-description {
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 15px;
    line-height: 1.6;
}

.row > [class*='col-'] {
    padding-right: 20px;
    padding-left: 20px;
}

/* İletişim Bölümü Stil */
.contact-section {
    padding: 10px 0;
    background-color: var(--light-bg);
}

.contact-info {
    padding-right: 30px;
}

.contact-text {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: 100%;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-form {
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid transparent;
}

.contact-form:hover {
    border-color: var(--primary-color);
}

.form-control {
    border: 2px solid #eee;
    padding: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer Stil */
.footer {
    background: var(--secondary-color);
    padding: 80px 0 0;
    color: #fff;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
}

.copyright {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

.copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--accent-color);
}

/* Hakkımızda Sayfası Stil */
.about-story-section {
    padding: 100px 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid rgba(43, 89, 195, 0.1);
    z-index: -1;
    border-radius: 10px;
}

.about-content {
    padding-left: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.mission-vision-section {
    padding: 100px 0;
    background-color: #f4f8fb;
}

.mission-card, .vision-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(43, 89, 195, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card-text {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.8;
}

.values-section {
    padding: 100px 0;
}

.value-card {
    text-align: center;
    margin-bottom: 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(43, 89, 195, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.value-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-text {
    font-size: 16px;
    color: var(--gray-color);
}

/* İş Ortakları Bölümü */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(39, 84, 142, 0.02), rgba(0, 0, 0, 0.02));
    overflow: hidden;
    position: relative;
}

.partners-title {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.partners-title p {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.partners-slider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.partners-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: calc(250px * 12); /* 6 logo x 2 (for seamless loop) */
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

.partner-item {
    flex: 0 0 250px;
    height: 120px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.partner-item img {
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Gradient Overlays */
.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(245, 248, 250, 1) 0%,
        rgba(245, 248, 250, 0) 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(245, 248, 250, 1) 0%,
        rgba(245, 248, 250, 0) 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .partners-slider {
        height: 100px;
    }

    .partner-item {
        height: 100px;
        padding: 15px;
    }

    .partner-item img {
        max-width: 150px;
        max-height: 70px;
    }

    .partners-slider::before,
    .partners-slider::after {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .partners-title h2 {
        font-size: 30px;
    }

    .partners-title p {
        font-size: 16px;
    }

    .partners-slider {
        height: 90px;
    }

    .partner-item {
        height: 90px;
        padding: 10px;
    }

    .partner-item img {
        max-width: 130px;
        max-height: 60px;
    }

    .partners-slider::before,
    .partners-slider::after {
        width: 80px;
    }
}

/* Hizmetlerimiz Sayfası Stil */
.service-details-section {
    padding: 30px 0;
}

.service-details-section .service-content {
    padding-left: 30px;
}

.service-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
}

/* Why Us Bölümü */
.why-us-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.why-us-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 15px;
    height: calc(100% - 30px);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(39, 84, 142, 0.15);
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-us-icon i {
    font-size: 28px;
    color: #fff;
}

.why-us-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.why-us-text {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43,89,195,0.9) 0%, rgba(14,43,92,0.9) 100%);
}

.cta-title {
    color: #fff;
    font-size: 36px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

/* İletişim Sayfası Stil */
.contact-details-section {
    padding: 100px 0;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
}

.contact-info-card .card-icon {
    margin: 0 auto 25px;
}

.map-form-section {
    padding: 100px 0;
    background-color: #f4f8fb;
}

.map-container {
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.social-section {
    padding: 80px 0;
}

.social-icons.large {
    justify-content: center;
    margin-top: 30px;
}

.social-icons.large a {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin: 0 15px;
}

.websites-section {
    padding: 80px 0;
    background-color: #f4f8fb;
}

.websites-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.website-item {
    display: flex;
    align-items: center;
    margin: 0 30px;
}

.website-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.website-item a {
    font-size: 18px;
    font-weight: 500;
}

/* Responsive Ayarlar */
@media (max-width: 1199.98px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .main-title {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    body {
        margin-top: 70px;
    }
    
    .navbar-collapse {
        background-color: var(--secondary-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
        margin-top: 70px;
    }
    
    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin: 0;
    }
    
    .dropdown-item {
        color: #fff;
    }
    
    .dropdown-item.active, .dropdown-item:hover {
        background-color: transparent;
        color: var(--accent-color);
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 30px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 26px;
    }
    
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .service-card, .focus-card, .contact-form {
        padding: 30px 20px;
    }
    
    .social-icons.large a {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0 10px;
    }
    
    .website-item {
        margin: 10px 20px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .why-us-card {
        margin: 10px 0;
        height: calc(100% - 20px);
    }
}

@media (max-width: 991px) {
    .partners-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .partner-item {
        min-height: 150px;
        padding: 20px;
    }
    
    .partner-item img {
        max-width: 150px;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .partners-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Partner Link */
.partner-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        margin-bottom: 1rem;
        flex-direction: row;
        align-items: center;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-right: 1rem;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
} 