:root {
    --primary-color: #ff002b;
    --secondary-color: #8b1538;
    --accent-color: #e63946;
    --color-black: #000000;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0;
    padding-top: 130px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 100px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 80px;
    }
}

/* Navigation */
.custom-navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
}

.custom-navbar.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.custom-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.custom-navbar.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.custom-navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.custom-navbar .container {
    max-width: 1400px;
    padding-left: 3rem;
    padding-right: 2rem;
}

@media (max-width: 991.98px) {
    .custom-navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand img {
        height: 80px;
        max-height: 80px;
    }

    .custom-navbar {
        padding: 0.8rem 0;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 60px;
        max-height: 60px;
    }

    .custom-navbar {
        padding: 0.5rem 0;
    }
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.875rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 10px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        color: var(--white) !important;
    }

    /* Dropdown mobile */
    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        border-radius: 10px;
        margin-top: 0.5rem;
        padding: 0.5rem;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .dropdown-item:hover {
        background: rgba(255, 0, 43, 0.1);
        transform: none;
        padding-left: 1rem;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }

    /* Navbar toggler styling */
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        border: 2px solid var(--primary-color);
        border-radius: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 0, 43, 0.25);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff002b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    padding: 0;
    transition: transform 0.3s ease;
}

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

.navbar-brand img {
    height: 110px;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--color-black) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.7rem 1.5rem !important;
    margin: 0 0.25rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 43, 0.3);
    border-color: var(--primary-color);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
    height: 100%;
}

.nav-link::after {
    display: none;
}

/* Active nav link */
.nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 43, 0.4);
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 43, 0.25);
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-toggle:hover::after,
.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 240px;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 0.85rem 1.75rem;
    color: var(--color-black) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 10px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 0 4px 4px 0;
    transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 0, 43, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    color: var(--primary-color) !important;
    transform: translateX(8px);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    height: 60%;
}

.dropdown-item:active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white) !important;
    transform: translateX(8px);
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white) !important;
    transform: translateX(8px);
    padding-left: 2rem;
}

.dropdown-item.active::before {
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
}

/* Desktop: Hover to show dropdown */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/home/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.49,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="white"/></svg>') repeat-x;
    background-size: 1200px 120px;
    opacity: 0.1;
}

.hero-row {
    display: flex;
    align-items: flex-start;
    min-height: 380px;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    flex: 1;
}

.hero-image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 60px;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-image-col img {
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-title {
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.05em;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: var(--color-black);
}

.hero-title br {
    display: block;
    margin-bottom: 0.3rem;
}

.hero-highlight {
    color: var(--white) !important;
    position: relative;
    display: inline-block;
    padding: 2px 15px;
    background-color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: #000000;
    font-weight: normal;
    line-height: 1.3em;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    color: var(--primary-color);
    font-weight: 550;
    line-height: 1.3em;
    font-style: italic;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Gallery Section - White Background */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.gallery-section .section-title {
    color: var(--color-black);
    text-align: left;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 0;
}

.gallery-section p {
    color: var(--text-light);
}

/* Gallery pagination buttons - white background style */
.gallery-section .gallery-pagination-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
}

.gallery-section .gallery-pagination-btn:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.gallery-section .gallery-page-number {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
}

.gallery-section .gallery-page-number:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.gallery-section .gallery-page-number.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 0, 43, 0.4);
}
.services-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at top, #1a1f2e 0%, #0f1419 50%, #0a0d12 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(15, 45, 82, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 45, 82, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-title {
    text-align: left;
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    position: relative;
}

.services-section .section-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.services-section .section-title::after {
    display: none;
}

