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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4500;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff4500;
}

.cta-button {
    background: #ff4500;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e63900;
}
.cta-button a, .video-cta a{
    color:#fff;
    text-decoration: none;
} 

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1455587734955-081b22074882?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Removed the .hero::before pseudo-element as we're using a full background image now */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
}

/* Calculate Savings Section */
.calculate-savings {
    background-color: #f0f4f6;
    padding: 60px 0;
}

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

.savings-info {
    flex: 1;
}

.savings-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a365d;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #ff4500;
    margin-bottom: 1rem;
}

.savings-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.5;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.logos {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.jet-logo {
    height: 50px;
    margin-right: 20px;
}

.dsq-logo {
    height: 100px;
}

.contact-details {
    text-align: right;
}

.contact-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-phone {
    font-size: 1.1rem;
    color: #4a5568;
}

@media (max-width: 768px) {
    .savings-content {
        flex-direction: column;
        text-align: center;
    }
    
    .savings-info, .contact-info {
        width: 100%;
    }
    
    .contact-info {
        margin-top: 2rem;
        align-items: center;
    }
    
    .divider {
        margin: 1rem auto;
    }
    
    .contact-details {
        text-align: center;
    }
}

/* Results Section */
.results {
    padding: 80px 0;
    background: #C8D7DE;
}

.results-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.results-description {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stats-grid.second-row {
    margin-top: 2rem;
}

.stat-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid #e5e5e5;
    position: relative;
    display: flex;
    flex-direction: column;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4ade80; /* Green color for up arrows */
}

.stat-icon.up-arrow {
    color: #4ade80;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-symbol, .stat-unit {
    font-size: 2.5rem;
    color: #1e293b;
}

.stat-currency {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: bold;
}

.stat-label {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-location {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Case Study Section */
.case-study {
    padding: 80px 0;
    background: #1a365d;
    color: white;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-study-label {
    color: #ff4500;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-study-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.case-study-description {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-card {
    background: #ff4500;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    max-width: 350px;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.3;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: #f1f5f9;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calculator-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.calculator-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.calculator-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.form-group:last-of-type {
    border-bottom: none;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-value {
    color: #ff4500;
    font-weight: 600;
}

.savings-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.savings-item .label {
    color: #666;
}

.savings-item .value {
    font-weight: bold;
    color: #ff4500;
    font-size: 1.1rem;
}

.calculator-cta {
    width: 100%;
    background: #ff4500;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.calculator-cta:hover {
    background: #e63900;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    aspect-ratio: 16/9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '▶';
    position: absolute;
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.video-text h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.video-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.video-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.video-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.video-info li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.video-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff4500;
    font-weight: bold;
}

.video-cta {
    background: #ff4500;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.video-cta:hover {
    background: #e63900;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #ff4500;
    color: white;
    text-align: center;
}
.calculator-cta a{
    color:#fff;
    text-decoration:none;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ff4500;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.newsletter {
    margin-bottom: 2rem;
}

.newsletter p {
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 1rem;
    gap: 0.5rem;
}

.email-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #4a5568;
    border-radius: 6px;
    background: #2d3748;
    color: white;
}

.email-input::placeholder {
    color: #a0aec0;
}

.subscribe-btn {
    background: #ff4500;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: #e63900;
}

.newsletter-note {
    font-size: 0.8rem;
    color: #a0aec0;
}

.footer-legal {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .case-study-content,
    .calculator-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .nav {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .header-content {
        padding: 0.75rem 0;
    }
}
