:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --dark-gold: #996515;
    --black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); */
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('./images/strofficial_bg.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-gray);
    margin-top: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 26, 0.9));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* News Ticker */
.news-ticker {
    background: var(--black);
    padding: 0.5rem 0;
    overflow: hidden;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 40px;
    background-color: var(--black);
    padding-left: 100%;
    box-sizing: content-box;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    color: var(--primary-gold);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.cta-button.secondary:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.cta-button .btn-spinner {
    display: inline-block;
    vertical-align: middle;
    color: #D4AF37;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.service-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.learn-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-gold);
}

/* Latest News Section */
.latest-news {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.news-card p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.news-card .read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.news-source {
    color: var(--primary-gold);
    font-weight: 500;
}

.news-date {
    color: var(--dark-gray);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.expertise-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 500;
    color: var(--black);
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.about-values {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.about-values h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.about-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.about-experience {
    padding: 6rem 0;
    background-color: white;
}

.about-experience h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.about-experience h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-item {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.experience-item h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.experience-item ul {
    list-style: none;
    padding: 0;
}

.experience-item ul li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.experience-item ul li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-stats {
    padding: 6rem 0;
    background: var(--gradient-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .expertise-highlights {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-gold);
    text-align: center;
    color: var(--black);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: var(--black);
    color: var(--primary-gold);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        gap: 0;
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0.7rem 0;
    }
    .nav-links a {
        width: 100%;
        display: block;
        padding: 0.7rem 0;
    }
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* FAQ Section Styles */
.faq-hero {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 40vh;
    min-height: 300px;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category:hover,
.faq-category.active {
    background: var(--primary-gold);
    color: var(--black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--black);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-answer ul li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-category {
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 40vh;
    min-height: 300px;
}

.services-main {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.service-category {
    margin-bottom: 5rem;
}

.service-category h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.service-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card .cta-button {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 40vh;
    min-height: 300px;
}

.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.info-item h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-info .social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--black);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
}

/* Form message styles */
.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    height: 450px;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.stories-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.story-card {
    flex: 0 0 400px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
}

.story-meta {
    text-align: right;
}

.story-type {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.story-year {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.story-quote {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Unique Approach Section */
.unique-approach {
    padding: 6rem 0;
    background-color: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--black);
    font-size: 2rem;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-date {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 6rem 0;
    background-color: white;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.indicator-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.indicator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.indicator-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--black);
    font-size: 1.5rem;
}

/* Calculator Section */
.calculator-section {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.calculator-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--dark-gray);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-form {
    padding-right: 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.calculator-results {
    padding-left: 2rem;
}

.calculator-results h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.result-chart {
    margin-bottom: 2rem;
}

.result-summary {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
}

.result-summary p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        padding-right: 0;
        padding-bottom: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .calculator-results {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

/* About Section (Index Page) */
.about {
    padding: 5rem 0;
    background: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--gradient-gold);
    border-radius: 15px;
    padding: 2rem 2.5rem;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
}

.stat-item {
    text-align: left;
    color: var(--black);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        align-items: stretch;
    }
    .about-stats {
        max-width: 100%;
        margin-top: 2rem;
    }
} 

/* Footer Social Links */
.footer-section.social-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-decoration: none;
}

.footer-section .social-links a:hover {
    background: var(--black);
    color: var(--primary-gold);
    transform: translateY(-3px) scale(1.1);
} 

.tabbed-container {
  margin-top: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.tabbed-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid var(--primary-gold);
  margin-bottom: 2rem;
}
.tab-main {
  border: none;
  outline: none;
  background: #fff;
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 12px 12px 0 0;
  border: 2px solid var(--primary-gold);
  border-bottom: none;
  margin-right: -2px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  top: 2px;
  z-index: 2;
}
.tab-main.active {
  background: var(--primary-gold);
  color: var(--black);
  z-index: 3;
}
.tab-main:not(.active) {
  background: #fff;
  color: var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
  z-index: 1;
}
.tabbed-content { display: none; }
.tabbed-content.active { display: block; }
@media (max-width: 600px) {
  .tab-main {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .tabbed-container {
    margin-top: 1.5rem;
  }
} 

.ind-sub {
  padding: 1rem 2rem;
  background: white;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  margin: 0 0.5rem 1rem 0.5rem;
  font-size: 1rem;
}
.ind-sub:hover,
.ind-sub.active {
  background: var(--primary-gold);
  color: var(--black);
}
@media (max-width: 900px) {
  .ind-sub {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    margin: 0 0.3rem 0.7rem 0.3rem;
  }
} 



/*NEWS STYLE*/

.type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.type-badge.news {
    background-color: #007bff;
}

.type-badge.circular {
    background-color: #28a745;
}