:root {
    /* Color Palette */
    --primary-color: #3a7ca5;      /* Deep Blue */
    --secondary-color: #d9a679;    /* Warm Sand */
    --accent-color: #e63946;       /* Alert Red */
    --neutral-color: #f1faee;      /* Off White */
    --dark-color: #1d3557;         /* Navy Blue */
    
    /* Shades */
    --primary-light: #61a0c7;
    --primary-dark: #2a5d80;
    --secondary-light: #e6c4a1;
    --secondary-dark: #b78957;
    --accent-light: #f07078;
    --accent-dark: #c62b38;
    --neutral-light: #ffffff;
    --neutral-dark: #d8e8da;
    --dark-light: #2c4a73;
    --dark-dark: #0e1c2e;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-heading: 'Raleway', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
}

p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.header .nav-link {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 15px;
    position: relative;
}

.header .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.header .nav-link:hover:before,
.header .nav-link.active:before {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('../FUT_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(29, 53, 87, 0.4) 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--neutral-light);
}

/* About Section */
.about-feature {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-item-img {
    height: 200px;
    overflow: hidden;
}

.services-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.services-item:hover .services-item-img img {
    transform: scale(1.1);
}

.services-item-content {
    padding: 30px;
}

.services-item-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.services-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.services-item-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-item-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.services-item-features li:last-child {
    border-bottom: none;
}

.services-item-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Features Section */
.features-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.features-item {
    flex: 0 0 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.features-item-inner {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.features-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.features-item-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-item {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.priceplan-item.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.priceplan-item.featured:before {
    content: 'Popular';
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
}

.priceplan-item-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
}

.priceplan-item-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.priceplan-item-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.priceplan-item-price span {
    font-size: 1rem;
    font-weight: 400;
}

.priceplan-item-content {
    padding: 30px;
}

.priceplan-item-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.priceplan-item-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.priceplan-item-features li:last-child {
    border-bottom: none;
}

.priceplan-item-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-slider {
    padding: 30px 0;
}

.reviews-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
}

.reviews-item-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.reviews-item-text:before,
.reviews-item-text:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
}

.reviews-item-author {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Core Info Section */
.coreinfo-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.coreinfo-item-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    border: 1px solid #e1e1e1;
    padding: 15px;
    margin-bottom: 20px;
    height: auto;
    font-size: 1rem;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .form-check {
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 50px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Blog Section */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.blog-item {
    flex: 0 0 33.333333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.blog-item-inner {
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.blog-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
    height: 200px;
    overflow: hidden;
}

.blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-item-inner:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-content {
    padding: 30px;
}

.blog-item-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-item-excerpt {
    margin-bottom: 20px;
}

.blog-item-link {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-right: 20px;
}

.blog-item-link:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.blog-item-link:hover:after {
    right: -5px;
}

/* FAQ Section */
.faq-accordion {
    margin-bottom: 50px;
}

.faq-accordion .accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 20px 30px;
    background-color: white;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: white;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 20px 30px;
    background-color: #f9f9f9;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 53, 87, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: white;
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-copyright small {
    color: rgba(255, 255, 255, 0.7);
} 