/* Custom styles for home.html */

/* Google Fonts - Exo 2 */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');

/* Override primary color to gold-bronze */
:root {
    --primary: #D4A574;
    --primary-rgb: 212, 165, 116;
}

/* Ensure gold-bronze color is applied everywhere */
.text-primary,
.text-primary *,
span.text-primary {
    color: #D4A574 !important;
}

.bg-primary,
.bg-primary * {
    background-color: #D4A574 !important;
}

.tf-btn.style-2.style-fill-white {
    background-color: #D4A574;
    border-color: #D4A574;
}

.tf-btn.style-2.style-fill-white:hover {
    background-color: #C99A5F;
    border-color: #C99A5F;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* Apply Exo 2 font to all elements */
* {
    font-family: 'Exo 2', sans-serif !important;
}

body {
    font-family: 'Exo 2', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.text-display-1, .text-display-2,
.text-body-1, .text-body-2,
.text-caption {
    font-family: 'Exo 2', sans-serif !important;
}

/* Hero Section - Full Screen */
.section-hero-home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

/* Background layers */
.section-hero-home .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-hero-home .hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.section-hero-home .hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroImageZoom 20s ease-in-out infinite;
}

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

.section-hero-home .hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Animated particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(2px);
    animation: floatParticle 15s ease-in-out infinite;
}

.hero-particles .particle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.5);
}

.hero-particles .particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    box-shadow: 0 0 60px rgba(212, 165, 116, 0.4);
}

.hero-particles .particle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
}

.hero-particles .particle-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
    box-shadow: 0 0 50px rgba(212, 165, 116, 0.4);
}

.hero-particles .particle-5 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 10%;
    animation-delay: 8s;
    box-shadow: 0 0 35px rgba(212, 165, 116, 0.5);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.5;
    }
}

/* Hero content */
.section-hero-home .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 180px 0 120px;
}

/* Hero badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px 24px;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge span {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
}

/* Hero title */
.section-hero-home .hero-description-main {
    font-size: clamp(32px, 5.5vw, 72px);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-hero-home .hero-description-main .hero-text-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-hero-home .hero-description-main .hero-text-line:first-child {
    animation-delay: 0.4s;
}

.section-hero-home .hero-description-main .hero-text-line.hero-text-highlight {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
}

/* Hero subtitle */
.section-hero-home .hero-description-sub {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Hero locations */
.section-hero-home .hero-locations {
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 50px;
    opacity: 0;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Hero CTA */
.section-hero-home .hero-cta {
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-btn {
    position: relative;
    overflow: hidden;
    padding-right: 50px !important;
    transition: all 0.4s ease;
}

.hero-btn .btn-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 20px;
}

.hero-btn:hover .btn-arrow {
    transform: translateY(-50%) translateX(5px);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s both;
}

/* Fade transition to next section */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 5;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 1) 100%
    );
    pointer-events: none;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

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

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

/* Header Improvements */
.tf-header.style-2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
    min-height: auto;
}

.tf-header.style-2.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tf-header.style-2 .header-inner {
    padding: 1px 0;
}

.tf-header.style-2 .link {
    transition: color 0.3s ease;
    position: relative;
}

.tf-header.style-2 .link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.tf-header.style-2 .link:hover::after {
    width: 100%;
}

.tf-header.style-2 .link:hover {
    color: var(--primary) !important;
}

.tf-header.style-2 .logo-site {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.tf-header.style-2 .logo-site:hover {
    transform: scale(1.1);
}

.tf-header.style-2 .text-caption {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.1;
    padding: 0;
    margin: 0;
}

.tf-header.style-2 .header-menu-list {
    gap: 30px;
    margin: 0;
    padding: 0;
}

.tf-header.style-2 .header-menu-list li {
    margin: 0;
    padding: 0;
}

.tf-header.style-2 .header-contact {
    margin: 0;
    padding: 0;
}

.tf-header.style-2 .header-contact {
    display: flex;
    align-items: center;
}

.tf-header.style-2 .header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 10px 20px;
    color: #000 !important;
    background-color: #D4A574;
    border: 2px solid #D4A574;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    white-space: nowrap;
}

