/*---------------------------------------------------
    LOGO STYLES
---------------------------------------------------*/
.logo-header {
    height: 70px;  /* Reduced from 80px to create more space */
    width: auto;
    max-width: 85px;  /* Reduced from 100px to create more space */
    object-fit: contain;
    transition: var(--transition);
}

.logo-footer {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
}

.logo-hero-inline {
    height: 30px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

.logo-hero {
    height: 80px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-logo {
    margin-bottom: 20px;
}

/* Responsive logo adjustments */
@media (max-width: 991.98px) {
    .logo-header {
        height: 70px;  /* Made twice bigger from 35px */
        max-width: 90px;  /* Made twice bigger from 45px */
    }
    
    .logo-hero-inline {
        height: 25px;
        max-width: 35px;
    }
    
    .logo-hero {
        height: 70px;
        max-width: 80px;
    }
}

@media (max-width: 767.98px) {
    .logo-header {
        height: 60px;  /* Made twice bigger from 30px */
        max-width: 80px;  /* Made twice bigger from 40px */
    }
    
    .logo-footer {
        height: 40px;
        max-width: 50px;
    }
    
    .logo-hero-inline {
        height: 20px;
        max-width: 30px;
    }
    
    .logo-hero {
        height: 60px;
        max-width: 70px;
    }
}

@media (max-width: 575.98px) {
    .logo-header {
        height: 50px;  /* Made twice bigger from 25px */
        max-width: 70px;  /* Made twice bigger from 35px */
    }
    
    .logo-footer {
        height: 35px;
        max-width: 45px;
    }
    
    .logo-hero-inline {
        height: 18px;
        max-width: 25px;
    }
    
    .logo-hero {
        height: 50px;
        max-width: 60px;
    }
}

/*---------------------------------------------------
    GLOBAL STYLES
---------------------------------------------------*/
:root {
    --primary: #D4A762;
    --secondary: #8D703B;
    --dark: #212529;
    --light: #F8F9FA;
    --body: #6C757D;
    --white: #FFFFFF;
    --black: #000000;
    --success: #198754;
    --info: #0DCAF0;
    --warning: #FFC107;
    --danger: #DC3545;
    --transition: all 0.3s ease;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.25rem;
    --border-radius-sm: 0.2rem;
    --border-radius-lg: 0.3rem;
    --font-sans-serif: 'Open Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --gradient: linear-gradient(to right, var(--primary), var(--secondary));
    --hero-height: 80vh;
    --subpage-hero-height: 40vh;
}

body {
    font-family: var(--font-sans-serif);
    color: var(--body);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    color: var(--dark);
    line-height: 1.3;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-family: var(--font-sans-serif) !important;
    font-weight: 600 !important;
    color: var(--dark);
    line-height: 1.3;
}

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

a:hover {
    color: var(--secondary);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.wow, .animated {
    animation-duration: 1.5s !important;
}

/*---------------------------------------------------
    SPINNER
---------------------------------------------------*/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-grow {
    width: 3rem;
    height: 3rem;
}

/*---------------------------------------------------
    BUTTONS
---------------------------------------------------*/
.btn-primary-animated {
    display: inline-block;
    position: relative;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    margin-right: 15px;
}

.btn-primary-animated:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-animated:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-animated:hover:before {
    width: 100%;
}

.btn-secondary-animated {
    display: inline-block;
    position: relative;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.btn-secondary-animated:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary-animated:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary-animated:hover:before {
    width: 100%;
}

.btn-about-us {
    display: inline-block;
    position: relative;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-about-us:hover {
    background: var(--dark);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-book-now {
    display: inline-block;
    position: relative;
    padding: 10px 25px;  /* Reduced padding to fit better */
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    white-space: nowrap;  /* Prevent text wrapping */
    font-size: 15px;  /* Slightly smaller font */
}

.btn-book-now:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-book-now:hover {
    color: var(--primary);
}

.btn-book-now:hover:before {
    width: 100%;
}

.btn-back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.btn-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--dark);
    color: var(--primary);
}

.btn-cta {
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    background: var(--white);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: var(--transition);
}

.btn-cta:hover span {
    transform: translateX(-10px);
}

.btn-cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--dark);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: var(--transition);
}

.btn-cta:hover svg {
    transform: translateX(0);
    stroke: var(--white);
}

.btn-cta:hover svg path {
    animation: arrow 0.5s ease-out forwards;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*---------------------------------------------------
    TOPBAR
---------------------------------------------------*/
.container-fluid.bg-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-fluid.bg-dark a {
    transition: var(--transition);
}

.container-fluid.bg-dark a:hover {
    color: var(--primary) !important;
}

/*---------------------------------------------------
    NAVBAR
---------------------------------------------------*/
.nav-bar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-bar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .navbar-brand {
    padding: 0;
}

.brand-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;  /* Reduced from 2.5rem to create more space */
    margin: 0;
    transition: var(--transition);
}

.navbar .navbar-nav .nav-link {
    padding: 15px 15px;  /* Reduced padding from 20px to 15px */
    font-weight: 600;
    font-size: 16px;  /* Reduced from 17px */
    transition: var(--transition);
    position: relative;
    line-height: 1.2;  /* Ensure consistent line height */
}

.navbar .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar .navbar-nav .nav-link:hover:before,
.navbar .navbar-nav .nav-link.active:before {
    width: calc(100% - 40px);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
    transition: var(--transition);
}

.navbar .dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.dropdown-menu.dropdown-animation {
    animation: dropdown 0.3s ease-out forwards;
}

@keyframes dropdown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
}

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

.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    transition: var(--transition);
}

