/*
* Bazar Media - Kurdistan Tourism CSS
* Theme: Modern Tourism
* Author: Bazar Media Team
* Version: 1.0
*/

/* 
* ========================
* TABLE OF CONTENTS
* ========================
* 01. General Styles
* 02. Preloader
* 03. Header & Navigation
* 04. Hero Banner
* 05. Section Styles
* 06. Destination Cards
* 07. Gallery
* 08. Video Cards
* 09. Book Cards
* 10. Testimonials
* 11. Contact
* 12. Footer
* 13. Helper Classes
* 14. Animations
*/

/*=====================
    01. General Styles
=======================*/
:root {
    --primary-color: #00695c;
    --primary-dark: #004d40;
    --primary-light: #4db6ac;
    --secondary-color: #f9a825;
    --secondary-dark: #c17900;
    --secondary-light: #ffd95b;
    --light-color: #f5f5f5;
    --dark-color: #212121;
    --text-color: #333333;
    --text-light: #757575;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --red: #dc3545;
    --yellow: #ffc107;
    --green: #28a745;
    --cyan: #17a2b8;
    --body-font: 'Noto Sans Arabic', sans-serif;
    --heading-font: 'Noto Sans Arabic', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.25rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.form-control {
    height: 50px;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    color: var(--text-color);
    background-color: var(--white);
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 92, 0.25);
}

.form-select {
    height: 50px;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 92, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: vertical;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.bg-light {
    background-color: var(--gray-100) !important;
}

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

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

.text-primary {
    color: var(--primary-color) !important;
}

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

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.section-line:before,
.section-line:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: -3px;
}

.section-line:before {
    left: 0;
}

.section-line:after {
    right: 0;
}

.highlight {
    background-color: var(--secondary-light);
    padding: 0 5px;
}

/*=====================
    02. Preloader
=======================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    text-align: center;
}

.loader p {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/*=====================
    03. Header & Navigation
=======================*/
.site-header {
    position: relative;
}

.navbar {
    padding: 0.75rem 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-brand img {
    height: 50px;
    margin-left: 0.75rem;
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-nav {
    margin-right: 2rem;
}

.nav-item {
    margin: 0 0.25rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 100%;
    right: auto;
    left: 0;
}

.nav-right {
    display: flex;
    align-items: center;
}

.language-switcher .btn {
    background-color: transparent;
    color: var(--text-color);
    border: none;
    font-weight: 600;
}

.language-switcher .dropdown-menu {
    min-width: 150px;
    padding: 0.5rem 0;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
}

.language-switcher .dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.language-switcher .dropdown-item.active,
.language-switcher .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.search-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--text-color);
    margin-right: 1rem;
}

.search-icon a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*=====================
    04. Hero Banner
=======================*/
.hero-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-btns .btn {
    margin: 0 0.5rem;
}

.hero-slider .swiper-pagination {
    bottom: 30px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

/*=====================
    05. Section Styles
=======================*/
/* Section Title */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image img {
    transition: var(--transition);
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-list {
    margin-bottom: 2rem;
}

.about-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 0.75rem;
}

.about-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
}

/*=====================
    06. Destination Cards
=======================*/
.destination-card {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-content h3 a {
    color: var(--dark-color);
}

.card-content h3 a:hover {
    color: var(--primary-color);
}

.card-location {
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.card-location i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.read-more i {
    margin-right: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(-5px);
}

/*=====================
    07. Gallery
=======================*/
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
}

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

.gallery-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    margin-bottom: 1rem;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay a {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-overlay p {
    color: var(--light-color);
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/*=====================
    08. Video Cards
=======================*/
.video-card {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
}

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

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-image img {
    transform: scale(1.1);
}

.video-image a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    transition: var(--transition);
}

.video-image a:hover {
    background-color: var(--primary-dark);
}

.video-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.video-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.video-meta span {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: 1rem;
}

.video-meta span i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

/*=====================
    09. Book Cards
=======================*/
.book-card {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-10px);
}

.book-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.book-card:hover .book-image img {
    transform: scale(1.1);
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.book-card:hover .book-overlay {
    opacity: 1;
}

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

.book-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.book-content h3 a {
    color: var(--dark-color);
}

.book-content h3 a:hover {
    color: var(--primary-color);
}

.book-author {
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.book-author i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.book-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.book-meta span {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: 1rem;
}

.book-meta span i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.book-actions {
    margin-top: auto;
}

/*=====================
    10. Testimonials
=======================*/
.testimonial-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin: 1rem 0.5rem;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.testimonials-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray-400);
    opacity: 0.5;
    transition: var(--transition);
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

/*=====================
    11. Contact
=======================*/
.contact-info-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 30px;
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.contact-info-item a {
    color: var(--text-color);
}

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

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/*=====================
    12. Footer
=======================*/
.site-footer {
    background-color: var(--dark-color);
    color: var(--gray-400);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 1.5rem;
}

.widget-title h3 {
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0;
}

.widget-title h3:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-logo img {
    height: 60px;
}

.about-widget p {
    line-height: 1.8;
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-left: 0.75rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.links-list li {
    margin-bottom: 0.75rem;
}

.links-list li a {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.links-list li a i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.links-list li a:hover {
    color: var(--white);
}

.links-list li a:hover i {
    transform: translateX(-5px);
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-left: 1rem;
    flex-shrink: 0;
}

.contact-list .text p {
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-list .text p a {
    color: var(--gray-400);
    transition: var(--transition);
}

.contact-list .text p a:hover {
    color: var(--white);
}

.newsletter-form {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-form .form-group {
    margin-bottom: 0;
}

.newsletter-form input {
    height: 50px;
    border-radius: 25px;
    padding: 0 60px 0 20px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.newsletter-form button {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
}

.footer-nav ul {
    display: flex;
    justify-content: flex-end;
}

.footer-nav ul li {
    margin-right: 1.5rem;
}

.footer-nav ul li:last-child {
    margin-right: 0;
}

.footer-nav ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--white);
}

/*=====================
    13. Helper Classes
=======================*/
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

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

.fadeInUp {
    animation: fadeInUp 1s ease;
}