.services-description {
    color: var(--white);
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-image {
    width: 100%;
    height: 140px;
    border-radius: 15px 15px 0 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.service-image picture {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    position: relative;
    z-index: 1;
}

.service-image picture img,
.service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block !important;
}

.service-image .service-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.service-card-content {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #0F2D52;
}

.service-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.service-description {
    color: var(--color-black);
    line-height: 1.5;
    flex: 1;
  font-size: 14px;
}

.service-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #0F2D52;
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-link:hover {
    background-color: #2a4f7a;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-section-title {
    text-align: left;
    font-size: 55px;
    font-weight: 900;
    color: #0F2D52;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.team-description {
    color: #333;
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.2;
    overflow: visible;
    width: 100%;
}

.team-card {
    background: transparent;
    text-align: center;
    margin-bottom: 0.2rem;
    transition: all 0.3s ease;
    padding-top: 100px;
    position: relative;
}

.team-image {
    width: 100%;
    height: 400px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: -40px auto 1rem;
    padding-top: 100px;
    object-fit: cover;
    display: block;
    font-size: 1rem;
    color: var(--white);
    transition: background-color 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--color-black);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--color-black);
    pointer-events: auto;
    z-index: 1;
    transition: border-color 0.5s ease, background-color 0.5s ease;
}

.team-image:hover::before {
    border-color: #D1F6FF;
    background-color: #D1F6FF;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

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

.team-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.team-role {
    color: var(--color-black);
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Reviews Section - Speech Bubbles */
.reviews-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at top, #1a1f2e 0%, #0f1419 50%, #0a0d12 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(15, 45, 82, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 45, 82, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.reviews-section .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    position: relative;
}

.review-bubble {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
    cursor: pointer;
}

.review-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Speech bubble tail */
.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--white);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.review-star {
    color: #FFD700;
    font-size: 1rem;
}

.review-star.empty {
    color: #ddd;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    overflow: visible;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-overflow: clip;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
    text-align: right;
}

/* Review Pagination */
.review-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
}

.review-pagination-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 100px;
}

.review-pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.review-pagination-info {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* Loading state */
.loading-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

@media (max-width: 1199.98px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-bubble {
        min-height: 300px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
    color: var(--color-black);
}

.contact-main-title {
    font-size: 60px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 2.5rem;
    text-align: left;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: left;
}

.contact-info-text {
    color: var(--color-black);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-info-link {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--primary-color);
}

.contact-icon-label {
    display: inline-block;
    min-width: 25px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    text-align: center;
}

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

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-hours-row {
    display: flex;
    align-items: baseline;
}

.contact-hours-label {
    display: inline-block;
    min-width: 90px;
    font-weight: 600;
    color: var(--color-black);
}

.contact-hours-time {
    display: inline-block;
}

.contact-social-media {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 43, 0.3);
}

.contact-social-link i {
    font-size: 1.2rem;
}

/* TASARIM ALTERNATİF 2: İkon Butonlar (Kare) - Minimal ve Sade */
.contact-social-media-alt2 {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contact-social-link-alt2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(255, 0, 43, 0.2);
}

.contact-social-link-alt2:hover {
    background-color: var(--color-black);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 43, 0.4);
}

.contact-social-link-alt2 i {
    font-size: 1.5rem;
}

/* TASARIM ALTERNATİF 3: Yuvarlak İkonlar - Modern ve Şık */
.contact-social-media-alt3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contact-social-link-alt3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff1a3d 100%);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 43, 0.3);
    border: 3px solid var(--white);
}

.contact-social-link-alt3:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 0, 43, 0.5);
    background: linear-gradient(135deg, #ff1a3d 0%, var(--primary-color) 100%);
}

.contact-social-link-alt3 i {
    font-size: 1.5rem;
}