.custom-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 167, 98, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: var(--transition);
        opacity: 0;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
    
    /* Ensure navbar elements align properly with larger logo */
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .navbar-brand {
        align-items: center;
    }
    
    .navbar-nav {
        align-items: center;
    }
}

/*---------------------------------------------------
    HERO SECTION
---------------------------------------------------*/
#wynsor-hero {
    height: var(--hero-height);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/lib/8.jpg') no-repeat center center/cover;
    animation: zoomInOut 15s infinite alternate ease-in-out;
    z-index: 1;
}

#wynsor-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 167, 98, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 30px;
}

.hero-badge span {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-animated {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/*---------------------------------------------------
    SECTION BADGE
---------------------------------------------------*/
.section-badge {
    display: inline-block;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

/*---------------------------------------------------
    ABOUT SECTION
---------------------------------------------------*/
.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: var(--transition);
}

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.7;
    z-index: -1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: -20px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 18px;
    margin-right: 10px;
}

/*---------------------------------------------------
    SERVICES SECTION
---------------------------------------------------*/
.service-card {
    background: none;
    padding: 1.5rem;
    transition: var(--transition);
    border-radius: 15px;
}

.service-text {
    min-height: 150px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.service-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: var(--transition);
}

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

.service-description {
    margin-top: 0.5rem;
    line-height: 1.6;
    color: var(--body);
}

.number-label {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: var(--transition);
}

.left .number-label {
    right: -50px;
}

.right .number-label {
    left: -50px;
}

.service-row:hover .number-label {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.service-row:hover .service-link {
    color: var(--dark);
}

.carousel-circle {
    position: relative;
    margin: 0 auto;
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary);
    box-shadow: var(--shadow);
    perspective: 1500px;
}

.carousel-inner {
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: none;
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
    animation: coinFlip 0.6s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes coinFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.carousel-indicators {
    bottom: 10px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/*---------------------------------------------------
    OFFERS SECTION
---------------------------------------------------*/
.offer-card {
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.offer-icon i {
    color: var(--white);
    font-size: 24px;
}

.offer-card:hover .offer-overlay {
    opacity: 1;
}

.offer-card:hover .offer-icon {
    transform: scale(1);
}

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

.offer-title {
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--dark);
    transition: var(--transition);
}

.offer-card:hover .offer-title {
    color: var(--primary);
}

.offer-link {
    text-decoration: none;
}

/*---------------------------------------------------
    TEAM SECTION
---------------------------------------------------*/
.team-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 167, 98, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social a:hover {
    background: var(--dark);
    color: var(--white);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-content {
    padding: 20px;
    text-align: center;
    background: var(--dark);
    transition: var(--transition);
}

.team-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-content p {
    color: var(--white);
    margin-bottom: 0;
}

.team-card:hover .team-content {
    background: var(--primary);
}

.team-card:hover .team-content h4 {
    color: var(--dark);
}

/*---------------------------------------------------
    DISCOUNT SECTION
---------------------------------------------------*/
.discount {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin: 45px 0;
    padding: 90px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/folders/cta.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    isolation: isolate;
}

.discount .container {
    max-width: 1050px;
    text-align: center;
}

.discount .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.discount h3 {
    color: var(--white);
    margin-bottom: 40px;
}

/*---------------------------------------------------
    TESTIMONIAL SECTION
---------------------------------------------------*/
.testimonial-section {
    background: linear-gradient(135deg, rgba(212, 167, 98, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/folders/cta.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.02;
    z-index: 0;
}

.testimonial-item {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    overflow: hidden;
    opacity: 1;
    z-index: 1;
    border: 1px solid rgba(212, 167, 98, 0.15);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0 0 20px 20px;
}

.testimonial-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-img-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-img-container .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.testimonial-item:hover .testimonial-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(212, 167, 98, 0.3);
}

.testimonial-item:hover .img-overlay {
    opacity: 0.2;
    transform: scale(1.15);
}

.testimonial-author {
    margin-left: 0;
    text-align: center;
}

.testimonial-author h4 {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-author h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-author h4::after {
    opacity: 1;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--body);
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
    color: #ddd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-rating i:nth-child(1) { transition-delay: 0.1s; }
.testimonial-rating i:nth-child(2) { transition-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { transition-delay: 0.3s; }
.testimonial-rating i:nth-child(4) { transition-delay: 0.4s; }
.testimonial-rating i:nth-child(5) { transition-delay: 0.5s; }

.testimonial-item:hover .testimonial-rating i {
    color: var(--primary);
    transform: scale(1.2) translateY(-3px);
    text-shadow: 0 5px 10px rgba(212, 167, 98, 0.3);
}

.testimonial-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--body);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    font-weight: 500;
    padding: 0 10px;
}

.testimonial-body p::before,
.testimonial-body p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: relative;
}

.testimonial-body p::before {
    margin-right: 5px;
    top: 5px;
}

.testimonial-body p::after {
    margin-left: 5px;
    top: 5px;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--primary);
    font-size: 80px;
    opacity: 0.05;
    z-index: 0;
    transition: all 0.5s ease;
}

.testimonial-item:hover .testimonial-quote {
    opacity: 0.1;
    transform: scale(1.1);
}

/* Fade animations for testimonial carousel */
.fadeOut {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fadeIn {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Additional testimonial animations */
@keyframes testimonialEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-item {
    animation: testimonialEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary);
    z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -70px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -70px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 35px rgba(212, 167, 98, 0.4);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 8px;
}

.owl-carousel .owl-dot span {
    width: 15px;
    height: 15px;
    background: rgba(212, 167, 98, 0.2);
    border-radius: 50%;
    display: block;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.owl-carousel .owl-dot span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.owl-carousel .owl-dot:hover span::before {
    left: 100%;
}

.owl-carousel .owl-dot.active span {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(212, 167, 98, 0.4);
}

.owl-carousel .owl-dot:hover span {
    background: var(--primary);
    transform: scale(1.2);
}

/*---------------------------------------------------
    SPECIAL OFFERS SECTION
---------------------------------------------------*/
.special-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-10px);
}

.special-img {
    position: relative;
    overflow: hidden;
}

.special-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.special-content {
    display: flex;
    background: var(--white);
}

.special-date {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    min-width: 120px;
}

.special-title {
    padding: 20px;
    flex-grow: 1;
}

.special-title a {
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.special-title a:hover {
    color: var(--primary);
}

/*---------------------------------------------------
    FACTS SECTION
---------------------------------------------------*/
.facts {
    background: var(--light);
}

.fact-item {
    background: var(--primary);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-10px);
}

.fact-item i {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.fact-item h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.fact-item p {
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thmbnail.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.btn-play::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*---------------------------------------------------
    FOOTER SECTION
---------------------------------------------------*/
.footer {
    background: var(--light);
}

.footer-item h1 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-item h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.footer-item h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-icon:hover {
    background: var(--dark);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--body);
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--body);
}

.footer-contact i {
    margin-right: 10px;
}

.gallery-img {
    border-radius: 10px;
    transition: var(--transition);
}

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

.copyright {
    background: var(--dark);
    color: var(--white);
}

/*---------------------------------------------------
    RESPONSIVE STYLES
---------------------------------------------------*/
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar .navbar-nav .nav-link:before {
        left: 0;
    }
    
    .navbar .navbar-nav .nav-link:hover:before,
    .navbar .navbar-nav .nav-link.active:before {
        width: 20px;
    }
    
    .btn-book-now {
        margin-top: 15px;
    }
    
    /* Testimonial carousel adjustments for tablet */
    .owl-carousel .owl-nav button.owl-prev {
        left: -50px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -50px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .testimonial-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-animated {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .section-badge {
        font-size: 14px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .number-label {
        font-size: 3rem;
    }
    
    .left .number-label {
        right: -30px;
    }
    
    .right .number-label {
        left: -30px;
    }
    
    /* Testimonial carousel adjustments for mobile */
    .testimonial-item {
        padding: 25px;
        margin: 10px;
    }
    
    .testimonial-img-container {
        width: 90px;
        height: 90px;
    }
    
    .testimonial-img {
        width: 90px;
        height: 90px;
    }
    
    .testimonial-body p {
        font-size: 1rem;
    }
    
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: -25px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -25px;
    }
    
    .owl-carousel .owl-dots {
        margin-top: 25px;
    }
    
    .testimonial-quote {
        font-size: 60px;
        right: 20px;
        top: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge span {
        font-size: 12px;
    }
    
    .btn-primary-animated,
    .btn-secondary-animated {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .display-6 {
        font-size: 1.3rem;
    }
    
    .number-label {
        font-size: 2.5rem;
    }
    
    .left .number-label {
        right: -20px;
    }
    
    .right .number-label {
        left: -20px;
    }
    
    .carousel-circle {
        width: 90%;
    }
    
    /* Testimonial carousel adjustments for small mobile */
    .testimonial-item {
        padding: 20px 15px;
        margin: 8px;
    }
    
    .testimonial-img-container {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-author h4 {
        font-size: 1.2rem;
    }
    
    .testimonial-author p {
        font-size: 1rem;
    }
    
    .testimonial-body p {
        font-size: 0.95rem;
    }
    
    .testimonial-quote {
        font-size: 50px;
        right: 15px;
        top: 10px;
    }
    
    .owl-carousel .owl-nav {
        display: none;
    }
    
    .owl-carousel .owl-dots {
        margin-top: 20px;
    }
    
    .owl-carousel .owl-dot {
        margin: 0 5px;
    }
    
    .owl-carousel .owl-dot span {
        width: 12px;
        height: 12px;
    }
}



/* Add this to your existing CSS file */

/* Button Animations */
.btn-primary, .btn-secondary, .custom-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Idle animation */
.btn-primary::after, .btn-secondary::after, .custom-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.6;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover animation - different from idle */
.btn-primary:hover, .btn-secondary:hover, .custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover::before, .btn-secondary:hover::before, .custom-btn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    animation: btn-pulse 0.8s ease-out;
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}



/* Hero Section Animation for All Pages */
.subpage-hero-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.subpage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Typed text animation for hero titles */
.typed-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-right: 0.15em solid var(--primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

/* Hero content styling */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.6s both;
}


/* Button Animations - Subtle Flash Effect */
.btn-primary, .btn-secondary, .custom-btn, .animated-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Idle animation - subtle flash */
.btn-primary::after, .btn-secondary::after, .custom-btn::after, .animated-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
                               transparent, 
                               rgba(255, 255, 255, 0.1), 
                               transparent);
    animation: btn-flash 4s infinite;
    pointer-events: none; /* Ensures the flash doesn't interfere with hover */
}

@keyframes btn-flash {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover animation - different from idle */
.btn-primary:hover, .btn-secondary:hover, .custom-btn:hover, .animated-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover::before, .btn-secondary:hover::before, .custom-btn:hover::before, .animated-btn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    animation: btn-pulse 0.8s ease-out;
    pointer-events: none;
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}



/* CSS for the video thumbnail and modal */
.wynsorVideoThumbnail {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.wynsorPlayButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.wynsorPlayButton i {
    font-size: 30px;
    color: #ff6a00;
}

.wynsorVideoThumbnail:hover .wynsorPlayButton {
    background-color: rgba(255, 255, 255, 0.9);
    width: 80px;
    height: 80px;
}

/* Modal styles */
.wynsorModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 60px;
}

.wynsorModalContent {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 500px; /* Adjusted for vertical video */
    position: relative;
}

#wynsorVideo {
    width: 100%;
    height: auto;
    max-height: 80vh;
}

.wynsorCloseBtn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.wynsorCloseBtn:hover,
.wynsorCloseBtn:focus {
    color: #bbb;
    text-decoration: none;
}

/* Responsive adjustments */
@media only screen and (max-width: 700px) {
    .wynsorModalContent {
        width: 95%;
    }
}



/* Geometric pattern for services section */
.service-section-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 167, 98, 0.13) 3px, transparent 3px);
    background-size: 40px 40px;
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
}



/* Geometric pattern for discount section */
.discount::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.13) 48%, rgba(255, 255, 255, 0.13) 52%, transparent 52%),
        linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.13) 48%, rgba(255, 255, 255, 0.13) 52%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
}



/* Geometric pattern for testimonial section */
.testimonial-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 167, 98, 0.13) 3px, transparent 3px),
        linear-gradient(45deg, transparent 48%, rgba(212, 167, 98, 0.13) 48%, rgba(212, 167, 98, 0.13) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 167, 98, 0.13) 48%, rgba(212, 167, 98, 0.13) 52%, transparent 52%);
    background-size: 50px 50px, 40px 40px, 40px 40px;
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
}