/* Global Styles */
:root {
    --primary-color: #0891B2;
    --primary-light: #CFFAFE;
    --primary-dark: #0E7490;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --white: #FFFFFF;
    --black: #000000;
    --accent: #06B6D4;
    --gradient-start: #0891B2;
    --gradient-end: #0E7490;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

span {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary, .btn-outline, .btn-cta, .btn-small, .btn-footer {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(8, 145, 178, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-footer {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
}

.btn-footer:hover {
    background-color: var(--primary-light);
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo span {
    font-weight: 400;
    opacity: 0.8;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-light);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.1);
}

.feature-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background-color: var(--primary-light);
    background-image: linear-gradient(45deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.experience-text {
    flex: 1;
}

.experience-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.experience-list {
    margin: 30px 0;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.check-icon {
    min-width: 24px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(8, 145, 178, 0.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-overlay h4 {
    color: var(--white);
    margin: 0;
}

/* Get Started Section */
.get-started {
    padding: 100px 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-align: center;
}

.get-started h2, 
.get-started p {
    color: var(--white);
}

.get-started h2 span {
    color: var(--primary-light);
}

.get-started-content {
    max-width: 800px;
    margin: 0 auto;
}

.get-started .btn-cta {
    margin-top: 30px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}

.get-started .btn-cta:hover {
    background-color: var(--primary-light);
}

/* Footer */
footer {
    background-color: #F1F5F9;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo p {
    font-weight: 700;
    margin: 0;
}

.footer-links h3,
.footer-cta h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(8, 145, 178, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 992px) {
    .hero .container,
    .experience-content {
        flex-direction: column;
    }
    
    .hero-content,
    .experience-text {
        order: 1;
        text-align: center;
    }
    
    .hero-visual,
    .experience-image {
        order: 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .experience-list li {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links ul {
        align-items: center;
    }
}
