.elementor-1662 .elementor-element.elementor-element-9a118d1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1662 .elementor-element.elementor-element-7d28150{transition:all 400ms;}.elementor-1662 .elementor-element.elementor-element-2adb208{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1662 .elementor-element.elementor-element-4069dc9{transition:all 400ms;}.elementor-1662 .elementor-element.elementor-element-8aa0209{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1662 .elementor-element.elementor-element-1d4771f{transition:all 400ms;}.elementor-1662 .elementor-element.elementor-element-87999ae{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1662 .elementor-element.elementor-element-97a3644{transition:all 400ms;}.elementor-1662 .elementor-element.elementor-element-89f4e4a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1662 .elementor-element.elementor-element-75593cf{transition:all 400ms;}.elementor-1662 .elementor-element.elementor-element-9ceaaa9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1662 .elementor-element.elementor-element-20ee690{transition:all 400ms;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7d28150 *//* ===== HERO SECTION CSS ONLY ===== */
/* Paste this in: Appearance → Customize → Additional CSS */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Outfit:wght@300;400;600;700&display=swap');

/* Hero Section Styles */
.ifts-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2B5876 0%, #1a2332 100%);
    overflow: hidden;
    padding: 2rem;
}

.ifts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('YOUR-IMAGE-URL-HERE');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.ifts-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ifts-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ifts-hero h1 .accent {
    color: #D4AF37;
    display: block;
    font-style: italic;
    margin-top: 0.5rem;
}

.ifts-hero p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #FFF8F0;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.ifts-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.ifts-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

.ifts-btn-primary {
    background: #E94B3C;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(233, 75, 60, 0.3);
}

.ifts-btn-primary:hover {
    background: #d43d2f;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(233, 75, 60, 0.4);
}

.ifts-btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #D4AF37;
}

.ifts-btn-secondary:hover {
    background: #D4AF37;
    color: #1a2332;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ifts-hero {
        min-height: 70vh;
        padding: 1.5rem;
    }
    
    .ifts-hero h1 {
        font-size: 2.5rem;
    }
    
    .ifts-hero p {
        font-size: 1.1rem;
    }
    
    .ifts-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .ifts-btn {
        width: 100%;
        text-align: center;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .ifts-hero {
        min-height: 75vh;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4069dc9 *//* ===== FEATURES SECTION CSS ONLY ===== */
/* ADD this to your existing CSS in: Appearance → Customize → Additional CSS */
/* Paste BELOW your hero section CSS */

/* Features Section */
.ifts-features {
    padding: 6rem 2rem;
    background: #FFF8F0;
    position: relative;
}

.ifts-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #2B5876, transparent);
    opacity: 0.05;
}

.ifts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ifts-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ifts-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ifts-section-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.ifts-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ifts-feature-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ifts-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E94B3C, #D4AF37);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ifts-feature-card:hover::before {
    transform: scaleX(1);
}

.ifts-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ifts-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E94B3C, #ff6b5a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ifts-feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ifts-feature-card p {
    font-family: 'Outfit', sans-serif;
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ifts-features {
        padding: 4rem 1.5rem;
    }
    
    .ifts-section-header h2 {
        font-size: 2rem;
    }
    
    .ifts-section-header p {
        font-size: 1.1rem;
    }
    
    .ifts-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ifts-feature-card {
        padding: 2rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .ifts-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d4771f *//* ===== SERVICES SECTION CSS ONLY ===== */
/* ADD this to your existing CSS in: Appearance → Customize → Additional CSS */
/* Paste BELOW your features section CSS */

/* Services Section */
.ifts-services {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.ifts-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ifts-service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ifts-service-card:hover {
    transform: scale(1.02);
}

.ifts-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ifts-service-card:hover .ifts-service-image {
    transform: scale(1.1);
}

.ifts-service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95), transparent);
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.ifts-service-card:hover .ifts-service-overlay {
    background: linear-gradient(to top, rgba(233, 75, 60, 0.95), rgba(26, 35, 50, 0.7));
}

.ifts-service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.ifts-service-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Fallback for cards without images */
.ifts-service-card.no-image {
    background: linear-gradient(135deg, #2B5876, #1a2332);
    display: flex;
    align-items: flex-end;
}

.ifts-service-card.no-image .ifts-service-overlay {
    position: relative;
    background: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ifts-services {
        padding: 4rem 1.5rem;
    }
    
    .ifts-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ifts-service-card {
        height: 350px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .ifts-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For single column on small tablets */
@media (min-width: 769px) and (max-width: 900px) {
    .ifts-services-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97a3644 *//* ===== COMPLETE STATS SECTION CSS WITH SCROLL ANIMATION ===== */
/* REPLACE your entire stats section CSS with this */
/* This works with the JavaScript you already have */

/* Stats Section */
.ifts-stats {
    padding: 6rem 2rem;
    background: #1a2332;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Background Pulse Animation */
.ifts-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.2; 
    }
}

/* Section Header */
.ifts-stats .ifts-section-header h2 {
    color: #FFFFFF;
}

.ifts-stats .ifts-section-header p {
    color: #FFF8F0;
}

/* Stats Grid */
.ifts-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.ifts-stat {
    text-align: center;
    padding: 2rem 1rem;
}

/* Stat Numbers - HIDDEN UNTIL SCROLL ANIMATION TRIGGERS */
.ifts-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #D4AF37;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    opacity: 0;
    transform: scale(0.5) translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* When JavaScript adds 'animate-in' class - NUMBERS APPEAR */
.ifts-stat-number.animate-in {
    opacity: 0.8;
    transform: scale(1) translateY(0);
}

/* Continuous floating after animation */
.ifts-stat-number.animate-in {
    animation: floatNumber 3s ease-in-out infinite 1s;
}

@keyframes floatNumber {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1);
    }
}

/* Stat Titles */
.ifts-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Stat Descriptions */
.ifts-stat p {
    font-family: 'Outfit', sans-serif;
    color: #FFF8F0;
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Hover Effects */
.ifts-stat:hover .ifts-stat-number {
    transform: scale(1.1) translateY(-5px);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ifts-stats {
        padding: 4rem 1.5rem;
    }
    
    .ifts-stats::before {
        width: 500px;
        height: 500px;
        top: -30%;
        right: -30%;
    }
    
    .ifts-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .ifts-stat-number {
        font-size: 3rem;
    }
    
    .ifts-stat h3 {
        font-size: 1.1rem;
    }
    
    .ifts-stat p {
        font-size: 0.95rem;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .ifts-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ifts-stat-number {
        font-size: 3.5rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .ifts-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-75593cf *//* ===== BOOKING/CONTACT SECTION CSS ONLY ===== */
/* ADD this to your existing CSS in: Appearance → Customize → Additional CSS */
/* Paste BELOW your stats section CSS */

/* Booking Section */
.ifts-booking {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
}

.ifts-booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ifts-booking h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ifts-booking p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* CTA Buttons in Booking Section */
.ifts-booking .ifts-cta-group {
    margin-bottom: 3rem;
}

/* Contact Options Grid */
.ifts-contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.ifts-contact-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    text-align: center;
}

.ifts-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ifts-contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ifts-contact-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ifts-contact-card a {
    font-family: 'Outfit', sans-serif;
    color: #E94B3C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.ifts-contact-card a:hover {
    color: #d43d2f;
    text-decoration: underline;
}

/* Add some decoration */
.ifts-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}


   
/* Mobile Responsive */
@media (max-width: 768px) {
    .ifts-booking {
        padding: 4rem 1.5rem;
    }
    
    .ifts-booking h2 {
        font-size: 2rem;
    }
    
    .ifts-booking p {
        font-size: 1.1rem;
    }
    
    .ifts-contact-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ifts-contact-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .ifts-contact-options {
        justify-content: space-around;
    }
    
    .ifts-contact-card {
        flex: 0 1 45%;
    }
}/* End custom CSS */