/* TASARIM ALTERNATİF 4: Minimal Liste Stili - Temiz ve Profesyonel */
.contact-social-media-alt4 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-social-link-alt4 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-social-link-alt4:hover {
    background-color: var(--white);
    border-left-color: var(--color-black);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-social-link-alt4 i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.contact-social-link-alt4:hover i {
    color: var(--color-black);
}

.contact-map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Legacy contact styles for other pages */
.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-text {
    opacity: 0.9;
    line-height: 1.8;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Footer */
.custom-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 30px 0;
}

.footer-bottom {
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0 0;
    }

    .hero-row {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-image-col {
        padding-top: 30px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-highlight {
        font-size: 0.85em;
    }

    .section-title {
        font-size: 42px;
    }

    .team-section-title {
        font-size: 42px;
    }

    .contact-main-title {
        font-size: 42px;
    }

    .gallery-section .section-title {
        font-size: 42px;
    }

    /* Team cards responsive */
    .team-card {
        padding-top: 80px;
    }

    .team-image {
        height: 350px;
        padding-top: 80px;
    }

    .team-image::before {
        top: 80px;
    }

    .team-image img {
        height: 430px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .hero-image-col img {
        max-height: 400px !important;
    }

    .section-title {
        font-size: 32px;
    }

    .team-section-title {
        font-size: 32px;
    }

    .contact-main-title {
        font-size: 32px;
    }

    .gallery-section .section-title {
        font-size: 32px;
    }

    .services-section,
    .team-section,
    .reviews-section,
    .gallery-section,
    .contact-section {
        padding: 60px 0;
    }

    .service-card, .team-card {
        margin-bottom: 1.5rem;
    }

    /* Team cards mobile */
    .team-card {
        padding-top: 60px;
    }

    .team-image {
        height: 300px;
        padding-top: 60px;
    }

    .team-image::before {
        top: 60px;
    }

    .team-image img {
        height: 360px;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    /* Services mobile */
    .services-description {
        font-size: 1rem;
    }

    .service-title {
        font-size: 15px;
    }

    .service-description {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 26px;
    }

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

    .hero-description {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-image-col img {
        max-height: 320px !important;
    }

    .section-title {
        font-size: 26px;
    }

    .team-section-title {
        font-size: 26px;
    }

    .contact-main-title {
        font-size: 26px;
    }

    .gallery-section .section-title {
        font-size: 26px;
    }

    .services-section,
    .team-section,
    .reviews-section,
    .gallery-section,
    .contact-section {
        padding: 50px 0;
    }

    /* Team cards small mobile */
    .team-card {
        padding-top: 50px;
    }

    .team-image {
        height: 280px;
        padding-top: 50px;
    }

    .team-image::before {
        top: 50px;
    }

    .team-image img {
        height: 330px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    /* Gallery mobile */
    .gallery-item {
        height: 250px;
        min-height: 250px;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-grid {
        min-height: auto;
    }
}

/* Gallery Pagination */
.gallery-pagination-wrapper {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    min-height: 650px; /* Fixed height to prevent page jumping */
}

/* Normal pages - assign rows */
.gallery-item.first-row {
    grid-row: 1;
}

.gallery-item.second-row {
    grid-row: 2;
}

/* Last page with 3 or fewer images - always show in second row, centered */
.gallery-grid.last-page-few {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    justify-items: center;
}

/* First row is empty (invisible) for few images */
.gallery-grid.last-page-few .gallery-item.first-row {
    display: none;
}

/* Center second row items */
.gallery-grid.last-page-few.second-row-1 .gallery-item.second-row {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid.last-page-few.second-row-2 {
    grid-template-columns: 1fr auto auto 1fr;
    justify-items: center;
}

.gallery-grid.last-page-few.second-row-2 .gallery-item.second-row-1 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid.last-page-few.second-row-2 .gallery-item.second-row-2 {
    grid-column: 3;
    grid-row: 2;
}

.gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-1 {
    grid-column: 1;
    grid-row: 2;
}

.gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-2 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-3 {
    grid-column: 3;
    grid-row: 2;
}

/* Last page with more than 3 images - center second row */
.gallery-grid.last-page-many {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
}

.gallery-grid.last-page-many .gallery-item.first-row {
    grid-column: auto;
    grid-row: 1;
}

/* Center second row based on item count */
.gallery-grid.last-page-many.second-row-1 .gallery-item.second-row {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid.last-page-many.second-row-2 .gallery-item.second-row-1 {
    grid-column: 1;
    grid-row: 2;
}

.gallery-grid.last-page-many.second-row-2 .gallery-item.second-row-2 {
    grid-column: 3;
    grid-row: 2;
}

.gallery-grid.last-page-many.second-row-3 .gallery-item.second-row-1 {
    grid-column: 1;
    grid-row: 2;
}

.gallery-grid.last-page-many.second-row-3 .gallery-item.second-row-2 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid.last-page-many.second-row-3 .gallery-item.second-row-3 {
    grid-column: 3;
    grid-row: 2;
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
    
    /* Mobil için son sayfa düzenlemeleri - first-row'u göstermeyi kaldır */
    .gallery-grid.last-page-few .gallery-item.first-row {
        display: none;
    }
    
    .gallery-grid.last-page-few {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
    }
    
    /* 1 resim - ortala */
    .gallery-grid.last-page-few.second-row-1 {
        grid-template-columns: 1fr auto 1fr;
    }
    
    .gallery-grid.last-page-few.second-row-1 .gallery-item.second-row {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* 2 resim - normal 2 sütun */
    .gallery-grid.last-page-few.second-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid.last-page-few.second-row-2 .gallery-item.second-row-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-grid.last-page-few.second-row-2 .gallery-item.second-row-2 {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* 3 resim - ilk satır 2, ikinci satır 1 (ortalanmış) */
    .gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-2 {
        grid-column: 2;
        grid-row: 1;
    }
    
    .gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-3 {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-self: center;
        max-width: 300px; /* Resmin çok geniş olmaması için */
    }
    
    .gallery-grid.last-page-many {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid.last-page-many.second-row-1 .gallery-item.second-row {
        grid-column: 1;
        grid-row: 2;
    }
    
    .gallery-grid.last-page-many.second-row-2 .gallery-item.second-row-1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .gallery-grid.last-page-many.second-row-2 .gallery-item.second-row-2 {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
    
    /* Küçük mobil için son sayfa düzenlemeleri - first-row'u göstermeyi kaldır */
    .gallery-grid.last-page-few .gallery-item.first-row {
        display: none;
    }
    
    .gallery-grid.last-page-few {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
    }
    
    /* 1 resim - ortala */
    .gallery-grid.last-page-few.second-row-1 {
        grid-template-columns: 1fr auto 1fr;
    }
    
    .gallery-grid.last-page-few.second-row-1 .gallery-item.second-row {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* 2 resim - normal 2 sütun */
    .gallery-grid.last-page-few.second-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid.last-page-few.second-row-2 .gallery-item.second-row-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-grid.last-page-few.second-row-2 .gallery-item.second-row-2 {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* 3 resim - ilk satır 2, ikinci satır 1 (ortalanmış) */
    .gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-2 {
        grid-column: 2;
        grid-row: 1;
    }
    
    .gallery-grid.last-page-few.second-row-3 .gallery-item.second-row-3 {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-self: center;
        max-width: 300px; /* Resmin çok geniş olmaması için */
    }
    
    .gallery-grid.last-page-many {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid.last-page-many.second-row-1 .gallery-item.second-row {
        grid-column: 1;
        grid-row: 2;
    }
    
    .gallery-grid.last-page-many.second-row-2 .gallery-item.second-row-1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .gallery-grid.last-page-many.second-row-2 .gallery-item.second-row-2 {
        grid-column: 2;
        grid-row: 2;
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: var(--white);
    /* CLS prevention - fixed dimensions */
    height: 300px;
    min-height: 300px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.gallery-item.fade-in {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Pagination Controls */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-pagination-btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.gallery-page-number {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-page-number:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.gallery-page-number.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 0, 43, 0.4);
}

/* Pagination - Removed */

/* Case Studies */
.case-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.case-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.mt-section {
    margin-top: 80px;
}

/* Floating Social Media Button */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-social-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff1a3d 100%);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 43, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.floating-social-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 0, 43, 0.6);
}

.floating-social-toggle.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ff1a3d 0%, var(--primary-color) 100%);
}

.floating-social-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-social-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.floating-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.floating-social-link.facebook {
    background-color: #1877f2;
    color: var(--white);
}

.floating-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.floating-social-link.whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.floating-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-tooltip {
    position: absolute;
    right: 60px;
    background-color: var(--color-black);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--color-black);
}

.floating-social-link:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-social {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-social-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .floating-tooltip {
        display: none;
    }
}

/* Contact Section Responsive */
@media (max-width: 991.98px) {
    .contact-main-title {
        font-size: 45px;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-info-heading {
        text-align: center;
    }
    
    .contact-info-text {
        text-align: center;
    }
    
    .contact-hours {
        align-items: center;
    }
    
    .contact-hours-row {
        justify-content: center;
    }
    
    .contact-hours-label,
    .contact-hours-time {
        text-align: center;
    }
    
    .contact-map-wrapper {
        margin-top: 2rem;
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact-main-title {
        font-size: 36px;
    }
    
    .contact-info-heading {
        font-size: 1.1rem;
    }
    
    .contact-info-text {
        font-size: 0.95rem;
    }
    
    .contact-hours {
        align-items: center;
    }
    
    .contact-hours-row {
        justify-content: center;
    }
    
    .contact-hours-label,
    .contact-hours-time {
        text-align: center;
    }
    
    .contact-map-wrapper {
        height: 350px;
    }
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.service-modal-dialog {
    position: relative;
    width: 92%;
    max-width: 900px;
    max-height: 90vh;
    z-index: 10000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-modal.active .service-modal-dialog {
    transform: scale(1);
}

.service-modal-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.service-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--bg-light);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.service-modal-title {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.service-modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.service-modal-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.service-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    color: var(--color-black);
    line-height: 1.8;
    font-size: 1rem;
}

.service-modal-body .service-modal-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-modal-body h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-modal-body h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-modal-body p {
    margin-bottom: 1rem;
}

.service-modal-body p:last-child {
    margin-bottom: 0;
}

.service-modal-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-modal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-modal-body ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-modal-body ul li:last-child {
    margin-bottom: 0;
}

.service-modal-footer {
    padding: 1rem 2rem;
    border-top: 1px solid var(--bg-light);
    background: #f8f9fa;
    text-align: center;
}

.service-modal-counter {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-modal-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.service-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.service-modal-nav-prev {
    left: 20px;
}

.service-modal-nav-next {
    right: 20px;
}

@media (max-width: 768px) {
    .service-modal-dialog {
        width: 96%;
        max-height: 95vh;
    }

    .service-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .service-modal-title {
        font-size: 1.25rem;
    }

    .service-modal-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .service-modal-footer {
        padding: 0.75rem 1.5rem;
    }

    .service-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .service-modal-nav-prev {
        left: 10px;
    }

    .service-modal-nav-next {
        right: 10px;
    }
}

/* Gallery Lightbox Overlay */
.gallery-lightbox {
    text-decoration: none;
    display: block;
    position: relative;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 43, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-lightbox:hover .gallery-overlay {
    opacity: 1;
}

.gallery-lightbox:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox customization */
.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.lb-data .lb-number {
    color: rgba(255, 255, 255, 0.8);
}


/* Footer Links */
.footer-links {
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1.25rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: #ffc107;
}

.cookie-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: #667eea;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #8b9ff0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-icon {
        font-size: 1.5rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-divider {
        display: none;
    }

    .footer-links a {
        padding: 0.25rem 0.5rem;
    }
}

/* Reviews Section - Yan yana yorumlar ve ok pagination */
.reviews-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at top, #1a1f2e 0%, #0f1419 50%, #0a0d12 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(15, 45, 82, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 45, 82, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.reviews-section .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.reviews-container {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 0 10px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    animation: fadeInSlide 0.5s ease-in-out;
}

.reviews-grid .review-bubble {
    width: 100%;
    min-width: auto;
    max-width: none;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-bubble {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem 3rem 3rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: auto;
    height: 450px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    overflow: visible;
}

.review-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF002B 0%, #35255A 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-star {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-star.empty {
    color: #ddd;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.review-go-to-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FF002B 0%, #35255A 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    user-select: none;
    -webkit-user-select: none;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.review-go-to-button i {
    font-size: 0.85rem;
}

.review-go-to-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 43, 0.5);
}

.review-go-to-button:active {
    transform: translateY(0);
}

/* Dot Pagination */
.review-pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Mobile responsive */
@media (max-width: 768px) {
    .reviews-container {
        padding: 0 20px;
    }

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

    .review-bubble {
        padding: 1.5rem;
        min-height: auto;
        height: auto;
        height: 500px;
    }
    
    .review-pagination {
        gap: 0.5rem;
    }
    
    .review-pagination-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-grid {
        gap: 0.75rem;
    }
    
    .review-bubble {
        padding: 1rem;
    }
    
    .review-author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .review-author-name {
        font-size: 0.9rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
}