:root {
    --primary-color: #2A8BAF;
    --secondary-color: #E8A838;
    --accent-color: #F2B749;
    --light-bg: #f6efdc;
    --dark-text: #2C3E50;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: #f6efdc;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-toggler {
    border-color: var(--dark-text);
    padding: 5px 10px;
}

.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='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 25px;
    height: 25px;
}

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

.navbar-collapse {
    margin-top: 1rem;
}

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

.navbar-nav .nav-item {
    margin: 5px 0;
}

.navbar-nav .nav-link {
    padding: 10px 0;
}

/* Hero Section with Swiper */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.heroSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Swiper Fade Effect */
.heroSwiper .swiper-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.heroSwiper .swiper-slide-active {
    opacity: 1;
}

/* Swiper Wrapper */
.heroSwiper .swiper-wrapper {
    min-height: 100vh;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42,139,175,0.85), rgba(232,168,56,0.75));
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0 L50 100 M0 50 L100 50" stroke="rgba(255,255,255,0.05)" stroke-width="1" opacity="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    z-index: 2;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-5%, -5%);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

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

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease-out;
}

.slide-tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

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

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

.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 100 100"><path d="M20,80 L50,20 L80,80 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(242, 183, 73, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.slide-tagline {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

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

.btn-outline {
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
}

.btn-outline:hover {
    background: white !important;
    color: var(--dark-text) !important;
}

/* Ensure all text in hero section is white */
.hero-content,
.hero-content p,
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content h4,
.hero-content h5,
.hero-content h6,
.hero-content span,
.hero-content div,
.hero-content a {
    color: white !important;
}

.hero-content .slide-badge {
    color: var(--accent-color) !important;
    background: rgba(242, 183, 73, 0.2);
}

.hero-content .btn-custom {
    color: var(--dark-text) !important;
}

.hero-content .btn-outline {
    color: white !important;
}

/* Override any blue colors */
.hero-section .swiper-slide * {
    color: white !important;
}

.hero-section .swiper-slide .slide-tagline {
    color: var(--accent-color) !important;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    color: white !important;
    font-size: 18px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.3) !important;
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

/* Pagination */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-down-text {
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.8;
    letter-spacing: 2px;
}

.scroll-down-arrow {
    font-size: 1.5rem;
    opacity: 0.9;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Progress Bar */
.swiper-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.swiper-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    width: 0%;
    transition: width 0.3s ease;
}

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

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

.btn-custom {
    background: var(--accent-color);
    color: var(--dark-text);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-custom:hover {
    background: #E8A838;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--dark-text);
}

/* Ensure hero section text colors */
.slide-description {
    color: white !important;
}

.slide-title {
    color: white !important;
}

.slide-tagline {
    color: var(--accent-color) !important;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Cottages Showcase */
.cottages-section {
    padding: 80px 0;
    background: white;
}

.cottage-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.cottage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cottage-image {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.cottage-image i {
    font-size: 100px;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cottage-content {
    padding: 30px;
}

.cottage-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cottage-size {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cottage-features {
    list-style: none;
    padding: 0;
}

.cottage-features li {
    padding: 8px 0;
    color: #555;
}

.cottage-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Gallery Section */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* About Us Page Styles */
.about-image img {
    transition: all 0.3s ease;
}

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

.mission-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(42,139,175,0.1);
}

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

.team-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-image img {
    border: 4px solid var(--light-bg);
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    border-color: var(--primary-color);
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

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

.award-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

/* Founder Section Styles */
.founder-image img {
    border: 6px solid var(--light-bg);
    transition: all 0.3s ease;
}

.founder-image img:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.founder-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.achievement-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.achievement-item:hover h5,
.achievement-item:hover p {
    color: white !important;
}

/* Gallery Page Styles */
.gallery-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

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

.gallery-overlay h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 5px 0 0;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-form-card,
.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Enquiry Page Styles */
.enquiry-form-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enquiry-form-card .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.enquiry-form-card .form-control,
.enquiry-form-card .form-select {
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.enquiry-form-card .form-control:focus,
.enquiry-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(42,139,175,0.25);
}

.enquiry-form-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.enquiry-form-card .form-check-label {
    color: #666;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(42,139,175,0.8), rgba(232,168,56,0.7)), 
                url('../images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
    position: relative;
}

/* Slogan Section */
.slogan-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slogan-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 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.slogan-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Footer */
.footer, .footer-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-text);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1,
    .slide-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .slide-tagline {
        font-size: 1.4rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slogan-text {
        font-size: 1.8rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        padding: 0 15px;
    }
    
    .navbar-brand {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        max-width: 70%;
    }
    
    .navbar-brand img {
        height: 50px;
        margin-right: 10px;
    }
    
    .navbar-brand div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .navbar-brand div div:first-child {
        font-size: 1rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .navbar-brand div div:last-child {
        font-size: 0.65rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .navbar-toggler {
        padding: 4px 8px;
        align-self: center;
        margin-left: auto;
    }
    
    .navbar-collapse {
        background: rgba(246, 239, 220, 0.98);
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        padding: 8px 15px !important;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(5px);
    }
    
    .stats-section {
        background-attachment: scroll;
    }
    
    /* Swiper Responsive */
    .slide-title {
        font-size: 2.5rem !important;
    }
    
    .slide-tagline {
        font-size: 1.5rem !important;
    }
    
    .slide-description {
        font-size: 1.1rem !important;
        padding: 0 15px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn-custom {
        width: 90%;
        margin: 5px 0;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px !important;
        height: 45px !important;
        font-size: 14px !important;
    }
    
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 16px;
    }
    
    .scroll-down {
        bottom: 60px;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .slide-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .scroll-down {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem !important;
    }
    
    .slide-tagline {
        font-size: 1.2rem !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 0.75rem;
        max-width: 60%;
    }
    
    .navbar-brand img {
        height: 40px;
        margin-right: 8px;
    }
    
    .navbar-brand div div:first-child {
        font-size: 0.9rem;
    }
    
    .navbar-brand div div:last-child {
        font-size: 0.6rem;
    }
    
    .navbar-toggler {
        padding: 3px 6px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .navbar-collapse {
        padding: 12px;
        margin-top: 8px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 7px 12px !important;
        font-size: 0.95rem;
    }
}