.tf-header.style-2 .header-phone-btn svg {
    width: 18px;
    height: 18px;
    color: #000;
    flex-shrink: 0;
}

.tf-header.style-2 .header-phone-btn:hover {
    background-color: #C99A5F;
    border-color: #C99A5F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.tf-header.style-2 .header-phone-btn:active {
    transform: translateY(0);
}

.tf-header.style-2 .logo-site {
    font-size: 28px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.tf-header.style-2 .logo-site i {
    font-size: 24px;
    line-height: 1;
}

.tf-header.style-2 .row {
    align-items: center;
    min-height: auto;
    margin: 0;
}

.tf-header.style-2 .container {
    padding-top: 0;
    padding-bottom: 0;
}

.tf-header.style-2 .link {
    padding: 0;
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 767px) {
    .tf-header.style-2 .text-caption {
        font-size: 10px;
    }
}

/* Mobile Menu Improvements */
.offcanvas-menu {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-images .hero-image-main {
        right: 5%;
        opacity: 0.2;
    }
    
    .hero-images .hero-image-secondary {
        left: 2%;
        opacity: 0.15;
    }
}

@media (max-width: 991px) {
    .section-hero-home .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-images .hero-image-main,
    .hero-images .hero-image-secondary {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-particles .particle {
        opacity: 0.2;
    }
}

@media (max-width: 767px) {
    .section-hero-home {
        min-height: 90vh;
    }
    
    .section-hero-home .hero-content {
        padding: 120px 0 60px;
    }
    
    .hero-particles {
        display: none;
    }
    
    .section-hero-home .hero-bg-image img {
        animation: none;
        transform: scale(1.1);
    }
    
    .hero-fade-bottom {
        height: 100px;
    }
    
    .section-tasks-with-image {
        margin-top: -50px;
        padding-top: 80px;
    }
    
    .hero-badge {
        margin-bottom: 20px;
        padding: 6px 18px;
    }
    
    .section-hero-home .hero-locations {
        margin-bottom: 30px;
        font-size: 13px;
    }
    
    .section-hero-home .hero-description-main {
        margin-bottom: 15px;
        font-size: 28px;
        line-height: 1.4;
    }
    
    .section-hero-home .hero-description-sub {
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.5;
    }
    
    .hero-btn {
        padding-right: 40px !important;
    }
    
    .hero-btn .btn-arrow {
        right: 15px;
        font-size: 18px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .section-hero-home .hero-note {
        font-size: 13px;
    }
    
    .tf-header.style-2 .header-inner {
        padding: 0.5px 0;
    }
    
    .tf-header.style-2 .text-caption {
        font-size: 13px;
        padding: 0;
    }
    
    .tf-header.style-2 .header-menu-list {
        gap: 25px;
    }
    
    .tf-header.style-2 .logo-site {
        font-size: 24px;
        padding: 0;
    }
    
    .tf-header.style-2 .header-phone-btn {
        font-size: 14px;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .tf-header.style-2 .header-phone-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .tf-header.style-2 .link {
        padding: 0;
    }
    
    .tf-header.style-2 .logo-site {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .section-hero-home {
        min-height: 85vh;
    }
    
    .section-hero-home .hero-content {
        padding: 100px 0 50px;
    }
    
    .hero-fade-bottom {
        height: 60px;
    }
    
    .section-tasks-with-image {
        margin-top: 0 !important;
        padding-top: 80px !important;
    }
    
    .hero-badge {
        margin-bottom: 15px;
        padding: 5px 15px;
    }
    
    .hero-badge span {
        font-size: 10px;
    }
    
    .section-hero-home .hero-locations {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .section-hero-home .hero-description-main {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .section-hero-home .hero-description-sub {
        margin-bottom: 35px;
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-btn {
        padding: 12px 30px !important;
        font-size: 13px;
    }
    
    .hero-scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-mouse {
        width: 20px;
        height: 32px;
    }
    
    .section-hero-home .hero-cta {
        margin-bottom: 25px;
    }
    
    .section-hero-home .hero-note {
        font-size: 12px;
    }
    
    .tf-header.style-2 .header-inner {
        padding: 0;
    }
    
    .tf-header.style-2 .text-caption {
        font-size: 12px;
        padding: 0;
    }
    
    .tf-header.style-2 .header-menu-list {
        gap: 20px;
    }
    
    .tf-header.style-2 .logo-site {
        font-size: 22px;
        padding: 0;
    }
    
    .tf-header.style-2 .header-phone-btn {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .tf-header.style-2 .header-phone-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .tf-header.style-2 .link {
        padding: 0;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Body padding for fixed header */
body {
    padding-top: 0;
}

/* Adjust hero section for fixed header */
.section-hero-home {
    margin-top: 0;
}

/* Custom button styles */
.tf-btn.style-2.style-fill-white {
    font-family: 'Exo 2', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 16px 40px;
    font-size: 14px;
    background-color: #D4A574 !important;
    border-color: #D4A574 !important;
    color: #000 !important;
}

.tf-btn.style-2.style-fill-white:hover {
    transform: translateY(-2px);
    background-color: #C99A5F !important;
    border-color: #C99A5F !important;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

@media (max-width: 575px) {
    .tf-btn.style-2.style-fill-white {
        padding: 14px 30px;
        font-size: 13px;
    }
}

/* Section spacing adjustments */
section {
    scroll-margin-top: 80px;
}

/* Tasks Section with B&W Images - Enhanced */
.section-tasks-with-image {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin-top: -100px;
    padding-top: 140px;
}

.section-tasks-with-image .s-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
    color: #fff;
}

.section-tasks-with-image .task-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
    transition: transform 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
}

.section-tasks-with-image .task-item:hover {
    transform: translateY(-10px);
}

.section-tasks-with-image .task-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.section-tasks-with-image .task-item:hover::before {
    opacity: 1;
}

.section-tasks-with-image .task-image-wrapper {
    position: relative;
    width: 100%;
    height: 50%;
    min-height: 350px;
    overflow: hidden;
}

.section-tasks-with-image .task-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.section-tasks-with-image .task-item:hover .task-image-wrapper img {
    transform: scale(1.1);
    filter: contrast(1.2) brightness(1);
}

.section-tasks-with-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.section-tasks-with-image .task-item:hover .image-overlay {
    opacity: 0.7;
}

.section-tasks-with-image .image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 2;
    opacity: 0;
}

.section-tasks-with-image .task-item:hover .image-shine {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.section-tasks-with-image .task-content-wrapper {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    height: 50%;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.section-tasks-with-image .task-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A574, transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.section-tasks-with-image .task-item:hover .task-content-wrapper::before {
    transform: scaleX(1);
}

.section-tasks-with-image .task-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.section-tasks-with-image .task-title {
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.section-tasks-with-image .task-item:hover .task-title {
    color: #D4A574;
    transform: translateX(10px);
}

.section-tasks-with-image .task-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4A574, transparent);
    transition: width 0.6s ease;
}

.section-tasks-with-image .task-item:hover .task-title::after {
    width: 100px;
}

.section-tasks-with-image .task-content ul li {
    transition: all 0.3s ease;
    padding-left: 0;
}

.section-tasks-with-image .task-item:hover .task-content ul li {
    transform: translateX(5px);
}

.section-tasks-with-image .task-content ul li:hover {
    transform: translateX(10px);
    color: #D4A574;
}

@media (max-width: 991px) {
    .section-tasks-with-image {
        padding: 30px 0;
    }
    
    .section-tasks-with-image .s-header h2 {
        margin-bottom: 40px;
    }
    
    .section-tasks-with-image .task-item {
        min-height: 600px;
    }
    
    .section-tasks-with-image .task-image-wrapper {
        min-height: 300px;
    }
    
    .section-tasks-with-image .task-content-wrapper {
        min-height: 300px;
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {
    .section-tasks-with-image {
        padding: 20px 0;
        margin-top: -30px !important;
        padding-top: 100px !important;
    }
    
    .section-tasks-with-image .s-header h2 {
        margin-bottom: 30px;
        font-size: 28px;
    }
    
    .section-tasks-with-image .task-item {
        min-height: 550px;
    }
    
    .section-tasks-with-image .task-image-wrapper {
        min-height: 250px;
    }
    
    .section-tasks-with-image .task-content-wrapper {
        min-height: 300px;
        padding: 35px 20px;
    }
    
    .section-tasks-with-image .task-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}

/* Benefits Section */
.section-benefits {
    position: relative;
    padding: 80px 0;
}

.section-benefits .benefits-intro {
    margin-bottom: 50px;
}

.section-benefits .benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.section-benefits .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A574, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.section-benefits .benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
}

.section-benefits .benefit-card:hover::before {
    transform: scaleX(1);
}

.section-benefits .benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #D4A574;
    transition: all 0.4s ease;
}

.section-benefits .benefit-card:hover .benefit-icon {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.section-benefits .benefit-icon svg {
    width: 32px;
    height: 32px;
}

.section-benefits .benefit-title {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
}

.section-benefits .benefit-text {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.section-benefits .benefit-card-large {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(212, 165, 116, 0.02) 100%);
    border-color: rgba(212, 165, 116, 0.2);
}

.section-benefits .benefit-card-large:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-color: rgba(212, 165, 116, 0.4);
}

@media (max-width: 991px) {
    .section-benefits {
        padding: 60px 0;
    }
    
    .section-benefits .benefit-card {
        padding: 35px 25px;
    }
    
    .section-benefits .benefit-card-large {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .section-benefits {
        padding: 40px 0;
    }
    
    .section-benefits .benefit-card {
        padding: 30px 20px;
    }
    
    .section-benefits .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .section-benefits .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Geography Section */
.section-geography {
    position: relative;
    padding: 80px 0;
    background: #000;
}

.section-geography .geography-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.section-geography .geography-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

.section-geography .geography-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.section-geography .geography-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: all 0.6s ease;
}

.section-geography .geography-card:hover .geography-image img {
    transform: scale(1.1);
    filter: contrast(1.2) brightness(1);
}

.section-geography .geography-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.section-geography .geography-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.section-geography .geography-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.section-geography .geography-card:hover .geography-title {
    color: #D4A574;
}

.section-geography .geography-text {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 991px) {
    .section-geography {
        padding: 60px 0;
    }
    
    .section-geography .geography-image {
        height: 300px;
    }
    
    .section-geography .geography-content {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .section-geography {
        padding: 40px 0;
    }
    
    .section-geography .geography-image {
        height: 250px;
    }
    
    .section-geography .geography-content {
        padding: 20px;
    }
}

/* Team Section */
.section-team {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.section-team .team-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.section-team .team-lead {
    margin-bottom: 30px;
}

.section-team .team-avatar {
    margin-bottom: 24px;
    display: inline-block;
}

.section-team .avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    border: 3px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A574;
    transition: all 0.4s ease;
    margin: 0 auto;
}

.section-team .team-main:hover .avatar-placeholder {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.5);
    transform: scale(1.05);
}

.section-team .team-name {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.2;
}

.section-team .team-role {
    font-size: clamp(16px, 1.5vw, 20px);
    color: #D4A574;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
}

.section-team .team-description {
    margin-bottom: 50px;
}

.section-team .team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-team .member-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    min-width: 120px;
}

.section-team .member-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-5px);
}

.section-team .member-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A574;
    transition: all 0.4s ease;
}

.section-team .member-item:hover .member-icon {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.1);
}

.section-team .member-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-team .team-note {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .section-team {
        padding: 60px 0;
    }
    
    .section-team .team-members {
        gap: 30px;
    }
    
    .section-team .member-item {
        min-width: 100px;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .section-team {
        padding: 40px 0;
    }
    
    .section-team .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .section-team .team-members {
        gap: 20px;
    }
    
    .section-team .member-item {
        min-width: 90px;
        padding: 15px 10px;
    }
    
    .section-team .member-icon {
        width: 40px;
        height: 40px;
    }
}

/* Why Us Section */
.section-why-us {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.section-why-us .why-us-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.section-why-us .why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A574, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.section-why-us .why-us-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

.section-why-us .why-us-card:hover::before {
    transform: scaleX(1);
}

.section-why-us .why-us-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #D4A574;
    transition: all 0.4s ease;
}

.section-why-us .why-us-card:hover .why-us-icon {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.section-why-us .why-us-icon svg {
    width: 32px;
    height: 32px;
}

.section-why-us .why-us-title {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.section-why-us .why-us-card:hover .why-us-title {
    color: #D4A574;
}

.section-why-us .why-us-text {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 991px) {
    .section-why-us {
        padding: 60px 0;
    }
    
    .section-why-us .why-us-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .section-why-us {
        padding: 40px 0;
    }
    
    .section-why-us .why-us-card {
        padding: 30px 20px;
    }
    
    .section-why-us .why-us-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .section-why-us .why-us-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* How We Work Section */
.section-how-we-work {
    position: relative;
    padding: 80px 0;
}

.section-how-we-work .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.section-how-we-work .step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.section-how-we-work .step-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateX(10px);
}

.section-how-we-work .step-number {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: #D4A574;
    min-width: 80px;
    text-align: center;
    position: relative;
}

.section-how-we-work .step-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #D4A574;
    border-radius: 2px;
}

.section-how-we-work .step-content {
    flex: 1;
}

.section-how-we-work .step-title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
}

.section-how-we-work .step-description {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.section-how-we-work .step-connector {
    position: absolute;
    left: 70px;
    top: 100%;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #D4A574 0%, transparent 100%);
    opacity: 0.3;
}

.section-how-we-work .step-item:last-child .step-connector {
    display: none;
}

.section-how-we-work .work-note {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .section-how-we-work {
        padding: 60px 0;
    }
    
    .section-how-we-work .steps-wrapper {
        gap: 30px;
    }
    
    .section-how-we-work .step-item {
        padding: 25px;
        gap: 20px;
    }
    
    .section-how-we-work .step-number {
        min-width: 60px;
        font-size: 48px;
    }
    
    .section-how-we-work .step-connector {
        left: 50px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .section-how-we-work {
        padding: 40px 0;
    }
    
    .section-how-we-work .steps-wrapper {
        gap: 25px;
    }
    
    .section-how-we-work .step-item {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .section-how-we-work .step-number {
        min-width: auto;
        width: 100%;
        text-align: left;
        font-size: 40px;
    }
    
    .section-how-we-work .step-number::after {
        left: 0;
        transform: none;
    }
    
    .section-how-we-work .step-connector {
        display: none;
    }
    
    .section-how-we-work .step-item:hover {
        transform: translateX(0);
    }
}

/* Mobile menu improvements */
.offcanvas-menu .mb-menu-link {
    font-family: 'Exo 2', sans-serif !important;
}

.offcanvas-menu .text-caption {
    font-family: 'Exo 2', sans-serif !important;
}

/* New Mobile Menu Content */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.mobile-menu-phone {
    margin-bottom: 10px;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-phone-link:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.mobile-phone-link svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
}

.mobile-menu-cta {
    margin: 10px 0;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: var(--primary);
    color: #000;
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.mobile-cta-btn:hover {
    background: #C99A5F;
    border-color: #C99A5F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.mobile-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-cta-btn:hover svg {
    transform: translateX(5px);
}

.mobile-menu-info {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-info-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.mobile-info-cities {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.mobile-menu-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.mobile-social-link svg {
    width: 20px;
    height: 20px;
}

.mobile-social-link:first-child svg {
    color: #25D366;
}

.mobile-social-link:last-child svg {
    color: #2596BE;
}

/* CTA Form Styles */
.section-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.section-cta .s-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    color: #fff;
}

.section-cta .form-cta {
    max-width: 600px;
    margin: 0 auto;
}

.section-cta .form-content {
    margin-bottom: 40px;
}

.section-cta .tf-field {
    margin-bottom: 30px;
}

.section-cta .tf-field-checkbox {
    margin-bottom: 40px;
    margin-top: 10px;
}

.section-cta .tf-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.section-cta .tf-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.section-cta .checkmark {
    position: relative;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.section-cta .tf-checkbox:hover .checkmark {
    border-color: var(--primary);
}

.section-cta .tf-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.section-cta .tf-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.section-cta .checkbox-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.section-cta .form-action {
    text-align: center;
}

.section-cta .form-action .tf-btn {
    min-width: 280px;
    padding: 18px 40px;
}

/* Contact Section */
.section-contact {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.section-contact .s-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
    color: #fff;
}

@media (max-width: 767px) {
    .section-cta {
        padding: 60px 0;
    }
    
    .section-cta .form-cta {
        max-width: 100%;
    }
    
    .section-cta .tf-field {
        margin-bottom: 25px;
    }
    
    .section-cta .tf-field-checkbox {
        margin-bottom: 35px;
    }
    
    .section-cta .form-action .tf-btn {
        min-width: 100%;
        width: 100%;
    }
    
    .section-contact {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .section-cta {
        padding: 50px 0;
    }
    
    .section-cta .s-header h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-cta .form-cta {
        padding: 0 15px;
    }
    
    .section-cta .checkbox-text {
        font-size: 13px;
    }
    
    .section-contact {
        padding: 50px 0;
    }
    
    .section-contact .s-header h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Footer Styles */
.tf-footer.style-2 .footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tf-footer.style-2 .footer-bottom .bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tf-footer.style-2 .footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tf-footer.style-2 .footer-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.tf-footer.style-2 .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.tf-footer.style-2 .footer-cities {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.tf-footer.style-2 .footer-disclaimer,
.tf-footer.style-2 .footer-privacy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

@media (max-width: 767px) {
    .tf-footer.style-2 .footer-bottom {
        padding: 30px 0;
    }
    
    .tf-footer.style-2 .footer-bottom .bottom {
        gap: 15px;
    }
    
    .tf-footer.style-2 .footer-info p {
        font-size: 12px;
    }
    
    .tf-footer.style-2 .footer-cities {
        font-size: 12px;
    }
    
    .tf-footer.style-2 .footer-disclaimer,
    .tf-footer.style-2 .footer-privacy {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .tf-footer.style-2 .footer-bottom {
        padding: 25px 0;
    }
    
    .tf-footer.style-2 .footer-info p {
        font-size: 11px;
    }
    
    .tf-footer.style-2 .footer-disclaimer,
    .tf-footer.style-2 .footer-privacy {
        font-size: 9px;
    }
}

/* Social Media Widget */
.social-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    font-family: 'Exo 2', sans-serif;
}

.social-widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
    color: #000;
    position: relative;
    z-index: 1001;
}

.social-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.6);
    background: #C99A5F;
}

.social-widget-toggle svg {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-widget-toggle .icon-close {
    opacity: 0;
    transform: rotate(90deg);
}

.social-widget-toggle .icon-open {
    opacity: 1;
    transform: rotate(0deg);
}

.social-widget.active .social-widget-toggle .icon-open {
    opacity: 0;
    transform: rotate(-90deg);
}

.social-widget.active .social-widget-toggle .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

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

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-btn:hover {
    transform: translateX(-5px);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

.social-whatsapp svg {
    color: #25D366;
}

.social-telegram:hover {
    background: rgba(37, 150, 190, 0.2);
    border-color: #2596BE;
}

.social-telegram svg {
    color: #2596BE;
}

.social-phone:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--primary);
}

.social-phone svg {
    color: var(--primary);
}

.social-btn span {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .social-widget {
        bottom: 90px;
        right: 20px;
    }
    
    .social-widget-toggle {
        width: 56px;
        height: 56px;
    }
    
    .social-widget-toggle svg {
        width: 22px;
        height: 22px;
    }
    
    .social-widget-menu {
        bottom: 66px;
        gap: 12px;
    }
    
    .social-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 150px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 575px) {
    .social-widget {
        bottom: 85px;
        right: 15px;
    }
    
    .social-widget-toggle {
        width: 52px;
        height: 52px;
    }
    
    .social-widget-menu {
        bottom: 62px;
        gap: 10px;
    }
    
    .social-btn {
        padding: 9px 16px;
        font-size: 12px;
        min-width: 140px;
    }
}

