:root {
    --primary-color: #2c1e16; /* Deep Dark Brown */
    --secondary-color: #cfa35a; /* Gold Accent */
    --bg-color: #f5f2eb; /* Warm Light Beige */
    --card-bg: #3e2a1f; /* Lighter Brown for cards */
    --text-color: #333333;
    --text-light: #7a6b63;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(207, 163, 90, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.text-center {
    text-align: center;
}

.logo-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 20px; /* Padding daraltıldı */
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 30;
    top: -35px; /* Daha yukarı çekildi */
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.logo-centered:hover {
    transform: translateX(-50%) scale(1.02);
}

.logo-centered img {
    height: 125px; /* Kullanıcı isteği üzerine 125px yapıldı */
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 220px; /* Büyütüldü (Eski: 160px) */
    width: auto;
    object-fit: contain;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.fixed {
    position: fixed;
    background: transparent;
}

.header.fixed .top-bar {
    display: none;
}

.header.fixed .navbar {
    margin-top: 10px;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 12px 0 35px 0; /* Artırıldı (Eski: 15px) */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar span, .top-bar a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    transition: var(--transition);
}

.top-bar i {
    color: var(--secondary-color);
}

.top-bar a:hover {
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background: white;
    margin: 0 auto;
    max-width: 1400px; /* Menü öğeleri arttığı için genişlik artırıldı */
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    margin-top: -10px; /* Azaltıldı (Eski: -15px) */
}

.nav-container {
    height: 70px; /* Azaltıldı (Eski: 90px) */
    position: relative;
}

.nav-menu-wrapper {
    display: flex;
    justify-content: center; /* Center the whole group including spacer */
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-logo-spacer {
    width: 380px; /* Yeni menü öğeleri sonrası logonun çakışmaması için boşluk artırıldı */
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    height: 100%;
    white-space: nowrap; /* Metinlerin kırılmasını engeller */
}

.nav-links.nav-left {
    justify-content: flex-end;
    flex: 1;
    padding-left: 20px;
}

.nav-links.nav-right {
    justify-content: flex-start;
    flex: 1;
    padding-right: 20px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #555;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links .dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: #444;
}

.dropdown-menu li a:hover {
    background-color: #fcfbf8;
    color: var(--secondary-color);
    padding-left: 30px;
}

.language-selector a img {
    border-radius: 2px;
}

.btn-nav-contact {
    background-color: var(--secondary-color) !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

.btn-nav-contact:hover {
    background-color: #b58d4a !important;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 100;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 70px;
    background: white;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 99;
}

.btn-primary {
    background-color: transparent;
    color: var(--secondary-color) !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
    font-weight: 500;
}

.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('adalet.jpg') center/cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding-top: 100px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.typed-text {
    color: var(--secondary-color);
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--secondary-color);
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero p {
    font-size: 1.2rem;
    color: #e6e0db;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about {
    background-color: white;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    display: block;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px 20px 4px 4px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: white;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 3px solid var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #cfc2ba;
    font-size: 0.95rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}
.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Team Section */
.team {
    background-color: #fcfbf8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    padding-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.03);
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.member-photo {
    width: 100%;
    height: 500px; /* Gövde görünümü için daha uzun bir alan */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #eee;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Özel zoomlar kaldırıldı, gövde görünümü için doğal ölçek kullanılıyor */
.member-photo img.aysegul-photo {
    object-position: center top;
}

.team-member:hover .member-photo img {
    transform: scale(1.05); 
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member .role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.info-card-modern {
    transition: var(--transition);
    cursor: pointer;
}

.info-card-modern:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: translateX(10px);
    box-shadow: 10px 0 20px rgba(207, 163, 90, 0.1);
}

.info-card-modern:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Footer & Contact Form */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info p {
    color: #cfc2ba;
    margin-top: 20px;
    max-width: 300px;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    color: white;
    font-family: var(--font-body);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.1);
}

.contact-form textarea {
    resize: vertical;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    color: #cfc2ba;
    font-size: 0.9rem;
}

/* Feature Cards Section */
.feature-cards-section {
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Playfair Display', var(--font-heading);
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    .feature-cards-section {
        margin-top: -50px;
    }
}

/* Animations */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(207, 163, 90, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(207, 163, 90, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(207, 163, 90, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(207, 163, 90, 0); }
}

.chatbot-welcome {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 200px;
    font-size: 0.85rem;
    color: var(--text-color);
    border-bottom-right-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}

.chatbot-welcome::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.chatbot-welcome.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.chatbot-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.online-status {
    font-size: 0.75rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
}

.close-btn:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #f5f2eb;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    background-color: white;
    color: var(--text-color);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.message.user {
    background-color: var(--secondary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 5px rgba(207, 163, 90, 0.2);
}

.chatbot-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
    background: #f5f2eb;
    border-radius: 20px;
    outline: none;
    font-family: var(--font-body);
    color: var(--text-color);
}

.chatbot-input button {
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.chatbot-input button:hover {
    background: var(--primary-color);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s forwards;
    animation-delay: 0.2s;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s forwards;
    animation-delay: 0.4s;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    
    .nav-menu-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        display: none !important; /* Normalde gizle */
    }

    .nav-logo-spacer {
        display: none;
    }
    
    .navbar {
        height: 70px;
        margin-top: 0;
        border-radius: 0;
    }
    
    .nav-container {
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-centered {
        position: static;
        transform: none;
        padding: 5px;
        box-shadow: none;
        background: transparent;
    }
    
    .logo-centered img {
        height: 50px;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile Menu Style */
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 70px;
        background: white;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 70px);
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
        gap: 15px;
    }

    .nav-links.nav-left.active {
        padding-bottom: 0;
    }
    
    .nav-links.nav-right.active {
        padding-top: 0;
    }

    .nav-links.active li {
        width: 100%;
        text-align: center;
    }

    .nav-links.active li a {
        justify-content: center;
        font-size: 1.1rem;
        padding: 10px;
    }

    .dropdown-menu.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        width: 100% !important;
        background: #f9f9f9 !important;
        border: none !important;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .chatbot-window { width: 300px; right: -10px; }
    .top-bar { display: none; }
}

/* New Footer Styles */
.site-footer {
    background-color: var(--bg-color);
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color);
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col-1 .logo-main {
    color: var(--primary-color) !important;
}

.footer-col-1 .social-links {
    margin: 20px 0;
}
.footer-col-1 .social-links a {
    display: inline-block;
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}
.footer-col-1 .social-links a:hover {
    color: var(--secondary-color);
}
.footer-col-1 .copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.site-footer h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.btn-footer-contact {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #b58d4a;
    color: white !important;
    padding: 12px 0;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition);
    border-radius: 4px;
}
.btn-footer-contact:hover {
    background-color: var(--primary-color);
}

.contact-box {
    background-color: #1e3a5f;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.phone-icon-box {
    background-color: #b58d4a;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 1.2rem;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.phone-text {
    font-size: 0.8rem;
    color: #a0b2c6;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

.contact-list .icon {
    color: #888;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
    }
}
