        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #8b5a2b;
            --secondary-color: #d4af37;
            --dark-color: #3e2723;
            --light-color: #f9f5f0;
            --accent-color: #c19a6b;
            --transition: all 0.3s ease;
        }

        body {
            background-color: #f9f5f0;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Top Bar Styles */
        .top-bar {
            background-color: var(--dark-color);
            color: white;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        .top-bar-contact {
            display: flex;
            gap: 20px;
        }

        .top-bar-contact span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-contact i {
            color: var(--secondary-color);
        }

        .top-bar-social {
            display: flex;
            gap: 15px;
        }

        .top-bar-social a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .top-bar-social a:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .logo-alt{
            max-width: 150px;
            padding-top: 20px;
        }

        /* Navbar Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 5%; 
        }

        @media(max-width:763px){
            .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 3px 5% 4px; 
        }
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 8px;
            font-size: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin: 0 15px;
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            padding: 10px 0;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            text-decoration: none;
            color: var(--dark-color);
            transition: var(--transition);
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f9f5f0;
            color: var(--primary-color);
            padding-left: 25px;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100%;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            z-index: 1001;
            overflow-y: auto;
            padding: 30px;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        .mobile-nav-menu {
            list-style: none;
            margin-top: 40px;
        }

        .mobile-nav-item {
            margin-bottom: 15px;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            transition: var(--transition);
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-link:hover {
            color: var(--primary-color);
            padding-left: 10px;
        }

        .mobile-dropdown-content {
            margin-left: 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-content.active {
            max-height: 300px;
        }

        .mobile-dropdown-content a {
            display: block;
            padding: 8px 0;
            text-decoration: none;
            color: var(--secondary-color);
            transition: var(--transition);
        }

        .mobile-dropdown-content a:hover {
            color: var(--primary-color);
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-toggle i {
            transition: var(--transition);
        }

        .mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .contact-details {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .contact-details h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .contact-info {
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .contact-item i {
            margin-right: 10px;
            color: var(--primary-color);
            width: 20px;
        }

        .social-media {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f9f5f0;
            border-radius: 50%;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-bottom: -120px;
            z-index: 1;
        }

        .slides {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .slide {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0;
        }

        .slide-content {
            width: 100%;
            max-width: none;
            z-index: 2;
            color: white;
            text-align: center;
            animation: fadeInUp 1s ease-out;
            padding: 0 5%;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            width: 100%;
            word-wrap: break-word;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            width: 100%;
            line-height: 1.6;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(139, 90, 43, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            margin-left: 10px;
        }

        .btn-outline:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* Full width utility for slider content */
        .slide-content * {
            box-sizing: border-box;
        }

        .slide-content .btn {
            margin: 0 5px 10px;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .slide-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(62, 39, 35, 0.7), rgba(139, 90, 43, 0.5));
        }

        .slide-1 .slide-bg {
            background-image: linear-gradient(rgba(0,0,0,0.21), rgba(0,0,0,0.21)), url('../img/hero/1.png');
        }

        .slide-2 .slide-bg {
            background-image: linear-gradient(rgba(0,0,0,0.21), rgba(0,0,0,0.21)), url('../img/hero/2.png');
        }

        .slide-3 .slide-bg {
            background-image: linear-gradient(rgba(0,0,0,0.21), rgba(0,0,0,0.21)), url('../img/hero/3.png');
        }

        .slide-4 .slide-bg {
            background-image: linear-gradient(rgba(0,0,0,0.21), rgba(0,0,0,0.21)), url('../img/hero/4.png');
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 3;
        }

        .slider-nav button {
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .slider-nav button:hover {
            background-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        /* Quick Links Section */
        .quick-links {
            padding: 80px 5%;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-title p {
            color: var(--secondary-color);
            max-width: 600px;
            margin: 0 auto;
        }

        .quick-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .quick-link-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            height: 300px;
        }

        .quick-link-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .quick-link-img {
            height: 200px;
            overflow: hidden;
        }

        .quick-link-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .quick-link-card:hover .quick-link-img img {
            transform: scale(1.1);
        }

        .quick-link-content {
            padding: 20px;
            text-align: center;
        }

        .quick-link-content h3 {
            color: var(--dark-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .quick-link-content p {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .quick-link-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(139, 90, 43, 0.7), rgba(62, 39, 35, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .quick-link-card:hover .quick-link-overlay {
            opacity: 1;
        }

        .quick-link-btn {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid white;
            border-radius: 5px;
            font-weight: 500;
            transition: var(--transition);
        }

        .quick-link-btn:hover {
            background-color: white;
            color: var(--primary-color);
        }

        .why-choose-us {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 3;
        }

        /* Overlap section wrapper */
        .overlap-section {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            background-color: var(--light-color);
            padding-top: 120px;
            margin-top: -120px;
        }

        .why-choose-us {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            top: -180px;
            z-index: 3;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }


        @media(max-width:763px){
            .why-choose-us {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            top: -145px;
            z-index: 3;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        }

        .why-choose-us:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        /* Responsive adjustments for overlap */
        @media screen and (max-width: 768px) {
            .hero-slider {
                margin-bottom: -80px;
            }
            
            .overlap-section {
                padding-top: 80px;
                margin-top: -80px;
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .why-choose-us {
                padding: 60px 15px;
            }
        }

        @media screen and (max-width: 480px) {
            .hero-slider {
                margin-bottom: -60px;
            }
            
            .overlap-section {
                padding-top: 60px;
                margin-top: -60px;
            }
            
            .why-choose-us {
                padding: 40px 15px;
                border-radius: 8px;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-description {
            max-width: 700px;
            margin: 30px auto 0;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .divider {
            width: 100px;
            height: 2px;
            background-color: var(--primary-color);
            margin: 30px auto;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

        .content-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .features-list {
            flex: 1;
            min-width: 300px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f5f0;
            transition: var(--transition);
            cursor: pointer;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }

        .feature-content h3 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .feature-content p {
            color: #666;
            line-height: 1.6;
        }

        .image-container {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .main-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .image-container:hover .main-image {
            transform: scale(1.02);
        }

        .floating-badge {
            position: absolute;
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            animation: float 3s ease-in-out infinite;
        }

        .badge-1 {
            top: 10%;
            left: -20px;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 20%;
            right: -20px;
            animation-delay: 1.5s;
        }

        .badge-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .badge-content h4 {
            font-size: 0.9rem;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .badge-content p {
            font-size: 0.8rem;
            color: #666;
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .content-container {
                flex-direction: column-reverse;
            }
            
            .floating-badge {
                position: relative;
                margin: 10px 0;
                left: 0;
                right: 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 53px 5% 1px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }

        /* Iframe Column Styles */
        .iframe-column {
            position: relative;
        }

        .iframe-container {
            position: relative;
            width: 100%;
            height: 200px;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        .iframe-description {
            color: #ddd;
            font-size: 0.9rem;
            text-align: center;
            margin-top: 10px;
            font-style: italic;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #ddd;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary-color);
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #aaa;
            font-size: 0.9rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-logo i {
            margin-right: 8px;
            font-size: 1.8rem;
            color: var(--secondary-color);
        }

        /* Responsive Iframe Styles */
        @media screen and (max-width: 768px) {
            .iframe-container {
                height: 150px;
            }
            
            .iframe-description {
                font-size: 0.8rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media screen and (max-width: 480px) {
            .iframe-container {
                height: 120px;
                margin-bottom: 10px;
            }
            
            .iframe-description {
                font-size: 0.75rem;
                margin-top: 8px;
            }
        }

        /* Thank You Page Styles */
        .thank-you-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8b5a2b 0%, #d4af37 100%);
            z-index: 15000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .thank-you-content {
            max-width: 800px;
            margin: 50px auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: thankYouSlideIn 0.8s ease-out;
        }
        
        @keyframes thankYouSlideIn {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .thank-you-header {
            text-align: center;
            padding: 60px 40px 40px;
            background: linear-gradient(135deg, #8b5a2b 0%, #c19a6b 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .thank-you-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: floatPattern 20s linear infinite;
        }
        
        @keyframes floatPattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 30px); }
        }
        
        .success-icon {
            position: relative;
            z-index: 2;
        }
        
        .success-icon i {
            font-size: 80px;
            color: #28a745;
            background: white;
            border-radius: 50%;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: successPulse 2s ease-in-out infinite;
        }
        
        @keyframes successPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .thank-you-header h1 {
            font-size: 48px;
            margin: 0 0 10px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .thank-you-header h2 {
            font-size: 24px;
            margin: 0;
            opacity: 0.9;
            font-weight: 400;
            position: relative;
            z-index: 2;
        }
        
        .thank-you-body {
            padding: 40px;
        }
        
        .success-message {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 5px solid #28a745;
        }
        
        .booking-details {
            margin-bottom: 40px;
        }
        
        .booking-details h3 {
            color: #8b5a2b;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .booking-details h3 i {
            margin-right: 10px;
            color: #d4af37;
        }
        
        .booking-details ul {
            list-style: none;
            padding: 0;
        }
        
        .booking-details li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .booking-details li:last-child {
            border-bottom: none;
        }
        
        .booking-details li i {
            width: 20px;
            margin-right: 15px;
            color: #8b5a2b;
        }
        
        .contact-info {
            background: #8b5a2b;
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }
        
        .contact-info strong {
            font-size: 18px;
            display: block;
            margin-bottom: 15px;
        }
        
        .contact-info p {
            margin: 8px 0;
        }
        
        .contact-info a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            color: #f4e4bc;
        }
        
        .thank-you-footer {
            padding: 40px;
            text-align: center;
            background: #f8f9fa;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .return-home-btn, .book-another-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            min-width: 200px;
            justify-content: center;
        }
        
        .return-home-btn {
            background: linear-gradient(45deg, #8b5a2b, #c19a6b);
            color: white;
        }
        
        .return-home-btn:hover {
            background: linear-gradient(45deg, #6d4521, #9d7d54);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.4);
        }
        
        .book-another-btn {
            background: linear-gradient(45deg, #d4af37, #f4e4bc);
            color: #8b5a2b;
        }
        
        .book-another-btn:hover {
            background: linear-gradient(45deg, #b8941f, #e6d29a);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        
        @keyframes confettiFall {
            0% {
                transform: translateY(-10px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Responsive Design for Thank You Page */
        @media (max-width: 768px) {
            .thank-you-content {
                margin: 20px auto;
            }
            
            .thank-you-header {
                padding: 40px 20px 30px;
            }
            
            .thank-you-header h1 {
                font-size: 36px;
            }
            
            .thank-you-header h2 {
                font-size: 20px;
            }
            
            .success-icon i {
                font-size: 60px;
                padding: 15px;
            }
            
            .thank-you-body {
                padding: 30px 20px;
            }
            
            .thank-you-footer {
                padding: 30px 20px;
                flex-direction: column;
                align-items: center;
            }
            
            .return-home-btn, .book-another-btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .thank-you-page {
                padding: 10px;
            }
            
            .success-message {
                font-size: 16px;
                padding: 15px;
            }
            
            .booking-details li {
                font-size: 14px;
            }
        }

        /* Booking Modal Styles */
        .booking-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            display: none;
            backdrop-filter: blur(5px);
        }

        .booking-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 10001;
            display: none;
            overflow: hidden;
        }

        .booking-modal-content {
            padding: 0;
            max-height: 90vh;
            overflow-y: auto;
        }

        .close-booking {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-booking:hover {
            background: #f5f5f5;
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        .booking-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 30px 30px 25px;
            text-align: center;
        }

        .booking-header h2 {
            margin: 0 0 10px;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .booking-header h2 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .booking-header p {
            margin: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .booking-form {
            padding: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 60px;
        }

        .checkbox-group {
            margin: 25px 0;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .checkbox-label input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .checkmark {
            position: relative;
            height: 20px;
            width: 20px;
            background-color: #eee;
            border-radius: 4px;
            margin-right: 12px;
            margin-top: 2px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .checkbox-label:hover .checkmark {
            background-color: #ddd;
        }

        .checkbox-label input:checked ~ .checkmark {
            background-color: var(--primary-color);
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
        }

        .checkbox-label input:checked ~ .checkmark:after {
            display: block;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 90, 43, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Responsive Design for Modal */
        @media screen and (max-width: 768px) {
            .booking-modal {
                width: 95%;
                margin: 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .booking-header {
                padding: 25px 20px 20px;
            }
            
            .booking-header h2 {
                font-size: 1.5rem;
            }
            
            .booking-form {
                padding: 25px 20px;
            }
        }

        @media screen and (max-width: 480px) {
            .booking-modal {
                width: 100%;
                height: 100%;
                max-height: 100vh;
                border-radius: 0;
            }
            
            .booking-header {
                padding: 20px 15px;
            }
            
            .booking-form {
                padding: 20px 15px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 968px) {
            .top-bar {
                display: none;
            }
            
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .slide-content {
                padding: 0 3%;
            }

            .slide-content h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .slide-content p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }

            .quick-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media screen and (max-width: 768px) {
            .quick-links-grid {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            .mobile-sidebar {
                width: 100%;
            }

            .slide-content {
                padding: 0 2%;
            }

            .slide-content h1 {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 15px;
            }
            
            .slide-content p {
                font-size: 1rem;
                margin-bottom: 20px;
                line-height: 1.5;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin: 5px;
                display: inline-block;
                width: auto;
            }
            
            .slider-nav button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

          .krishna-services {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 80px 20px; */
        }

        .krishna-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .krishna-section-title {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .krishna-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .krishna-section-description {
            max-width: 700px;
            margin: 30px auto 0;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .krishna-services-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .krishna-slides-container {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
            height: 500px;
        }

        .krishna-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .krishna-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .krishna-slide-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(62, 39, 35, 0.7), rgba(139, 90, 43, 0.5));
        }

        .krishna-slide-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            max-width: 600px;
            padding: 0 20px;
            animation: krishna-fadeInUp 1s ease-out;
        }

        .krishna-slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .krishna-slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .krishna-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin: 0 10px;
        }

        .krishna-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(139, 90, 43, 0.4);
        }

        .krishna-btn-outline {
            background-color: transparent;
            border: 2px solid white;
        }

        .krishna-btn-outline:hover {
            background-color: white;
            color: var(--primary-color);
        }

        .krishna-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 3;
        }

        .krishna-slider-nav button {
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .krishna-slider-nav button:hover {
            background-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        .krishna-slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .krishna-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .krishna-slider-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* Background images for each slide */
        .krishna-slide-1 .krishna-slide-bg {
            background-image: url('../img/ser/1.png');
        }

        .krishna-slide-2 .krishna-slide-bg {
            background-image: url('../img/ser/2.png');
        }

        .krishna-slide-3 .krishna-slide-bg {
            background-image: url('../img/ser/3.png');
        }

        .krishna-slide-4 .krishna-slide-bg {
            background-image: url('../img/ser/4.png');
        }

        .krishna-slide-5 .krishna-slide-bg {
            background-image: url('../img/ser/5.png');
        }

        .krishna-slide-6 .krishna-slide-bg {
            background-image: url('../img/ser/6.png');
        }

        .krishna-slide-7 .krishna-slide-bg {
            background-image: url('../img/ser/7.png');
        }

        .krishna-slide-8 .krishna-slide-bg {
            background-image: url('../img/ser/8.png');
        }

        /* Animations */
        @keyframes krishna-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .krishna-slide-content h2 {
                font-size: 2rem;
            }
            
            .krishna-slide-content p {
                font-size: 1rem;
            }
            
            .krishna-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin: 5px;
            }
            
            .krishna-slider-nav button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .krishna-slides-container {
                height: 400px;
            }
        }

        @media screen and (max-width: 480px) {
            .krishna-slide-content h2 {
                font-size: 1.7rem;
            }
            
            .krishna-slides-container {
                height: 350px;
            }
        }

         .kf-section {
            padding: 80px 5%;
        }

        .kf-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .kf-section-title {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .kf-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .kf-section-description {
            max-width: 700px;
            margin-bottom: 50px;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Fun Facts Section */
        .kf-fun-facts {
            background: linear-gradient(rgba(62, 39, 35, 0.85), rgba(139, 90, 43, 0.15)), 
                        url('../img/about/bg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 100px 5%;
        }

        .kf-facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .kf-fact-item {
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .kf-fact-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .kf-fact-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .kf-fact-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .kf-fact-text {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* About Us Section */
        .kf-about {
            background-color: white;
        }

        .kf-about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .kf-about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .kf-about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .kf-about-image:hover img {
            transform: scale(1.05);
        }

        .kf-about-text h3 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
        }

        .kf-about-text p {
            margin-bottom: 20px;
            color: #666;
        }

        .kf-about-features {
            margin-top: 30px;
        }

        .kf-about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .kf-about-feature i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .kf-faq {
            background-color: var(--light-color);
        }

        .kf-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .kf-faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            background: white;
        }

        .kf-faq-question {
            padding: 20px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .kf-faq-question:hover {
            background-color: #f5f0e8;
        }

        .kf-faq-question h3 {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin: 0;
        }

        .kf-faq-icon {
            transition: var(--transition);
        }

        .kf-faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }

        .kf-faq-item.active .kf-faq-answer {
            max-height: 500px;
            padding: 20px;
        }

        .kf-faq-item.active .kf-faq-icon {
            transform: rotate(180deg);
        }

        /* Testimonials Section */
        .kf-testimonials {
            background-color: white;
        }

        .kf-testimonial-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .kf-testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .kf-testimonial-slide {
            min-width: 100%;
            padding: 40px;
            background-color: var(--light-color);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .kf-testimonial-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .kf-testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 30px;
            color: #555;
            line-height: 1.8;
        }

        .kf-testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .kf-testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--secondary-color);
        }

        .kf-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .kf-testimonial-info h4 {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .kf-testimonial-info p {
            color: #777;
        }

        .kf-testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .kf-testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .kf-testimonial-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Animations */
        @keyframes kf-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes kf-countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 968px) {
            .kf-about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .kf-facts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media screen and (max-width: 768px) {
            .kf-section {
                padding: 60px 5%;
            }
            
            .kf-section-title {
                font-size: 2rem;
            }
            
            .kf-facts-grid {
                grid-template-columns: 1fr;
            }
            
            .kf-fact-number {
                font-size: 2.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .kf-section {
                padding: 40px 5%;
            }
            
            .kf-section-title {
                font-size: 1.8rem;
            }
            
            .kf-testimonial-slide {
                padding: 20px;
            }
        }
                /* Gallery Section Styles */
        .gallery-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f9f5f0 0%, #f0e6d6 100%);
            position: relative;
            overflow: hidden;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .gallery-title {
            font-size: 3.2rem;
            color: #3e2723;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .gallery-title::before, .gallery-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #8b5a2b, #d4af37);
            transform: translateY(-50%);
        }

        .gallery-title::before {
            left: -100px;
        }

        .gallery-title::after {
            right: -100px;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Gallery Filters */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 28px;
            background: white;
            border: 2px solid #8b5a2b;
            color: #8b5a2b;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #8b5a2b, #d4af37);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .filter-btn:hover::before, .filter-btn.active::before {
            left: 0;
        }

        .filter-btn:hover, .filter-btn.active {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(139, 90, 43, 0.3);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 280px;
            opacity: 0;
            transform: translateY(30px);
            animation: galleryItemAppear 0.8s ease forwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .gallery-item:nth-child(7) { animation-delay: 0.7s; }
        .gallery-item:nth-child(8) { animation-delay: 0.8s; }
        .gallery-item:nth-child(9) { animation-delay: 0.9s; }

        @keyframes galleryItemAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(62, 39, 35, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info {
            transform: translateY(30px);
            transition: all 0.5s ease 0.2s;
        }

        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }

        .gallery-info h3 {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .gallery-info p {
            font-size: 1rem;
            color: #d4af37;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .gallery-btn {
            display: inline-block;
            padding: 8px 20px;
            background: transparent;
            border: 2px solid #d4af37;
            color: #d4af37;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .gallery-btn:hover {
            background: #d4af37;
            color: #3e2723;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b5a2b, #d4af37);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 25px rgba(139, 90, 43, 0.6);
        }

        /* Gallery CTA Section */
        .gallery-cta {
            text-align: center;
            padding: 60px 5%;
            background: linear-gradient(135deg, #8b5a2b, #d4af37);
            color: white;
            border-radius: 20px;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #8b5a2b;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* Responsive Styles */
        @media screen and (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media screen and (max-width: 992px) {
            .gallery-title {
                font-size: 2.8rem;
            }
            
            .gallery-title::before, .gallery-title::after {
                width: 60px;
            }
            
            .gallery-title::before {
                left: -80px;
            }
            
            .gallery-title::after {
                right: -80px;
            }
        }

        @media screen and (max-width: 768px) {
            .gallery-section {
                padding: 80px 5%;
            }
            
            .gallery-title {
                font-size: 2.4rem;
            }
            
            .gallery-title::before, .gallery-title::after {
                width: 40px;
            }
            
            .gallery-title::before {
                left: -60px;
            }
            
            .gallery-title::after {
                right: -60px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .gallery-item {
                height: 240px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }
        }

        @media screen and (max-width: 576px) {
            .gallery-section {
                padding: 60px 5%;
            }
            
            .gallery-title {
                font-size: 2rem;
            }
            
            .gallery-title::before, .gallery-title::after {
                display: none;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-filters {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .cta-text {
                font-size: 1rem;
            }
        }

          .error-section {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 60px 20px 40px 20px;
            text-align: center;
        }
        .error-title {
            font-size: 4rem;
            color: var(--primary-color, #8b5a2b);
            margin-bottom: 10px;
        }
        .error-message {
            font-size: 1.5rem;
            color: #555;
            margin-bottom: 30px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 1rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--primary-color, #8b5a2b);
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb .separator {
            color: #aaa;
        }
        @media (max-width: 600px) {
            .error-title { font-size: 2.5rem; }
            .error-message { font-size: 1.1rem; }
            .breadcrumb { font-size: 0.95rem; }
        }
        .breadcrumb-bg {
            width: 100%;
            min-height: 120px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            margin-bottom: 0;
        }
        @media (max-width: 600px) {
            .breadcrumb-bg { padding: 32px 0 18px 0; }
            .breadcrumb-content h1 { font-size: 1.5rem; }
        }

        .about-hero-bg {
            background: url('./asset/img/about/about.png') center/cover no-repeat;
            min-height: 220px;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
        .about-hero-bg::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(62,39,35,0.7);
        }
        .about-hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            padding: 48px 0 32px 0;
        }
        .about-hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .about-hero-content p {
            font-size: 1.1rem;
            opacity: 0.95;
        }
        .about-main-section {
            max-width: 1100px;
            margin: 0 auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            padding: 48px 32px;
            display: flex;
            gap: 40px;
            align-items: center;
            margin-top: -11px;
            position: relative;
        }
        .about-main-img {
            flex: 1 1 320px;
            min-width: 220px;
            max-width: 350px;
            border-radius: 10px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.10);
        }
        .about-main-content {
            flex: 2 1 400px;
        }
        .about-main-content h2 {
            color: var(--primary-color, #8b5a2b);
            font-size: 2rem;
            margin-bottom: 18px;
        }
        .about-main-content p {
            color: #444;
            font-size: 1.1rem;
            margin-bottom: 18px;
            line-height: 1.7;
        }
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 32px;
            margin-top: 18px;
        }
        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: var(--primary-color, #8b5a2b);
            background: #f9f5f0;
            padding: 8px 18px;
            border-radius: 20px;
            font-weight: 500;
        }
        .about-feature i {
            color: var(--secondary-color, #d4af37);
            font-size: 1.2rem;
        }
        @media (max-width: 900px) {
            .about-main-section { flex-direction: column; gap: 24px; padding: 32px 12px; }
            .about-main-img { max-width: 90vw; }
        }
        @media (max-width: 600px) {
            .about-hero-content h1 { font-size: 1.5rem; }
            .about-main-section { padding: 18px 2vw; }
        }

           .about-vision-section {
            background: linear-gradient(90deg, #f9f5f0 60%, #fff 100%);
            padding: 48px 0 32px 0;
            text-align: center;
        }
        .about-vision-content {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .about-vision-icon {
            font-size: 2.8rem;
            color: var(--secondary-color, #d4af37);
            margin-bottom: 10px;
        }
        .about-vision-section h2 {
            color: var(--primary-color, #8b5a2b);
            font-size: 2rem;
            margin-bottom: 12px;
        }
        .about-vision-section p {
            color: #555;
            font-size: 1.15rem;
            line-height: 1.7;
        }
        .about-offer-section {
            background: #fff;
            padding: 48px 0 32px 0;
        }
        .about-offer-title {
            text-align: center;
            color: var(--primary-color, #8b5a2b);
            font-size: 2rem;
            margin-bottom: 36px;
        }
        .about-offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .about-offer-item {
            background: #f9f5f0;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.07);
            padding: 32px 18px 28px 18px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .about-offer-item:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 8px 32px rgba(139,90,43,0.10);
        }
        .about-offer-icon {
            font-size: 2.2rem;
            color: var(--secondary-color, #d4af37);
            margin-bottom: 12px;
        }
        .about-offer-item h3 {
            color: var(--primary-color, #8b5a2b);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .about-offer-item p {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
        }
        @media (max-width: 900px) {
            .about-offer-grid { gap: 18px; }
        }
        @media (max-width: 600px) {
            .about-vision-section { padding: 32px 0 18px 0; }
            .about-offer-section { padding: 32px 0 18px 0; }
            .about-offer-title { font-size: 1.3rem; }
            .about-offer-grid { grid-template-columns: 1fr; gap: 12px; }
            .about-offer-item { padding: 18px 8px 16px 8px; }
        }


  
        .gallery-breadcrumb-bg::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(62,39,35,0.7);
        }
        .gallery-breadcrumb-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            padding: 48px 0 32px 0;
        }
        .gallery-breadcrumb-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .gallery-breadcrumb-content nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 1.1rem;
        }
        .gallery-breadcrumb-content nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        .gallery-breadcrumb-content nav .separator {
            color: #d4af37;
        }
        @media (max-width: 600px) {
            .gallery-breadcrumb-content h1 { font-size: 1.5rem; }
            .gallery-breadcrumb-bg { min-height: 90px; }
        }
        .gallery-section-custom {
            background: #fff;
            padding: 48px 0 32px 0;
        }
        .gallery-header-custom {
            text-align: center;
            margin-bottom: 36px;
        }
        .gallery-title-custom {
            font-size: 2.2rem;
            color: var(--primary-color, #8b5a2b);
            margin-bottom: 10px;
        }
        .gallery-subtitle-custom {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        .gallery-grid-custom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .gallery-item-custom {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0,0,0,0.08);
            background: #f9f5f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .gallery-item-custom:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 8px 32px rgba(139,90,43,0.10);
        }
        .gallery-img-custom {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }
        .gallery-overlay-custom {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(120deg, rgba(62,39,35,0.15) 60%, rgba(139,90,43,0.18) 100%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
        .gallery-item-custom:hover .gallery-overlay-custom {
            opacity: 1;
        }
        .gallery-info-custom {
            color: #fff;
            background: rgba(62,39,35,0.7);
            width: 100%;
            padding: 18px 12px 12px 12px;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            text-align: left;
        }
        .gallery-info-custom h3 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: #ffd700;
        }
        .gallery-info-custom p {
            font-size: 0.98rem;
            margin-bottom: 0;
        }
        @media (max-width: 900px) {
            .gallery-grid-custom { gap: 14px; }
            .gallery-img-custom { height: 160px; }
        }
        @media (max-width: 600px) {
            .gallery-section-custom { padding: 32px 0 18px 0; }
            .gallery-title-custom { font-size: 1.3rem; }
            .gallery-grid-custom { grid-template-columns: 1fr; gap: 10px; }
            .gallery-img-custom { height: 120px; }
        }

        .kf-contact-attractive {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
            align-items: stretch;
            background: linear-gradient(120deg, #f8f6f3 60%, #f3e9e1 100%);
            border-radius: 18px;
            box-shadow: 0 4px 32px rgba(62,39,35,0.07);
            padding: 32px 16px 24px 16px;
            margin-bottom: 32px;
        }
        .kf-contact-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 2px 16px rgba(62,39,35,0.10);
            padding: 32px 28px 28px 28px;
            min-width: 320px;
            max-width: 400px;
            flex: 1 1 340px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .kf-contact-card h2 {
            font-size: 2rem;
            color: #3e2723;
            margin-bottom: 10px;
        }
        .kf-contact-card p {
            color: #6d4c41;
            margin-bottom: 18px;
        }
        .kf-contact-details div {
            margin-bottom: 10px;
            color: #4e342e;
            font-size: 1.05rem;
        }
        .kf-contact-social a {
            display: inline-block;
            margin-right: 12px;
            color: #d4af37;
            font-size: 1.3rem;
            transition: color 0.2s;
        }
        .kf-contact-social a:hover {
            color: #3e2723;
        }
        .kf-contact-form-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 2px 16px rgba(62,39,35,0.10);
            padding: 32px 28px 28px 28px;
            min-width: 320px;
            max-width: 400px;
            flex: 1 1 340px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .kf-contact-form h3 {
            color: #3e2723;
            margin-bottom: 18px;
        }
        .kf-form-group {
            position: relative;
            margin-bottom: 18px;
        }
        .kf-form-group input,
        .kf-form-group textarea {
            width: 100%;
            padding: 12px 38px 12px 14px;
            border: 1px solid #e0cfc2;
            border-radius: 7px;
            font-size: 1rem;
            background: #f9f6f2;
            color: #3e2723;
            outline: none;
            transition: border 0.2s;
        }
        .kf-form-group input:focus,
        .kf-form-group textarea:focus {
            border: 1.5px solid #d4af37;
        }
        .kf-form-group i {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #bfa47a;
            font-size: 1.1rem;
        }
        .kf-btn.kf-btn-primary {
            background: linear-gradient(90deg, #d4af37 60%, #bfa47a 100%);
            color: #fff;
            border: none;
            border-radius: 7px;
            padding: 12px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(62,39,35,0.08);
            transition: background 0.2s;
        }
        .kf-btn.kf-btn-primary:hover {
            background: linear-gradient(90deg, #bfa47a 60%, #d4af37 100%);
        }
        @media (max-width: 900px) {
            .kf-contact-attractive {
                flex-direction: column;
                gap: 18px;
                padding: 18px 4px 12px 4px;
            }
            .kf-contact-card, .kf-contact-form-card {
                max-width: 100%;
                min-width: 0;
                padding: 22px 10px 18px 10px;
            }
        }
        .kf-map-attractive {
            margin: 0 auto 32px auto;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(62,39,35,0.10);
            max-width: 900px;
        }
    
        
		.privacy-card {
			max-width: 1025px;
			margin: 0 auto;
			background: linear-gradient(120deg, #fff 70%, #f3e9e1 100%);
			border-radius: 18px;
			box-shadow: 0 4px 32px rgba(62,39,35,0.10);
			padding: 40px 28px 36px 28px;
			position: relative;
		}
		.privacy-card h2 {
			color: #3e2723;
			margin-bottom: 18px;
			font-size: 2.1rem;
			letter-spacing: 0.5px;
		}
		.privacy-card h3 {
			color: #d4af37;
			margin-top: 32px;
			margin-bottom: 10px;
			font-size: 1.25rem;
			font-weight: 600;
		}
		.privacy-card ul {
			margin-bottom: 18px;
			color: #4e342e;
			padding-left: 22px;
		}
		.privacy-card li {
			margin-bottom: 7px;
		}
		.privacy-card p {
			color: #6d4c41;
			margin-bottom: 18px;
			font-size: 1.07rem;
		}
		.privacy-highlight {
			background: #f8f6f3;
			border-left: 5px solid #d4af37;
			padding: 18px 18px 14px 22px;
			border-radius: 10px;
			margin-bottom: 24px;
		}
		@media (max-width: 700px) {
			.privacy-card {
				padding: 18px 6px 14px 6px;
			}
			.privacy-card h2 {
				font-size: 1.3rem;
			}
		}
		
		.terms-card {
			max-width: 1025px;
			margin: 0 auto;
			background: linear-gradient(120deg, #fff 70%, #f3e9e1 100%);
			border-radius: 18px;
			box-shadow: 0 4px 32px rgba(62,39,35,0.10);
			padding: 40px 28px 36px 28px;
			position: relative;
		}
		.terms-card h2 {
			color: #3e2723;
			margin-bottom: 18px;
			font-size: 2.1rem;
			letter-spacing: 0.5px;
		}
		.terms-card h3 {
			color: #d4af37;
			margin-top: 32px;
			margin-bottom: 10px;
			font-size: 1.25rem;
			font-weight: 600;
		}
		.terms-card ul {
			margin-bottom: 18px;
			color: #4e342e;
			padding-left: 22px;
		}
		.terms-card li {
			margin-bottom: 7px;
		}
		.terms-card p {
			color: #6d4c41;
			margin-bottom: 18px;
			font-size: 1.07rem;
		}
		.terms-highlight {
			background: #f8f6f3;
			border-left: 5px solid #d4af37;
			padding: 18px 18px 14px 22px;
			border-radius: 10px;
			margin-bottom: 24px;
		}
		@media (max-width: 700px) {
			.terms-card {
				padding: 18px 6px 14px 6px;
			}
			.terms-card h2 {
				font-size: 1.3rem;
			}
		}

        /* Why Choose Us Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }
        
        .feature-icon:hover {
            font-size: 2.5rem;
            color: #8b5a2b;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
        }
        @media (max-width: 900px) {
            .services {
                padding: 40px 0;
            }
        }
        @media (max-width: 600px) {
            .services {
                padding: 18px 0;
            }
        }

        .service-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }

        .tab-btn {
            padding: 12px 25px;
            background: #e9e9e9;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background-color: var(--primary);
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        @media (max-width: 900px) {
            .service-content {
                grid-template-columns: 1fr;
                gap: 18px;
            }
        }

        .service-content img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(to right, var(--primary-color), #3a6b41);
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .cta h2 {
            color: white;
        }

        .cta h2::after {
            background-color: var(--secondary-color);
        }

        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        @media (max-width: 600px) {
            .cta {
                padding: 32px 8px;
            }
            .cta p {
                font-size: 1rem;
            }
        }

        .fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 90px;
	left: 10px;
	z-index: 999999;
  }
  
  #fix-icon {
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-name: example;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
  }
  
  @-webkit-keyframes mover {
	0% {
	  transform: translateY(0);
	}
  
	100% {
	  transform: translateY(-20px);
	}
  }
  
  .fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background:#3e2723;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
  }

  .fix-icon-item img:hover{
	width: 55px !important;
	height: 55px !important;
	background:
    #062e39;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
  }
  
  .fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 20px;
	left: 10px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
	width: 55px !important;
	height: 55px !important;
  }
  
  .fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background:
	  #25d366 !important;
  }
