/* Base Styles */
:root {
    --primary-color: #8c1c2c; /* Wine color */
    --secondary-color: #aa2e3f; /* Lighter wine */
    --accent-color: #d9121f; /* Brighter wine for accents */
    --text-color: #333; /* Dark gray for text */
    --text-light: #666; /* Medium gray */
    --text-lighter: #999; /* Light gray */
    --bg-color: #fff; /* White background */
    --bg-light: #f2f2f2; /* Light gray background */
    --bg-dark: #1a1a1a; /* Near black */
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align h2::after {
    left: 0;
    transform: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease-out;
    transform: skewX(-15deg);
    z-index: -1;
}

.btn:hover::after {
    transform: skewX(-15deg) translateX(100%);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(140, 28, 44, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(140, 28, 44, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
	color: white;
    box-shadow: 0 4px 15px rgba(140, 28, 44, 0.3);
	
}

/* Animation classes */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

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

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

.delay-3 {
    animation-delay: 0.6s;
}

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

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Styles */
.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-img-footer {
    max-height: 45px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

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

.menu {
    display: flex;
    gap: 25px;
}

.menu li a {
    font-weight: 500;
    color: white;
    position: relative;
    padding: 5px 0;
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

.menu li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Hero Section with Video Background */
.hero {
    padding: 0;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

#hero-video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(160, 43, 60, 0.8) 100%);
    z-index: 0;
	/* 105, 109, 111 */
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-content h1 span {
    color: rgba(235, 198, 7);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: rgba(177, 111, 43, 0.8);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Floating elements animation */
.floating-elements {
    position: relative;
    width: 150%;
    height: 480px;
}

.element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.element.coin-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #aa8c00);
    top: 40%;
    left: 72%;
    animation-duration: 5s;
}

.element.coin-1::after {
    content: '$';
    position: absolute;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.element.coin-2 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, #e6e6e6, #999);
    top: 50%;
    left: 95%;
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.element.coin-2::after {
    content: '$';
    position: absolute;
    font-size: 30px;
    color: rgba(0, 0, 0, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.element.coin-3 {
	width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #b87333, #8c5700);
    top: 21%;
    right: 4%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.element.coin-3::after {
    content: '$';
    position: absolute;
    font-size: 25px;
    color: rgba(0, 0, 0, 0.3);
    top: 40%;
    left: 45%;
    transform: translate(-40%, -40%);
}


.element.chart-up {
    width: 130px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    top: 45%;
    left: 30%;
    animation-duration: 8s;
    overflow: visible;
}

.element.chart-up::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 0;
}

.element.chart-up::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 0;
    background: linear-gradient(to top right, transparent 49.5%, var(--accent-color) 50%, transparent 50.5%);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(15px) rotate(-5deg); }
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    opacity: 0.02;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-hover);
}

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

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: rgba(235, 198, 6);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: var(--transition);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Loans Section */
.loans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.loans-section .section-header h2 {
    color: white;
}

.loans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.loan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.loan-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.loan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.loan-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.loan-features {
    margin-top: 20px;
}

.loan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loan-features li i {
    color: var(--accent-color);
}

/* Video Promo Section */
.video-promo-container {
    margin-bottom: 50px;
}

.video-promo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
}

.video-promo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swirl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"><stop offset="0%" stop-color="%238c1c2c" stop-opacity=".5"/><stop offset="100%" stop-color="%231a1a1a" stop-opacity=".9"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/><path d="M0,50 Q25,35 50,50 T100,50 T150,50 T200,50 T250,50 T300,50 T350,50 T400,50" stroke="%23d9121f" stroke-opacity=".7" stroke-width="2" fill="none"><animate attributeName="d" dur="10s" repeatCount="indefinite" values="M0,50 Q25,35 50,50 T100,50 T150,50 T200,50 T250,50 T300,50 T350,50 T400,50;M0,50 Q25,65 50,50 T100,50 T150,50 T200,50 T250,50 T300,50 T350,50 T400,50;M0,50 Q25,35 50,50 T100,50 T150,50 T200,50 T250,50 T300,50 T350,50 T400,50"/></path><path d="M0,70 Q25,55 50,70 T100,70 T150,70 T200,70 T250,70 T300,70 T350,70 T400,70" stroke="%23aa2e3f" stroke-opacity=".5" stroke-width="2" fill="none"><animate attributeName="d" dur="12s" repeatCount="indefinite" values="M0,70 Q25,55 50,70 T100,70 T150,70 T200,70 T250,70 T300,70 T350,70 T400,70;M0,70 Q25,85 50,70 T100,70 T150,70 T200,70 T250,70 T300,70 T350,70 T400,70;M0,70 Q25,55 50,70 T100,70 T150,70 T200,70 T250,70 T300,70 T350,70 T400,70"/></path><path d="M0,30 Q25,15 50,30 T100,30 T150,30 T200,30 T250,30 T300,30 T350,30 T400,30" stroke="white" stroke-opacity=".3" stroke-width="1" fill="none"><animate attributeName="d" dur="15s" repeatCount="indefinite" values="M0,30 Q25,15 50,30 T100,30 T150,30 T200,30 T250,30 T300,30 T350,30 T400,30;M0,30 Q25,45 50,30 T100,30 T150,30 T200,30 T250,30 T300,30 T350,30 T400,30;M0,30 Q25,15 50,30 T100,30 T150,30 T200,30 T250,30 T300,30 T350,30 T400,30"/></path></svg>');
    background-size: cover;
    z-index: 1;
}

.promo-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.promo-content h3 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Image slider in about section */
.image-slider {
    width: 	100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-image {
    width: 	100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 400px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

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

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border: 2px solid white;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--text-lighter);
    margin: 0 0 5px 0;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.service-type {
    background-color: rgba(140, 28, 44, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.verify-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-size: 14px;
}

.testimonial-slider .swiper-pagination {
    bottom: -10px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
    font-size: 18px;
}

.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: white;
}

@media screen and (max-width: 768px) {
    .testimonial-card {
        height: 450px;
    }
}

@media screen and (max-width: 576px) {
    .testimonial-card {
        height: 500px;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 	40px;
    height: 40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

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

.info-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-card p {
    color: var(--text-light);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.contact-form {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 28, 44, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'%3E%3Cpath fill='%23333' d='M0 0l6 6 6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 70px 0 20px;
}

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

.footer-logo p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}

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

.link-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.link-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -8px;
    left: 0;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.link-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 0;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .floating-elements {
        height: 200px;
    }
    
    .video-promo {
        height: 300px;
    }
}


/* Fixed Social Media Bubbles */
.social-bubbles {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-bubble {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-bubble:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-bubble::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: var(--bg-dark);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.social-bubble:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-bubble.whatsapp {
    background: #25D366;
}

.social-bubble.facebook {
    background: #1877F2;
}

.social-bubble.twitter {
    background: #1DA1F2;
}

.social-bubble.instagram {
    background: #E4405F;
}

.social-bubble.linkedin {
    background: #0A66C2;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 0;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-bubbles {
        bottom: 10px;
        right: 10px;
    }
    
    .social-bubble {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .floating-elements {
        height: 200px;
    }
    
    .video-promo {
        height: 300px;
    }
}