/* Base Styles */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #0077cc;
    --secondary-color: #00b8d4;
    --accent-color: #ffa000;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-color: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utility Classes */
.fgdelgolfo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fgdelgolfo-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.fgdelgolfo-section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.fgdelgolfo-section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.fgdelgolfo-section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.fgdelgolfo-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.fgdelgolfo-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.fgdelgolfo-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

.fgdelgolfo-btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.fgdelgolfo-btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.fgdelgolfo-btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.fgdelgolfo-btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Animation Classes */
.fgdelgolfo-animated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fgdelgolfo-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.fgdelgolfo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    transition: all 0.3s ease;
}

.fgdelgolfo-header-scrolled {
    padding: 10px 50px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.fgdelgolfo-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.fgdelgolfo-nav {
    transition: all 0.3s ease;
}

.fgdelgolfo-nav-list {
    display: flex;
    gap: 30px;
}

.fgdelgolfo-nav-item a {
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
}

.fgdelgolfo-nav-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.fgdelgolfo-nav-item a:hover:after,
.fgdelgolfo-active a:after {
    width: 100%;
}

.fgdelgolfo-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1010;
}

.fgdelgolfo-mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.fgdelgolfo-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.fgdelgolfo-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.fgdelgolfo-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.fgdelgolfo-hero {
    position: relative;
    height: 700px;
    margin-top: 100px;
    overflow: hidden;
}

.fgdelgolfo-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fgdelgolfo-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.fgdelgolfo-hero-content h1,
.fgdelgolfo-hero-content p {
    color: white;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fgdelgolfo-hero-content h1 {
    margin-bottom: 20px;
}

.fgdelgolfo-hero-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Features Section */
.fgdelgolfo-features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.fgdelgolfo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.fgdelgolfo-feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.fgdelgolfo-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fgdelgolfo-feature-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.fgdelgolfo-feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fgdelgolfo-feature-card p {
    color: var(--text-light);
}

/* Products Section */
.fgdelgolfo-products {
    padding: 100px 0;
}

.fgdelgolfo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.fgdelgolfo-product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    background-color: white;
    opacity: 1;
    transform: translateY(0);
}

.fgdelgolfo-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fgdelgolfo-product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fgdelgolfo-product-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.fgdelgolfo-product-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.fgdelgolfo-product-card a {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Testimonials Section */
.fgdelgolfo-testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.fgdelgolfo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.fgdelgolfo-testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.5s ease;
}

.fgdelgolfo-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fgdelgolfo-testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.fgdelgolfo-testimonial-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.fgdelgolfo-testimonial-role {
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-bottom: 15px;
}

/* CTA Section */
.fgdelgolfo-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.fgdelgolfo-cta-content {
    text-align: center;
}

.fgdelgolfo-cta-content h2 {
    margin-bottom: 20px;
}

.fgdelgolfo-cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.fgdelgolfo-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.fgdelgolfo-footer {
    padding: 80px 0 30px;
    background-color: var(--bg-dark);
    color: white;
}

.fgdelgolfo-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.fgdelgolfo-footer-column p {
    margin-top: 20px;
    opacity: 0.8;
}

.fgdelgolfo-footer-column h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.fgdelgolfo-footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.fgdelgolfo-footer-links li,
.fgdelgolfo-contact-info li {
    margin-bottom: 10px;
}

.fgdelgolfo-footer-links a,
.fgdelgolfo-contact-info a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.fgdelgolfo-footer-links a:hover,
.fgdelgolfo-contact-info a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.fgdelgolfo-footer-bottom {
    text-align: center;
}

.fgdelgolfo-footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .fgdelgolfo-header {
        padding: 15px 20px;
    }
    
    .fgdelgolfo-hero-content {
        padding: 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .fgdelgolfo-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .fgdelgolfo-nav.active {
        right: 0;
    }
    
    .fgdelgolfo-nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .fgdelgolfo-mobile-menu-toggle {
        display: flex;
    }
    
    .fgdelgolfo-hero-content {
        padding: 0 30px;
        background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    }
    
    .fgdelgolfo-hero-content h1 {
        font-size: 2rem;
    }
    
    .fgdelgolfo-hero-content p {
        font-size: 1rem;
    }
    
    .fgdelgolfo-features-grid,
    .fgdelgolfo-products-grid,
    .fgdelgolfo-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .fgdelgolfo-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    .fgdelgolfo-testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .fgdelgolfo-testimonial-content h4,
    .fgdelgolfo-testimonial-role {
        text-align: center;
    }
    
    .fgdelgolfo-footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .fgdelgolfo-footer-column {
        text-align: center;
    }
} 